.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-tag{
    color:#00AEEF;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

.line{
    width:70px;
    height:4px;
    background:#00AEEF;
    margin:20px 0;
}

.center{
    display:block;
    text-align:center;
}

.center-line{
    margin:20px auto;
}

/* =========================
   HERO SECTION
========================= */

.about-hero{
    position:relative;
    height:650px;
    background:
        linear-gradient(
            135deg,
            rgba(0,31,69,0.92),
            rgba(0,60,130,0.75),
            rgba(0,174,239,0.20)
        ),
        url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.about-hero-content{
    position:relative;
    z-index:2;
}

.about-left{
    max-width:650px;
    color:white;
}

.about-left h1{
    font-size:65px;
    line-height:1.2;
    margin:20px 0;
    font-weight:700;
}

.about-left p{
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,0.9);
}

.story-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-top:25px;
    color:#00AEEF;
    text-decoration:none;
    font-weight:600;
}

.story-btn i{
    width:45px;
    height:45px;
    border:2px solid #00AEEF;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* =========================
   WHO WE ARE
========================= */

.who-we-are{
    padding:100px 0;
    background:#f8fbff;
}

.who-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.who-text h2{
    font-size:45px;
    line-height:1.3;
    margin:20px 0;
}

.who-text p{
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

.experience{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:30px;
    color:#00AEEF;
    font-weight:600;
}

.experience i{
    font-size:28px;
}

.who-image{
    position:relative;
}

.who-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.mission-card{
    position:absolute;
    right:-40px;
    bottom:40px;
    background:white;
    width:350px;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.mission-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.mission-item:last-child{
    margin-bottom:0;
}

.mission-item i{
    color:#00AEEF;
    font-size:22px;
    margin-top:5px;
}

.mission-item h4{
    margin:0 0 10px;
}

.mission-item p{
    margin:0;
    color:#666;
    line-height:1.7;
}

/* =========================
   CORE VALUES
========================= */

.core-values{
    padding:100px 0;
}

.title{
    font-size:45px;
    margin:20px 0;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.value-card{
    background:white;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.4s;
}

.value-card:hover{
    transform:translateY(-10px);
}

.value-card i{
    font-size:40px;
    color:#00AEEF;
    margin-bottom:25px;
}

.value-card h3{
    margin-bottom:15px;
}

.value-card p{
    color:#666;
    line-height:1.8;
}

/* =========================
   CTA SECTION
========================= */

.about-cta{
    background:#001F45;
    padding:70px 0;
    color:white;
    position:relative;
    overflow:hidden;
}

.cta-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.cta-left{
    display:flex;
    align-items:center;
    gap:25px;
}

.cta-left i{
    font-size:55px;
    color:#00AEEF;
}

.cta-left h2{
    font-size:42px;
    max-width:500px;
}

.cta-right{
    max-width:450px;
}

.cta-right p{
    line-height:1.8;
    color:rgba(255,255,255,0.8);
    margin-bottom:25px;
}

.cta-btn{
    display:inline-block;
    padding:14px 35px;
    background:#00AEEF;
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
}

.cta-btn:hover{
    background:white;
    color:#001F45;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .who-wrapper{
        grid-template-columns:1fr;
    }

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

    .cta-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .cta-left{
        flex-direction:column;
    }

    .mission-card{
        position:relative;
        right:0;
        bottom:0;
        width:100%;
        margin-top:20px;
    }
}

@media(max-width:768px){

    .about-left h1{
        font-size:45px;
    }

    .who-text h2,
    .title,
    .cta-left h2{
        font-size:35px;
    }

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

    .about-hero{
        height:auto;
        padding:120px 0;
    }
}