/* ================= GLOBAL ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    background:#071326;
    color:#fff;
    overflow-x:hidden;
}
/* ================= HERO ================= */
.about-hero{
    min-height:90vh;
    display:flex;
    justify-content:center;
    text-align:center;
    padding:90px 0%;
    background:linear-gradient(135deg,#071326,#0b1e3c,#0d3d6e);
}
.badge{
    display:inline-block;
    padding:13px 22px;
    border-radius:50px;
    background:#00d4ff20;
    border:1px solid #00d4ff50;
    color:#00d4ff;
}
.about-hero h1{
    font-size:65px;
    line-height:1.2;
    margin-bottom:25px;
}
.about-hero h1 span{
    color:#00d4ff;
}
.about-hero p{
    max-width:800px;
    margin:auto;
    color:#c9d7f2;
    line-height:1.9;
    font-size:19px;
}
/* ================= OUR STORY ================= */
.about-section{
    width:50%;
    margin:auto;
    grid-template-columns:1fr 1fr;
    gap:60px;
    padding:40px 0;
    text-align: center;
}
.about-section h2{
    font-size:45px;
   text-align: center;
}
.about-section p{
    color:#c8d0e2;
    line-height:1.9;
    font-size:20px;
}
/* ================= MISSION SECTION ================= */
.mission-section{
    width:90%;
    margin:auto;
    padding:40px 0 100px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}
.mission-card{
    background:#0f1d3d;
    border:1px solid rgba(0,212,255,.2);
    border-radius:20px;
    padding:40px;
    transition:.4s;
}
.mission-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px rgba(0,212,255,.35);
}
.mission-card .icon{
    font-size:55px;
    margin-bottom:20px;
}
.mission-card h3{
    font-size:30px;
    margin-bottom:15px;
}
.mission-card p{
    color:#c8d0e2;
    line-height:1.8;
}
/* ================= WHY SECTION ================= */
.why-section{
    width:90%;
    margin:auto;
}
.section-title{
    text-align:center;
    margin-bottom:60px;
}
.section-title span{
    color:#00d4ff;
    font-weight:700;
}
.section-title h2{
    font-size:50px;
    margin-top:10px;
}
.section-title h2 span{
    color:#00d4ff;
}
.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}
.why-card{
    background:#0f1d3d;
    border-radius:20px;
    padding:35px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}
.why-card:hover{
    transform:translateY(-10px);
    border-color:#00d4ff;
    box-shadow:0 0 20px rgba(0,212,255,.25);
}
.why-card .icon{
    font-size:50px;
    margin-bottom:20px;
}
.why-card h3{
    margin-bottom:15px;
}
.why-card p{
    color:#c8d0e2;
    line-height:1.7;
}
/* ================= STATS ================= */
.stats-section{
    width:90%;
    margin:80px auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}
.stat-box{
    background:#0f1d3d;
    padding:35px;
    text-align:center;
    border-radius:20px;
    transition:.4s;
}
.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 0 20px rgba(0,212,255,.25);
}
.stat-box h2{
    font-size:50px;
    color:#00d4ff;
}
.stat-box p{
    margin-top:10px;
    color:#c8d0e2;
}
/* ================= CTA ================= */
.about-cta{
    width:90%;
    margin:100px auto;
    text-align:center;
    padding:70px 40px;
    border-radius:30px;
    background:linear-gradient(135deg,#0d3d6e,#071326);
}
.about-cta h2{
    font-size:50px;
    margin-bottom:20px;
}
.about-cta p{
    color:#d0d9ef;
    margin-bottom:35px;
}
.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}
.btn-outline{
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}
.btn-outline{
    border:2px solid #00d4ff;
    color:#00d4ff;
}
.btn-outline:hover{
    background:#00d4ff;
    color:#071326;
}
/* ================= RESPONSIVE ================= */
@media(max-width:992px){
.about-section,
.mission-section,
.why-grid,
.stats-section{
    grid-template-columns:1fr;
}
.about-section{
    text-align:center;
}
.about-hero h1{
    font-size:45px;
}
.section-title h2,
.about-cta h2{
    font-size:38px;
}
.navbar{
    padding:0 20px;
}
nav ul{
    gap:15px;
}}
/* ================= FOOTER ================= */
.footer{
    background:#081423;
    color:#fff;
    padding:60px 40px 20px;
}
.footer-container{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}
.footer-box{
    flex:1;
    padding:0 35px;
}
.footer-box:nth-child(2),
.footer-box:nth-child(3){
    border-left:1px solid rgba(255,255,255,.15);
}
.footer-box h2,
.footer-box h3{
    color:#00d4ff;
    margin-bottom:15px;
}
.footer-box p{
    color:#c8d8f5;
    line-height:1.8;
    margin:8px 0;
}
.footer-bottom{
    margin-top:40px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:20px;
    color:#888;
    padding-bottom: 5px;
}
/* ================= FOOTER  end================= */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    border: none;
    outline: none;
}

.logo a::after {
    display: none !important;
    content: none !important;
}

.logo a:hover {
    text-decoration: none;
    border: none;
}

.logo-img {
    display: block;
}