*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}
body{
    margin-top: 3.5rem;
    width: 100%;
    overflow-x: hidden; 
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width:100%;
    background-color: white;
    z-index: 100;
}

.logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    padding-left: 25px;
}
.logo img{
    font-weight: initial;
    width: 170px;
    margin-top: 15px;
}
.logoText{
    margin-left: .5rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f3350;
}

.nav{
    height: 3.5rem;
}
.nav__data{
    height:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav__toggle{
    position: relative;
    width: 50px;
    height: 64px;
}
.nav__menu_logo,
.nav__close_logo{
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.25rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
     padding-top: 15px;
}
.nav__close_logo{
    opacity: 0;
}
@media screen and (max-width: 1037px){
    .nav__menu{
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        background-color: gray;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity:0;
        transition: top .4s, opacity .3s;
    } 
    .nav__menu::-webkit-scrollbar{
        width: 0;
    }
    .nav__list{
        background-color: white;
        padding-top: 1rem;
    }
}
@media screen and (min-width: 1037px){
    .container{
        margin-inline: auto;
    }
    .nav{
        height: 5.5rem;
        display: flex;
        justify-content: space-between;
        padding-left: 7%;
        padding-right: 7%;
    }
    .nav__toggle{
        display: none;
    }
    .nav__list{
        height: 75%;
        display: flex;
        
    }
    .nav__link,.nav__link_{
        height: 85%;
        padding:0;
        justify-content: initial;
        column-gap: 1rem;
    }
    .dropdown__menu{
       box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .dropdown__link:hover{
        background-color: #d1e3ff;
    }
    .nav__link_{
        margin-left: 10px;
    }
}
.nav__link{
    color: #1f3350;
    background-color: white;
    font-weight: bold;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
    cursor: pointer;
}
.nav__link_{
    color: #1f3350;
    background-color: white;
    font-weight: bold;
    padding: 1rem 1.5rem;
    display: flex;
    gap: 5px;
    align-items: center;
    transition: background-color .3s;
    cursor: pointer;
}
.nav__link:hover{
    color: #2c5a9e;
}

.show-menu{
    opacity: 1;
    top: 3.5rem;
    pointer-events: initial;
}
.show-icon .nav__menu_logo{
    opacity: 0;
    transform: rotate(90deg);
}
.show-icon .nav__close_logo{
    opacity: 1;
    transform: rotate(90deg);
}
.dropdown__link{
    padding:.25rem 1.25rem 1.25rem 2.5rem ;
    color: #1f3350;
    font-weight: bold;
    display: flex;
    align-items: center;
    
}
.dropdown__menu{
    max-height: 0;
    overflow: hidden;
    background-color: #ffffff;
    transition: max-height .4s ease-out;
}
.dropdown__item:hover .dropdown__menu{
    max-height: 1000px;
    transition: max-height .4s ease-in;
}
/*end menu*/

/*start-div1*/
.div1{
padding-bottom: 96px;
padding-top: 150px;
background-color: #1a365d;
}
.div1 h1{ 
    width: 100%;
    height: 48px;
    padding-bottom: 24px;
    font-size: 48px;
    color: white;
}
.div1 div{
    text-align: center;
}
/*end-div1*/

/* start div2 */

 .history-section {
        margin: 45px 75px;
        padding: 110px 0;
        background-color: #ffffff;
    }
    
    .hs_container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: #1f3350;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background-color: #e9b94a;
        margin-top: 1.5rem;
    }
    
    .history-content {
        display: flex;
        align-items: center;
        gap: 4rem;
    }
    
    .history-text {
        flex: 1;
    }
    
    .history-image {
        flex: 1;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .history-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }
    
    .history-paragraph {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #4a5568;
        margin-bottom: 1.5rem;
        position: relative;
    }

    @media (max-width: 992px) {
        .history-content {
            flex-direction: column;
            gap: 2rem;
        }
        
        .history-image {
            order: -1;
            max-width: 600px;
            margin: 0 auto;
        }
    }
    
    @media (max-width: 768px) {
        .history-section {
            padding: 64px 0;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .history-paragraph {
            font-size: 1rem;
            padding-left: 1rem;
        }
    }
/*end div2*/
/*start div3*/
.mission-vision-section {
        padding: 96px 0;
        background-color: #f9fafc;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .main-title {
        font-size: 2.5rem;
        color: #1f3350;
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
    }
    
    .main-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background-color: #e9b94a;
        margin: 1rem auto 0;
    }
    
    .mv-title {
        font-size: 1.8rem;
        color: #1f3350;
        margin-top: 1.5rem;
        margin-left: 1.25rem;
    }
    
    .mv-text {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #4a5568;
    }

    .mv-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
        margin-top: 3rem;
    }
    

    .mv-card {
        background: white;
        border-radius: 8px;
        padding: 2.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    
    .mv-icon {
        width: 60px;
        height: 60px;
        background-color: rgba(233, 185, 74, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    .mv-icon1{
        width: 60px;
        height: 60px;
        background-color:#eff6ff ;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .mv-icon svg {
        width: 24px;
        height: 24px;
    }
    .column{
        display: flex;
    }
.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;  
    width: 100%; 
    height: 4px; 
    background-color: #2c5a9e;
    border-radius: 8px 8px 0 0; 
}

    
.vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;  
    width: 100%; 
    height: 4px; 
    background-color: #e9b94a;
    border-radius: 8px 8px 0 0; 
}
    

    @media (max-width: 768px) {
        .mission-vision-section {
            padding: 64px 0;
        }
        
        .main-title {
            font-size: 2rem;
        }
        
        .mv-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .mv-card {
            padding: 2rem;
        }
    }
/*end div3*/
/*start div4*/
 .values-section {
        padding: 96px 0;
        background-color: #ffffff;
    }
    
    .values-section_container {
        max-width: 82%;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: #1f3350;
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
    }
    
    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background-color: #e9b94a;
        margin: 1rem auto 0;
    }
    
    .value-title {
        font-size: 1.5rem;
        color: #1f3350;
        margin: 1.5rem 0 1rem;
    }
    
    .value-description {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #4a5568;
    }
    
    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .value-card {
        background: white;
        border-radius: 8px;
        padding: 2rem;
        box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.053);
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        
    }
    
    .value-icon img {
        width: 24px;
        height: 24px;
    }
    
    @media (max-width: 768px) {
        .values-section {
            padding: 64px 0;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .values-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin: 0 auto;
        }
    }
