:root{
    --navy:#0a1628;
    --navy-light:#102445;
    --gold:#c8a84b;
    --gold-light:#e8cc7a;
    --bg:#f6f8fb;
    --text:#444;
}

/* ==========================
   GLOBAL
========================== */

body{
    background:var(--bg);
    font-family:'Inter',sans-serif;
    color:var(--text);
    overflow-x:hidden;
}

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title small{
    display:block;
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:700;
    margin-bottom:10px;
}

.section-title h2{
    color:var(--navy);
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
}

.section-title p{
    color:#777;
    max-width:650px;
    margin:auto;
}

/* ==========================
   HERO
========================== */

.about-hero{
    background:
    linear-gradient(rgba(10,22,40,.92),rgba(10,22,40,.92)),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d');
    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;
    padding:140px 20px;
    position:relative;
}

.about-hero::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--gold),
        var(--gold-light),
        var(--gold)
    );
}

.hero-badge{
    display:inline-block;
    padding:10px 20px;
    border:1px solid rgba(200,168,75,.4);
    color:var(--gold);
    border-radius:40px;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:25px;
}

.about-hero h1{
    font-size:62px;
    font-weight:800;
}

.about-hero h1 span{
    color:var(--gold);
}

.about-hero p{
    max-width:750px;
    margin:auto;
    margin-top:20px;
    color:#cfd8e5;
    line-height:1.8;
}

/* ==========================
   COMPANY STORY
========================== */

.about-image{
    overflow:hidden;
    border-radius:10px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.about-image img{
    width:100%;
    transition:.4s;
}

.about-image img:hover{
    transform:scale(1.05);
}

.about-content h3{
    color:var(--navy);
    font-weight:800;
    margin-bottom:20px;
}

.about-content p{
    line-height:1.9;
    color:#666;
}

/* ==========================
   TIMELINE
========================== */

.timeline-section{
    background:#fff;
}

.timeline-about{
    position:relative;
    max-width:1200px;
    margin:auto;
}

.timeline-about::before{
    content:'';
    position:absolute;
    width:4px;
    background:var(--gold);
    top:0;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
}

.timeline-item{
    position:relative;
    width:50%;
    padding:20px 40px;
}

.timeline-item:nth-child(odd){
    left:0;
}

.timeline-item:nth-child(even){
    left:50%;
}

.timeline-item .content{
    background:#fff;
    padding:25px;
    border-radius:8px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.timeline-item .year{
    color:var(--gold);
    font-size:32px;
    font-weight:800;
    margin-bottom:10px;
}

.timeline-item h5{
    color:var(--navy);
    font-weight:700;
}

/* ==========================
   FEATURE BOXES
========================== */

.feature-box{
    background:#fff;
    padding:35px;
    border-radius:8px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
    border-bottom:4px solid transparent;
}

.feature-box:hover{
    transform:translateY(-8px);
    border-bottom:4px solid var(--gold);
}

.feature-box i{
    width:75px;
    height:75px;
    line-height:75px;
    border-radius:50%;
    background:var(--navy);
    color:var(--gold);
    font-size:28px;
    margin-bottom:20px;
}

.feature-box h5{
    color:var(--navy);
    font-weight:700;
    margin-bottom:15px;
}

.feature-box p{
    color:#777;
}

/* ==========================
   STATS
========================== */

.stats-section{
    background:var(--navy);
    padding:80px 0;
}

.stat-box{
    text-align:center;
    color:#fff;
}

.stat-box h2{
    font-size:52px;
    color:var(--gold);
    font-weight:800;
}

.stat-box p{
    text-transform:uppercase;
    letter-spacing:2px;
    color:#cfd8e5;
}

/* ==========================
   TEAM
========================== */

.team-card{
    background:#fff;
    border-radius:8px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.team-card:hover{
    transform:translateY(-8px);
}

.team-card img{
    width:130px;
    height:130px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid var(--gold);
    margin-bottom:20px;
}

.team-card h5{
    color:var(--navy);
    font-weight:700;
}

.team-card p{
    color:#777;
}

/* ==========================
   VALUES
========================== */

.bg-light{
    background:#fafbfc!important;
}

/* ==========================
   MISSION
========================== */

.mission-box{
    background:#fff;
    padding:35px;
    border-left:5px solid var(--gold);
    border-radius:8px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    height:100%;
}

.mission-box h4{
    color:var(--navy);
    font-weight:800;
    margin-bottom:15px;
}

.mission-box p{
    color:#666;
    line-height:1.8;
}

/* ==========================
   MAP
========================== */

.live-map{
    overflow:hidden;
    border-radius:10px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.live-map iframe{
    display:block;
}

/* ==========================
   CTA
========================== */

.cta-section{
    background:
    linear-gradient(
        135deg,
        var(--navy),
        var(--navy-light)
    );
    color:#fff;
    text-align:center;
    padding:100px 20px;
    position:relative;
}

.cta-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--gold),
        var(--gold-light),
        var(--gold)
    );
}

.cta-section h2{
    font-size:44px;
    font-weight:800;
}

.cta-section p{
    color:#d6dce7;
    max-width:700px;
    margin:20px auto 35px;
}

.cta-btn{
    background:var(--gold);
    color:var(--navy);
    text-decoration:none;
    padding:15px 35px;
    font-weight:700;
    border-radius:5px;
    display:inline-block;
    transition:.3s;
}

.cta-btn:hover{
    background:var(--gold-light);
    color:var(--navy);
    transform:translateY(-2px);
}

/* ==========================
   ANIMATIONS
========================== */

.feature-box,
.team-card,
.mission-box{
    animation:fadeUp .7s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .about-hero{
        padding:100px 20px;
    }

    .about-hero h1{
        font-size:38px;
    }

    .section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:30px;
    }

    .timeline-about::before{
        left:15px;
    }

    .timeline-item{
        width:100%;
        left:0 !important;
        padding-left:50px;
        padding-right:0;
    }

    .stat-box{
        margin-bottom:25px;
    }

    .cta-section h2{
        font-size:32px;
    }

}