* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}


.padding-sm {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.padding-md {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.padding-lg {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.padding-xl {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.padding-xxl {
    padding-top: 11rem;
    padding-bottom: 11rem;
}

a {
    text-decoration: none;
    color: currentColor;
}

.container {
    padding: 2rem 6rem;
}

@media (max-width:1000px) {
    .container {
        padding: 2rem 4rem;
    }
}

@media (max-width:700px) {
    .container {
        padding: 2rem 1rem;
    }
}


.primary-heading {
    font-size: 1.6rem;
    font-weight: 500;
    color: #6c202a;
    /* color: #4b6838;
    color: #d59c31;
    color: #1c1a1b; */
}

.primary-text {
    font-size: 0.95rem;
    color: #5c575a;
    line-height: 170%;
}

.button {
    padding: 10px 20px;
    background: #4b6838;
    color: #ffffff;
    border-radius: 5px;
    font-size: 0.9rem;
}



/* ------------------------------------------- */
/* -------department-gallery-container------- */
/* ----------------------- ------------------*/

.department-gallery-container {
    position: relative;
}

.department-gallery-container .swiper {
    width: 100%;
}

.department-gallery-container .swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: auto;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.department-gallery-image {
    height: 350px;
}

.department-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-text {
    font-size: 1.1rem;
    color: rgb(24, 23, 23);
}


.department-gallery-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;

}

.department-gallery-text {
    font-size: 1.6rem;
    color: #6c202a;
    font-weight: 400;
}

@media (max-width:600px) {
    .department-gallery-image {
        height: 500px;
    }
}




/* ------------------------------------ */
/* -------about-banner-image---------- */
/* ---------------------------------- */

.about-banner-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-banner {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about-banner-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}


@media (max-width: 1000px) {
    .about-banner-container {
        flex-direction: column;
        gap: 3rem;
    }

    .about-banner {
        width: 100%;
    }

}


/* ----------------------navbar----------------------------- */

.navbar {
    /* background-color: #ffffff;  */
    background: rgba(255, 255, 255, 0.074);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 5px;
    border-bottom: 1px solid #cecbcba9;
    border-left: 1px solid #cecbcba9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 24px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 3%;
    left: 50%;
    transform: translate(-50%, 1%);
    width: 90%;
    margin: auto;
    z-index: 10;
}

.navbar .logo {
    width: 70px;
    height: 70px;
}

.navbar .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: #161616;
    font-size: 15px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-btn {
    padding: 10px 20px;
    background-color: #6c202a;
    color: #fff !important;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

.mobile-contact {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: #ffffff8a;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 30px 10px;
        display: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
        margin-top: 0.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .mobile-contact {
        display: block;
    }

}



/* --------banner-------------------------------- */

.banner {
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    position: relative;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.banner-detail {
    position: absolute;
    top: 35%;
    left: 10%;
    display: flex;
}


.banner-text {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
}

.banner-sub-text {
    font-size: 0.95rem;
    color: #ffffff;
}

.banner-content{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.banner-button{
    margin-top: 2rem;
    display: flex;
    gap: 0.8rem;
}

@media (max-width:1000px) {
    .banner {
        height: 80dvh;
    }

    .banner-detail {
        width: 80%;
        margin: auto;
        flex-direction: column;
    }

    .banner-logo {
        width: 70px;
        height: 70px;
    }

    .banner-text {
        font-size: 2rem;
    }


}



/* @media (max-width:768px) {
    .banner-text {
        font-size: 1.2rem;
    }
} */



.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-bottom: 1px solid #dce0d950;
    padding: 30px 0px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-items {
    font-size: 0.85rem;
    color: #dbd6d9;
    line-height: 170%;
}

.subscribe {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.074);
    padding: 4px;
    border-radius: 1000px;
    margin-top: 1.2rem;
}

input {
    padding: 10px 20px;
    border-radius: 1000px;
    border: none;
    outline: none;
    background: transparent;

}

.subscribe-button {
    padding: 10px 20px;
    border-radius: 1000px;
    border: none;
    outline: none;
    background: #4b6838;
    color: #ffffff;
}

.footer-header {
    font-size: 1rem;
    color: #d0daca;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    align-items: center;

}

.footer-bottom-two {
    display: flex;
    gap: 0.4rem;
}

.footer-icons {
    border: 1px solid #dce0d950;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 4px;
}

.footer-icons svg {
    color: #d0daca;
}

.footer-content-sec {
    margin-left: 3rem;
}

@media (max-width:1000px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 10px 30px;
    }

}

@media (max-width:768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 10px 30px;
    }

}

@media (max-width:570px) {
    .footer-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
        padding: 20px 30px;
    }

    .footer-content-sec {
        margin-left: 0rem !important;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 1rem;

    }


}


.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.team {
    width: 40%;
    display: flex;
    justify-content: space-between;
}

.team-content {
    display: flex;
    flex-direction: column;
    width: 49%;
    gap: 0.5rem;
}

.team-image {
    width: 100%;
    height: 300px;
    border-radius: 5px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-details {
    width: 100%;
    height: 70px;
    background: #4b6838;
    border-radius: 5px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;

}

.team-name {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
}

.team-pos {
    font-size: 0.8rem;
    color: #afadae;
}

.team-about {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width:1000px) {

    .team-container {
        justify-content: center;
        gap: 2rem;

    }

    .team {
        width: 100%;
    }

    .team-content {
        display: flex;
        flex-direction: column;
        width: 49%;
        gap: 0.5rem;
    }




    .team-about {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}