/*==================================================
    ABOUT HERO
==================================================*/

.about-hero{

    position:relative;

    padding:120px 0;

    background:linear-gradient(135deg,#f8fafc 0%,#eef8f2 100%);

    overflow:hidden;

}

/* Decorative Circles */

.about-hero::before{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    border-radius:50%;

    background:rgba(0,166,81,.08);

    top:-120px;

    right:-120px;

}

.about-hero::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    background:rgba(0,166,81,.05);

    bottom:-80px;

    left:-80px;

}

/* Content */

.about-hero-content{

    position:relative;

    z-index:2;

    max-width:850px;

}

/* Badge */

.about-hero .section-badge{

    display:inline-block;

    padding:10px 22px;

    background:#e8f8ef;

    color:#00A651;

    border-radius:40px;

    font-size:15px;

    font-weight:600;

    margin-bottom:25px;

}

/* Heading */

.about-hero h1{

    font-size:56px;

    line-height:1.2;

    font-weight:800;

    color:#111827;

    margin-bottom:30px;

}

/* Description */

.about-hero p{

    font-size:18px;

    color:#6b7280;

    line-height:1.9;

    max-width:760px;

    margin-bottom:40px;

}

/* Buttons */

.about-hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/* Primary Button */

.about-hero .btn-primary{

    display:inline-block;

    padding:15px 34px;

    background:#00A651;

    color:#fff;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.about-hero .btn-primary:hover{

    background:#008e45;

    transform:translateY(-3px);

}

/* Outline Button */

.about-hero .btn-outline{

    display:inline-block;

    padding:15px 34px;

    border:2px solid #00A651;

    color:#00A651;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.about-hero .btn-outline:hover{

    background:#00A651;

    color:#fff;

    transform:translateY(-3px);

}

/*==========================
    Responsive
==========================*/

@media(max-width:992px){

    .about-hero{

        padding:90px 0;

    }

    .about-hero h1{

        font-size:44px;

    }

}

@media(max-width:768px){

    .about-hero{

        padding:70px 0;

    }

    .about-hero h1{

        font-size:34px;

    }

    .about-hero p{

        font-size:16px;

    }

    .about-hero-buttons{

        flex-direction:column;

        align-items:flex-start;

    }

    .about-hero .btn-primary,
    .about-hero .btn-outline{

        width:100%;

        text-align:center;

    }

}