/*==================================================
        ABOUT.CSS
        PART 1
        Hero + Common Sections
==================================================*/


/*=========================================
        COMMON SECTION
=========================================*/

.section-padding{
    padding:90px 0;
}

.section-subtitle{
    display:inline-block;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#5FB33B;
    margin-bottom:15px;
}

.section-title{
    font-size:3rem;
    font-weight:800;
    line-height:1.2;
    color:#1F2D23;
    margin-bottom:25px;
}

.section-title span{
    color:#5FB33B;
}

.section-description{
    font-size:1.08rem;
    line-height:1.9;
    color:#677281;
}



/*=========================================
            ABOUT HERO
=========================================*/

.about-banner{

    position:relative;

    min-height:690px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
        linear-gradient(
            rgba(11,32,25,.70),
            rgba(11,32,25,.70)
        ),
        url("../images/about-banner.jpg");

    background-size:cover;
    padding:140px 0 10px;
    background-position:center;

    background-repeat:no-repeat;

}

.about-banner::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.18),
        rgba(0,0,0,.08)
    );

}

.about-banner .container{

    position:relative;

    z-index:2;

}

.about-banner .hero-content{

    max-width:640px;

}

.about-banner .hero-subtitle{

    display:inline-block;

    font-size:.9rem;

    font-weight:700;

    letter-spacing:2px;

    color:#D8EAD3;

    text-transform:uppercase;

    margin-bottom:18px;

}

.about-banner h1{

    font-size:4rem;

    font-weight:800;

    line-height:1.12;

    color:#fff;

    margin-bottom:25px;

}

.about-banner p{

    color:rgba(255,255,255,.92);

    font-size:1.12rem;

    line-height:1.9;

    max-width:620px;

    margin-bottom:40px;

}

.about-banner .btn{

    padding:15px 36px;

    border-radius:50px;

    font-weight:600;

}



/*=========================================
            IMAGE BOX
=========================================*/

.image-box{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    box-shadow:0 20px 60px rgba(0,0,0,.10);

}

.image-box img{

    width:100%;

    height:500px;

    object-fit:cover;

    transition:.45s;

}

.image-box:hover img{

    transform:scale(1.05);

}



/*=========================================
        EXPERIENCE CARD
=========================================*/

.experience-card{

    position:absolute;

    left:25px;

    bottom:25px;

    background:#5FB33B;

    color:#fff;

    border-radius:18px;

    padding:25px 28px;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.experience-card h3{

    font-size:2.3rem;

    margin-bottom:5px;

}

.experience-card p{

    margin:0;

    font-size:.95rem;

}



/*=========================================
            FEATURE CARD
=========================================*/

.feature-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.feature-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#EEF8E9;

    color:#5FB33B;

    font-size:30px;

    margin-bottom:22px;

}

.feature-card h4{

    font-size:1.45rem;

    font-weight:700;

    color:#1F2D23;

    margin-bottom:15px;

}

.feature-card p{

    margin:0;

    color:#677281;

    line-height:1.8;

}



/*=========================================
        SMALL UTILITIES
=========================================*/

.rounded-20{

    border-radius:20px;

}

