/* =========================================================
   ABOUT PAGE COMPLETE STYLE
========================================================= */

:root{
    --navy:#0A1F5C;
    --gold:#F5A623;
    --sky:#1A73E8;
    --light:#F4F7FF;
    --dark:#0D1B3E;
    --white:#ffffff;
    --gray:#6B7A99;
    --border:#E0E8F5;
}

/* =========================================================
   GLOBAL
========================================================= */

.section-space{
    padding:100px 0;
    position:relative;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 18px;
    border-radius:50px;
    background:rgba(245,166,35,.12);
    color:var(--gold);
    font-size:.78rem;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.section-title{
    font-size:3.4rem;
    line-height:1.1;
    font-weight:700;
    color:var(--navy);
    font-family:'Cormorant Garamond', serif;
}

.section-text{
    font-size:1rem;
    line-height:1.9;
    color:var(--gray);
}

.bg-light{
    background:var(--light)!important;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn-gold{
    background:var(--gold);
    color:var(--navy);
    padding:14px 30px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
    border:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.btn-gold:hover{
    background:#fff;
    color:var(--navy);
    transform:translateY(-4px);
}

.btn-outline-light-custom{
    border:2px solid rgba(255,255,255,.4);
    color:#fff;
    padding:14px 30px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.btn-outline-light-custom:hover{
    background:#fff;
    color:var(--navy);
}

/* =========================================================
   HERO
========================================================= */

.about-hero{
    background:
    linear-gradient(rgba(10,31,92,.82),rgba(10,31,92,.88)),
    url('../images/about/about-bg.jpg') center/cover no-repeat;
}

.about-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(245,166,35,.15),
    transparent 40%);
}

.hero-mini{
    display:inline-flex;
    align-items:center;
    background:rgba(255,255,255,.12);
    padding:10px 18px;
    border-radius:40px;
    color:#fff;
    font-size:.8rem;
    font-weight:700;
    letter-spacing:1px;
    backdrop-filter:blur(10px);
}

.about-title{
    font-size:5rem;
    line-height:1.05;
    font-weight:700;
    color:#fff;
    font-family:'Cormorant Garamond', serif;
}

.about-title span{
    color:var(--gold);
}

.about-text{
    font-size:1.05rem;
    line-height:1.9;
    color:rgba(255,255,255,.8);
    max-width:580px;
}

.about-hero-image{
    position:relative;
}

.about-hero-image img{
    width:100%;
    height:700px;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.floating-card{
    position:absolute;
    background:#fff;
    padding:24px;
    border-radius:24px;
    min-width:220px;
    box-shadow:0 18px 50px rgba(0,0,0,.12);
}

.floating-card h4{
    font-size:2rem;
    color:var(--navy);
    margin-bottom:6px;
    font-weight:800;
}

.floating-card p{
    margin:0;
    color:var(--gray);
    font-size:.9rem;
}

.card-one{
    left:-40px;
    bottom:50px;
}

.card-two{
    right:-40px;
    top:60px;
}

/* =========================================================
   ABOUT GRID
========================================================= */

.about-image-grid{
    position:relative;
    padding-right:100px;
}

.img-main{
    width:100%;
    height:620px;
    object-fit:cover;
    border-radius:30px;
}

.img-small{
    position:absolute;
    width:240px;
    height:300px;
    object-fit:cover;
    border-radius:25px;
    border:8px solid #fff;
    right:0;
    bottom:50px;
    box-shadow:0 18px 50px rgba(0,0,0,.12);
}

/* =========================================================
   FEATURES
========================================================= */

.about-features{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.feature-box{
    display:flex;
    gap:18px;
    padding:22px;
    border-radius:24px;
    background:#fff;
    border:1px solid var(--border);
    transition:.4s;
}

.feature-box:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 50px rgba(10,31,92,.08);
}

.feature-box i{
    width:65px;
    height:65px;
    min-width:65px;
    border-radius:20px;
    background:rgba(245,166,35,.12);
    color:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.5rem;
}

.feature-box h5{
    font-weight:700;
    color:var(--navy);
    margin-bottom:8px;
}

.feature-box p{
    margin:0;
    color:var(--gray);
    line-height:1.7;
}

/* =========================================================
   MISSION
========================================================= */

.mission-section{
    background:
    linear-gradient(135deg,#0A1F5C,#12337F);
}

.mission-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    padding:50px 35px;
    border-radius:30px;
    transition:.4s;
    height:100%;
}

.mission-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.12);
}

.mission-card .icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(245,166,35,.15);
    color:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:28px;
    font-size:2rem;
}

