/* Black and white filter for team images */
#section-team img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

#section-team img:hover {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    transition: all 0.3s ease;
}

.top-social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}

/* Icon Button Look */
.top-social-icons a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;

    font-size: 16px;
    color: white;
    text-decoration: none;

    transition: 0.3s ease;
}

/* Hover Effect */
.top-social-icons a:hover {
    background: white;
    color: black;
    transform: scale(1.1);
}

.contact-box {
    display: block;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
    height: 100%;
}

.contact-box i {
    font-size: 45px;
    margin-bottom: 12px;
    display: block;
}

.contact-box h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-box p {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

.contact-box:hover {
    transform: translateY(-6px);
    border-color: white;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    margin-right: 10px;

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);

    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: white;
    color: black;
    transform: scale(1.1);
}

/* ✅ Header Social Icons Responsive Fix */
@media (max-width: 768px) {
    .top-social-icons {
        gap: 8px;
        justify-content: center;
        margin-top: 8px;
        flex-wrap: wrap;
        /* ✅ allow wrapping */
    }

    .top-social-icons a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    /* ✅ Make logo + icons stack properly */
    header .de-flex {
        flex-wrap: wrap;
    }

    header #logo {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }

    header .menu_side_area {
        position: absolute;
        right: 15px;
        top: 20px;
    }
}

@media (max-width: 768px) {
    .top-social-icons {
        display: none !important;
    }
}