.shadow-soft{

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.bg-light-green{

    background:#F7FCF4;

}



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

@media(max-width:992px){

    .about-banner{

        min-height:470px;

    }

    .about-banner h1{

        font-size:3rem;

    }

    .section-title{

        font-size:2.4rem;

    }

    .image-box img{

        height:420px;

    }

}

@media(max-width:768px){

    .about-banner{

        min-height:420px;

        text-align:center;

    }

    .about-banner .hero-content{

        max-width:100%;

    }

    .about-banner h1{

        font-size:2.4rem;

    }

    .about-banner p{

        font-size:1rem;

    }

    .image-box{

        margin-bottom:35px;

    }

    .image-box img{

        height:320px;

    }

    .experience-card{

        position:relative;

        left:auto;

        bottom:auto;

        margin-top:20px;

    }

}
/*==================================================
        ABOUT.CSS
        PART 2
        Story • Mission • Vision • Values
==================================================*/


/*=========================================
            OUR STORY
=========================================*/

.story-section{

    position:relative;

}

.story-content{

    padding-left:20px;

}

.story-content p{

    font-size:1.08rem;

    line-height:1.9;

    color:#677281;

    margin-bottom:22px;

}

.story-highlight{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-top:35px;

}

.story-highlight i{

    width:65px;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:#EEF8E9;

    color:#5FB33B;

    font-size:28px;

}

.story-highlight h5{

    font-size:1.35rem;

    margin-bottom:10px;

    color:#1F2D23;

}

.story-highlight p{

    margin:0;

}



/*=========================================
            FEATURE GRID
=========================================*/

.feature-grid{

    margin-top:60px;

}

.feature-card{

    border:1px solid #E9EFE7;

}

.feature-card h4{

    font-size:1.35rem;

}

.feature-card p{

    font-size:1rem;

}



/*=========================================
            MISSION
=========================================*/

.mission-section{

    background:#F8FBF6;

}

.mission-box{

    background:#fff;

    border-radius:22px;

    padding:45px;

    height:100%;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.mission-box:hover{

    transform:translateY(-8px);

}

.mission-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#EEF8E9;

    color:#5FB33B;

    font-size:34px;

    margin-bottom:25px;

}

.mission-box h3{

    font-size:1.8rem;

    font-weight:700;

    color:#1F2D23;

    margin-bottom:20px;

}

.mission-box p{

    margin:0;

    line-height:1.9;

    color:#677281;

}



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

.values-section{

    position:relative;

}

.value-card{

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    border:1px solid #EEF1EC;

    transition:.35s;

}

.value-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.value-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    background:#EEF8E9;

    color:#5FB33B;

    font-size:36px;

}

.value-card h4{

    font-size:1.4rem;

    margin-bottom:18px;

    color:#1F2D23;

}

.value-card p{

    margin:0;

    color:#677281;

    line-height:1.8;

}



/*=========================================
        WHY CHOOSE US
=========================================*/

.why-section{

    background:#fff;

}

.why-image{

    overflow:hidden;

    border-radius:22px;

    box-shadow:0 20px 55px rgba(0,0,0,.08);

}

.why-image img{

    width:100%;

    height:520px;

    object-fit:cover;

}

.why-content{

    padding-left:30px;

}

.why-content p{

    color:#677281;

    line-height:1.9;

    margin-bottom:30px;

}

.why-list{

    list-style:none;

    padding:0;

    margin:0;

}

.why-list li{

    display:flex;

    align-items:flex-start;

    gap:16px;

    margin-bottom:22px;

    color:#4D5966;

    font-size:1.08rem;

    line-height:1.7;

}

.why-list i{

    width:28px;

    height:28px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#5FB33B;

    color:#fff;

    font-size:13px;

    flex-shrink:0;

}



/*=========================================
            ACHIEVEMENTS
=========================================*/

.achievement-section{

    background:#F8FBF6;

}

.achievement-card{

    background:#fff;

    border-radius:22px;

    padding:45px 30px;

    text-align:center;

    transition:.35s;

    height:100%;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

}

.achievement-card:hover{

    transform:translateY(-8px);

}

.achievement-card h2{

    font-size:3rem;

    color:#5FB33B;

    font-weight:800;

    margin-bottom:10px;

}

.achievement-card h5{

    font-size:1.25rem;

    color:#1F2D23;

    margin-bottom:12px;

}

.achievement-card p{

    margin:0;

    color:#677281;

}



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

@media(max-width:992px){

    .story-content,

    .why-content{

        padding-left:0;

        margin-top:40px;

    }

    .mission-box{

        padding:35px;

    }

    .why-image img{

        height:420px;

    }

}

@media(max-width:768px){

    .mission-box{

        padding:30px;

    }

    .value-card{

        padding:30px 25px;

    }

    .why-image img{

        height:320px;

    }

    .achievement-card{

        padding:35px 20px;

    }

    .achievement-card h2{

        font-size:2.5rem;

    }

}
/*==================================================
        ABOUT.CSS
        PART 3
        Global • Quality • CTA • Responsive
==================================================*/


/*=========================================
        GLOBAL PRESENCE
=========================================*/

.global-section{

    background:#F8FBF6;

}

.global-image{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    box-shadow:0 20px 60px rgba(0,0,0,.10);

}

.global-image img{

    width:100%;

    height:520px;

    object-fit:cover;

    transition:.45s;

}

.global-image:hover img{

    transform:scale(1.05);

}

.global-card{

    position:absolute;

    left:25px;

    bottom:25px;

    background:#ffffff;

    padding:22px 26px;

    border-radius:18px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

    max-width:300px;

}

.global-card i{

    font-size:34px;

    color:#5FB33B;

    margin-bottom:12px;

}