.mission-card h3{
    color:#fff;
    font-weight:700;
    margin-bottom:18px;
}

.mission-card p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
}

/* =========================================================
   VALUE CARDS
========================================================= */

.value-card{
    background:#fff;
    padding:40px 28px;
    border-radius:28px;
    border:1px solid var(--border);
    text-align:center;
    transition:.4s;
    height:100%;
}

.value-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 55px rgba(10,31,92,.08);
}

.value-card i{
    width:85px;
    height:85px;
    border-radius:24px;
    background:rgba(245,166,35,.12);
    color:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 25px;
    font-size:1.9rem;
}

.value-card h5{
    color:var(--navy);
    font-weight:700;
    margin-bottom:12px;
}

.value-card p{
    color:var(--gray);
    line-height:1.8;
    margin:0;
}

/* =========================================================
   SUPPORT SECTION
========================================================= */

.support-section{
    position:relative;
    overflow:hidden;
}

.support-card{
    position:relative;
    background:#fff;
    border-radius:32px;
    overflow:hidden;
    height:100%;
    transition:.45s ease;
    border:1px solid var(--border);
    box-shadow:0 10px 40px rgba(10,31,92,.05);
}

.support-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(10,31,92,.12);
}

.support-image{
    position:relative;
    overflow:hidden;
    height:320px;
}

.support-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.support-card:hover .support-image img{
    transform:scale(1.08);
}

.support-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        to top,
        rgba(10,31,92,.92),
        rgba(10,31,92,.15)
    );
}

.support-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    color:#fff;
    padding:8px 16px;
    border-radius:40px;
    font-size:.75rem;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.support-content{
    padding:35px 30px;
}

.support-icon{
    width:78px;
    height:78px;
    border-radius:24px;
    background:rgba(245,166,35,.12);
    color:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    margin-bottom:24px;
}

.support-content h3{
    font-size:2rem;
    font-weight:700;
    color:var(--navy);
    margin-bottom:18px;
    font-family:'Cormorant Garamond', serif;
}

.support-content p{
    color:var(--gray);
    line-height:1.9;
}

/* =========================================================
   CTA
========================================================= */

.about-cta{
    padding:100px 0;
    background:#fff;
}

.cta-box{
    background:
    linear-gradient(135deg,#0A1F5C,#163B91);
    padding:80px 50px;
    border-radius:35px;
    position:relative;
    overflow:hidden;
}

.cta-box::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(245,166,35,.08);
    top:-140px;
    right:-140px;
}

.cta-box h2{
    font-size:3.2rem;
    color:#fff;
    margin-bottom:20px;
    font-weight:700;
    font-family:'Cormorant Garamond', serif;
}

.cta-box p{
    max-width:700px;
    margin:auto;
    color:rgba(255,255,255,.75);
    line-height:1.9;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .section-space{
        padding:80px 0;
    }

    .about-title{
        font-size:3.8rem;
    }

    .section-title{
        font-size:2.6rem;
    }

    .about-hero-image img{
        height:550px;
    }

    .img-main{
        height:520px;
    }

    .card-one{
        left:20px;
    }

    .card-two{
        right:20px;
    }
}

@media(max-width:767px){

    .section-space{
        padding:65px 0;
    }

    .about-title{
        font-size:2.5rem;
        line-height:1.15;
    }

    .section-title{
        font-size:2rem;
    }

    .about-hero-image img{
        height:420px;
    }

    .floating-card{
        min-width:auto;
        padding:18px;
    }

    .floating-card h4{
        font-size:1.4rem;
    }

    .about-image-grid{
        padding-right:0;
    }

    .img-main{
        height:380px;
    }

    .img-small{
        position:relative;
        width:100%;
        height:240px;
        right:auto;
        bottom:auto;
        margin-top:20px;
        border:none;
    }

    .feature-box{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .support-image{
        height:240px;
    }

    .support-content{
        padding:25px 20px;
    }

    .support-content h3{
        font-size:1.5rem;
    }

    .cta-box{
        padding:60px 25px;
    }

    .cta-box h2{
        font-size:2rem;
    }
}

@media(max-width:480px){

    .about-title{
        font-size:2rem;
    }

    .section-title{
        font-size:1.7rem;
    }

    .about-hero-image img{
        height:340px;
    }

    .img-main{
        height:300px;
    }

    .mission-card,
    .value-card{
        padding:30px 22px;
    }

}