/* =========================================
   ABOUT HERO
========================================= */

.about-hero{

    position:relative;

    height:500px;

    overflow:hidden;
}

.hero-img{

    width:100%;

    height:100%;

    object-fit:cover;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,.7),
        rgba(0,0,0,.25)
    );
}

.hero-content{

    position:absolute;

    background-color: color-mix(in hsl longer hue, color percentage, color percentage);

    top:50%;

    left:8%;

    transform:translateY(-50%);

    color:#f5f1f1;

    z-index:10;
}

.hero-content h1{

    font-size:72px;

    font-weight:800;

    margin-bottom:20px;
}

.hero-content span{

    color:#ff6600;
}

.hero-content p{

    font-size:22px;

    letter-spacing:2px;
}


/* =========================================
   GLOBAL SECTION
========================================= */

.about-block,
.text-center,
.timeline,
.counter-section,
.who-section,
.trusted-section{

    margin-top:100px;
}

.section-title,
.text-center h2,
.about-block h2,
.trusted-section h2{

    font-size:42px;

    font-weight:800;

    color:#111;

    margin-bottom:25px;
}


/* =========================================
   STORY BLOCK
========================================= */

.text-center p,
.about-block p{

    font-size:17px;

    line-height:1.9;

    color:#2c2c2b;
}


/* =========================================
   TIMELINE
========================================= */

.timeline{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;
}

.timeline-item{

    background:#fff;

    padding:35px;

    border-radius:24px;

    width:220px;

    text-align:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

    transition:.35s ease;
}

.timeline-item:hover{

    transform:translateY(-10px);
}

.timeline-item span{

    display:block;

    font-size:38px;

    font-weight:800;

    color:#ff6600;

    margin-bottom:10px;
}


/* =========================================
   COUNTERS
========================================= */

.counter-section{

    display:flex;

    justify-content:center;

    gap:80px;

    flex-wrap:wrap;

    text-align:center;
}

.counter{

    font-size:60px;

    font-weight:800;

    color:#ff6600;
}


/* =========================================
   ABOUT BLOCKS
========================================= */

.about-block{

    background:#e4280f1e;

    padding:60px;

    border-radius:30px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    margin-bottom:40px;
}

.about-block.center{

    text-align:center;
}


/* =========================================
   WHO SECTION
========================================= */

.who-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:50px;
}

.who-card{

    background:#eee3b5;

    padding:45px 35px;

    border-radius:26px;

    text-align:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition:.35s ease;
}

.who-card:hover{

    transform:translateY(-10px);
}

.icon{

    font-size:48px;

    margin-bottom:20px;
}

.who-card h5{

    font-size:26px;

    margin-bottom:14px;
}


/* =========================================
   TRUSTED
========================================= */

.trusted-section{

    text-align:center;
}

.trusted-sub{

    color:#666;

    margin-bottom:40px;
}

.logo-strip{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:40px;

    flex-wrap:wrap;
}

.logo-strip img{

    border-radius:12px;

    transition:.35s ease;
}

.logo-strip img:hover{

    transform:scale(1.08);
}


/* =========================================
   FADE ANIMATION
========================================= */

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:
    all .8s ease;
}

.fade-up.show{

    opacity:1;

    transform:translateY(0);
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .hero-content h1{

        font-size:44px;
    }

    .hero-content p{

        font-size:16px;
    }

    .about-block{

        padding:35px 25px;
    }

    .section-title,
    .text-center h2,
    .about-block h2{

        font-size:32px;
    }

    .counter{

        font-size:42px;
    }
}