.global-card h5{

    font-size:1.25rem;

    color:#1F2D23;

    margin-bottom:8px;

}

.global-card p{

    margin:0;

    color:#677281;

    font-size:.95rem;

}

.region-card{

    background:#ffffff;

    border:1px solid #E8EFE7;

    border-radius:20px;

    padding:28px;

    height:100%;

    transition:.35s;

}

.region-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.region-icon{

    width:68px;

    height:68px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#EEF8E9;

    color:#5FB33B;

    font-size:28px;

    margin-bottom:20px;

}

.region-card h5{

    font-size:1.35rem;

    color:#1F2D23;

    margin-bottom:15px;

}

.region-card p{

    margin:0;

    color:#677281;

    line-height:1.8;

}



/*=========================================
        QUALITY COMMITMENT
=========================================*/

.quality-section{

    background:#ffffff;

}

.quality-image{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    box-shadow:0 20px 60px rgba(0,0,0,.10);

}

.quality-image img{

    width:100%;

    height:620px;

    object-fit:cover;

    transition:.45s;

}

.quality-image:hover img{

    transform:scale(1.05);

}

.quality-badge{

    position:absolute;

    right:25px;

    bottom:25px;

    background:#ffffff;

    border-radius:18px;

    padding:18px 24px;

    display:flex;

    align-items:center;

    gap:15px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.quality-badge i{

    font-size:36px;

    color:#5FB33B;

}

.quality-badge h5{

    margin:0;

    color:#1F2D23;

}

.quality-badge span{

    font-size:.9rem;

    color:#677281;

}

.quality-list{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.quality-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:22px;

    border-radius:18px;

    background:#F8FBF6;

    transition:.35s;

}

.quality-item:hover{

    transform:translateX(8px);

}

.quality-item i{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:15px;

    background:#5FB33B;

    color:#ffffff;

    font-size:22px;

}

.quality-item h5{

    font-size:1.2rem;

    color:#1F2D23;

    margin-bottom:8px;

}

.quality-item p{

    margin:0;

    color:#677281;

    line-height:1.8;

}



/*=========================================
        CERTIFICATIONS
=========================================*/

.certification-list{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:35px;

}

.certification-badge{

    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:#EEF8E9;

    color:#1F2D23;

    font-weight:600;

    transition:.35s;

}

.certification-badge i{

    color:#5FB33B;

}

.certification-badge:hover{

    background:#5FB33B;

    color:#ffffff;

}

.certification-badge:hover i{

    color:#ffffff;

}



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

.about-cta{

    padding:100px 0;

    background:#ffffff;

}

.cta-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    padding:70px;

    background:linear-gradient(135deg,#184628,#5FB33B);

    color:#ffffff;

    box-shadow:0 30px 70px rgba(0,0,0,.18);

}

.cta-card::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-140px;

    right:-140px;

}

.cta-card>*{

    position:relative;

    z-index:2;

}

.cta-card h2{

    color:#ffffff;

    font-size:2.6rem;

    margin-bottom:20px;

}

.cta-card p{

    color:rgba(255,255,255,.90);

    font-size:1.08rem;

    line-height:1.9;

}

.cta-card .btn{

    padding:15px 34px;

    border-radius:50px;

    font-weight:600;

}

.cta-card .btn-success{

    background:#ffffff;

    color:#1F5C35;

    border:none;

}

.cta-card .btn-success:hover{

    background:#f4f4f4;

}

.cta-card .btn-outline-light{

    border:2px solid #ffffff;

}



/*=========================================
        ANIMATION
=========================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}



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

@media(max-width:992px){

    .global-image img,

    .quality-image img{

        height:420px;

    }

    .global-card,

    .quality-badge{

        position:relative;

        left:auto;

        right:auto;

        bottom:auto;

        margin-top:25px;

        max-width:100%;

    }

    .cta-card{

        padding:50px;

        text-align:center;

    }

    .cta-card h2{

        font-size:2.2rem;

    }

}

@media(max-width:768px){

    .global-image img,

    .quality-image img{

        height:320px;

    }

    .region-card,

    .quality-item{

        padding:22px;

    }

    .certification-list{

        justify-content:center;

    }

    .cta-card{

        padding:35px 25px;

    }

    .cta-card h2{

        font-size:1.8rem;

    }

    .cta-card .btn{

        width:100%;

        margin-bottom:15px;

    }

}