/* Portfolio footer Section */
.portfolio-footer-section {
    padding: 50px 80px;
    background: var(--footer-bg);
    border-top: var(--border);


    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}


.footer {
    padding: 40px 20px;
    text-align: center;
    background: var(--footer-bg);
    border-top: var(--border);
    color: #808080;
    font-size: 0.95rem;
    width: 80%;
    margin: auto;
}


/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFD700;
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
    z-index: 0;
}

.social-icon img {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon:hover img {
    filter: brightness(0) invert(0);
}