/*=====================================
WELCOME SECTION
======================================*/

.welcome{

    background:var(--white);

}

.welcome img{

    width:100%;
    height:450px;

    object-fit:cover;

    border-radius:20px;

    box-shadow:var(--shadow-md);

}

.welcome h1{

    color:var(--primary);

    margin-bottom:25px;

}

.welcome p{

    margin-bottom:20px;

    line-height:1.9;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

    font-weight:500;

}

.feature-item i{

    color:var(--secondary);

    font-size:20px;

}
/*=====================================
FOUNDATION SECTION
======================================*/

.foundation-section{

    background:var(--light);

}

.foundation-intro{

    max-width:760px;

    margin:20px auto 0;

}

.foundation-card{

    background:#fff;

    padding:40px;

    border-radius:20px;

    height:100%;

    text-align:center;

    box-shadow:var(--shadow-md);

    transition:var(--transition);

}

.foundation-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.foundation-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:rgba(249,168,38,.15);

    display:flex;

    align-items:center;

    justify-content:center;

}

.foundation-icon i{

    font-size:38px;

    color:var(--secondary);

}

.foundation-card h3{

    color:var(--primary);

    margin-bottom:20px;

}

.foundation-card p{

    margin-bottom:0;

}
/*=====================================
WHY CHOOSE
======================================*/

.why-us{

    background:#fff;

}

.why-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    height:100%;

    box-shadow:var(--shadow-md);

    transition:var(--transition);

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.why-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    background:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

}

.why-icon i{

    color:#fff;

    font-size:34px;

}

/*  our-story.php writes the glyph as a bare <i> straight inside .why-card with
    no .why-icon wrapper, so none of the above applied and the icon fell back to
    default body text - a tiny grey glyph jammed against the heading. Styling the
    bare <i> as its own disc makes the card render identically either way, so a
    missing wrapper can't silently break the icon again. */
.why-card>i{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    background:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

}

.why-card h4{

    color:var(--primary);

    margin-bottom:18px;

}
/*=====================================
STATISTICS
======================================*/

.stats-section{

    position:relative;

    background:url("../images/about/stats-bg.jpg") center/cover no-repeat;

    color:#fff;

}

.overlay-dark{

    position:absolute;

    inset:0;

    background:rgba(11,46,107,.82);

}

.stats-section .container{

    position:relative;

    z-index:2;

}

.stat-box{

    padding:30px 20px;

}

.stat-box h2{

    color:var(--secondary);

    font-size:56px;

    font-weight:700;

    margin-bottom:10px;

}

.stat-box p{

    color:#fff;

    margin:0;

    font-size:18px;

}
.hero-content h1{

    color:var(--white);

    font-size:var(--font-hero);

    font-weight:var(--fw-bold);

    line-height:1.15;

    margin-bottom:25px;

}
.hero-content p{

    color:rgba(255,255,255,.92);

    font-size:20px;

    max-width:600px;

    margin-bottom:30px;

    line-height:1.8;

}
.hero-badge{

    display:inline-block;

    margin-bottom:20px;

    color:var(--secondary);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;

    font-weight:700;

}