*{
    margin:0;
    padding:0;
}

.navbar{
    background:white;
    height:90px;

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

    padding:0 60px;
}

.logo img{
    height:90px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:45px;
}

.nav-links a{
    text-decoration:none;
    color:black;
    font-size:18px;
    font-weight:bold;
    font-family:Arial, sans-serif;
}

.nav-links a.active{
    color:black;
}

.nav-links a:hover{
    color:black;
}

.dropdown{
    position: relative;
}

.dropdown-content{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    list-style: none;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    z-index: 1000;
}

.dropdown-content li a{
    display: block;
    padding: 15px 22px;
    text-decoration: none;
    color: #002053;
    font-size: 17px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.dropdown-content li a:hover{
    background: #002053;
    color: white;
    padding-left: 30px;
}

.dropdown:hover .dropdown-content{
    display: block;
}

.about-bg{
    background:#edf3fb;
    padding:20px 0;
}

.about-container{
    width:92%;
    margin:auto;
}

.about-block{
    background:#fff;
    padding:55px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.about-block h2{
    text-align:center;
    color:#002053;
    font-size:30px;
    margin-bottom:15px;
}

.heading-line{
    width:90px;
    height:4px;
    background:#8b2b1c;
    margin:0 auto 40px;
    border-radius:10px;
}

.about-block p{
    font-size:20px;
    line-height:2;
    color:#444;
    text-align:justify;
}

.about-hero{
    width:92%;
    margin:auto;
    background:#fff;
    border-radius:25px;
    padding:55px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.journey-title{
    text-align:center;
    color:#002053;
    font-size:30px;
    margin-bottom:15px;
}

.journey-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.about-left{
    flex:1;
}

.about-left p{
    font-size:20px;
    line-height:2;
    color:#444;
    text-align:justify;
}

.about-right{
    flex:1;
}

.about-right img{
    width:100%;
    display:block;
    border-radius:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
    transition:.4s;
}

.about-right img:hover{
    transform:scale(1.02);
}

.vision-mission{
    width:92%;
    margin:70px auto;
    display:flex;
    justify-content:space-between;
    gap:35px;
}

.vm-box{
    flex:1;
    background:#ffffff;
    padding:45px 35px;
    border-radius:22px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    text-align:center;
}

.vm-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.vm-box h2{
    color:#002053;
    font-size:30px;
    margin-bottom:20px;
}

.vm-box p{
    font-size:18px;
    color:#555;
    line-height:1.9;
    text-align:justify;
}

.why-title{
    text-align:center;
    color:#002053;
    font-size:35px;
    margin-top:70px;
    margin-bottom:15px;
}

.why-title::after{
    content:"";
    display:block;
    width:90px;
    height:5px;
    background:#8b2b1c;
    margin:15px auto 0;
    border-radius:10px;
}

.why-grid{
    width:92%;
    margin:50px auto 80px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    padding:35px;
    border-radius:22px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid #002053;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.why-card h3{
    color:#002053;
    font-size:24px;
    margin-bottom:18px;
    text-align:center;
}

.why-card p{
    font-size:17px;
    line-height:1.8;
    color:#555;
    text-align:justify;
}

.about-block,
.about-hero,
.vm-box,
.why-card{
    transition:all .35s ease;
}

.about-block:hover,
.about-hero:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.about-right img{
    transition:transform .4s ease;
}

.about-right img:hover{
    transform:scale(1.03);
}

.about-bg:not(:last-child){
    margin-bottom:20px;
}

.about-container{
    margin-bottom:50px;
}

.about-block,
.about-hero,
.vm-box,
.why-card{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@media(max-width:1000px){

    .journey-content{
        flex-direction:column;
    }

    .about-left,
    .about-right{
        width:100%;
    }

    .vision-mission{
        flex-direction:column;
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        height:auto;
        padding:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
        margin-top:15px;
    }

    .about-block,
    .about-hero{
        padding:30px;
    }

    .about-block h2,
    .journey-title,
    .why-title{
        font-size:30px;
    }

    .about-left p,
    .about-block p,
    .vm-box p,
    .why-card p{
        font-size:16px;
        line-height:1.8;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .vm-box h2{
        font-size:28px;
    }

    .why-card h3{
        font-size:20px;
    }

}

@media(max-width:480px){

    .about-block,
    .about-hero{
        padding:20px;
    }

    .about-block h2,
    .journey-title{
        font-size:26px;
    }

    .heading-line{
        width:70px;
    }

    .logo img{
        height:70px;
    }

    .nav-links a{
        font-size:16px;
    }

}