/*end div4*/


/*start div5*/
    .team-section {
        padding: 96px 0;
        background-color: #fefbea;
    }
    
    .container {
        max-width: 82%;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: #1f3350;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
        color: #4a5568;
        text-align: center;
        max-width: 700px;
        margin: 0 auto 3rem;
        line-height: 1.6;
    }
    
    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .team-card {
        background: #ffffff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 1px 4px 20px rgba(0, 0, 0, 0.093);
    }
    
    .team-photo {
        height: 250px;
        overflow: hidden;
    }
    
    .team-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .team-info {
        padding: 1.5rem;
    }
    
    .team-name {
        font-size: 1.3rem;
        color: #1f3350;
        margin-bottom: 0.5rem;
    }
    
    .team-position {
        font-size: 1.1rem;
        color: #1e3654;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .team-bio {
        color: #4a5568;
        line-height: 1.6;
    }
    
    .join-team {
        text-align: center;
        margin-top: 3rem;
    }
    
    .join-button {
        display: inline-block;
        background-color: #172554;
        color: #ffffff;
        padding: 1rem 2rem;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    
    .join-button:hover {
        background-color: #888f8e39;
        color: #172554;
    }
    
    @media (max-width: 768px) {
        .team-section {
            padding: 64px 0;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
        }
        
        .team-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin: 0 auto 2rem;
        }
    }
/*end div5*/

/*footer*/
    .footer {
            background-color: #172554;
            color: white;
            padding: 0 10%;
            padding-top: 48px;
            padding-bottom: 15px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-brand {
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .footer-brand h1 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        
        .footer-brand p {
            color: #c7d2ec;
            font-size: 1.25rem;
        }
        .bott_logo{
            display: flex;
            gap: 10px;
        }
        .bott_logo img{
            width: 40px;
            height: 40px;
        }
        .bott_logo h1{
            padding-top: 10px;
        }
        .sm-links{
            margin-top: 16px;
            display: flex;
            gap: 10px;
        }
        .footer-section{
            margin-top: 32px;
        }
        .footer-section h2 {
            color: #ffffff;
            font-size: 1.3rem;
            padding-bottom: 1rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #c7d2ec;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .contact-info {
            list-style: none;
            font-size: 1.15rem;
        }
        
        .contact-info li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 16px;
                        color: #c7d2ec;
        }
        
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 24px;
            margin-top: 48px;
            padding-bottom: 18px;
            
        }
        
        .footer-links-horizontal {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        
        .footer-links-horizontal a {
            color: #a6abc09e;
            text-decoration: none;
            font-size: 1.1rem;
        }
        
        .footer-links-horizontal a:hover {
            color: white;
        }
        
        .copyright {
            color: #a6abc09e;
            font-size: 1.1rem;
        }
        
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
             .footer-bottom {
                flex-direction: column;
                gap: 15px;
        }
                .footer-links-horizontal {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
                .footer-links-horizontal a {
            max-width: 130px;
        }
                .footer-links-horizontal {
            gap: 1rem;
        }
            .footer-section {
                margin-bottom: 2rem;
            }
        }
