﻿/*.page-banner {
    padding: 70px 0 0;
    background: linear-gradient(135deg,#0b3b2e 0%, #146b48 40%, #1f8a5c 100%);
    position: relative;
    overflow: hidden;
}*/

    /* Glow */

    /*.page-banner::before {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: #20C997;
        filter: blur(150px);
        opacity: .15;
        top: -150px;
        right: -100px;
    }

.banner-wrapper {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 50px;
    padding: 40px 0 0 40px;
    align-items: center;
}

.banner-badge {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    color: #20C997;
    border: 1px solid rgba(255,255,255,.1);
    margin-bottom: 25px;
}

.banner-content h1 {
    color: #fff;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 25px;
}

    .banner-content h1 span {
        color: #20C997;
    }

.banner-content p {
    color: #D8E8FF;
    max-width: 550px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.breadcrumb-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(15px);
}

    .breadcrumb-box a {
        color: #fff;
        text-decoration: none;
    }

    .breadcrumb-box span:last-child {
        color: #20C997;
    }

.banner-image {
    text-align: center;
}

    .banner-image img {
        width: 100%;
        margin-bottom: -20px;
        max-width: 366px;
        animation: floatDoctor 5s ease-in-out infinite;
    }

@keyframes floatDoctor {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.banner-content {
    animation: slideLeft 1s ease forwards;
}

.banner-image {
    animation: slideRight 1s ease forwards;
}

@keyframes slideLeft {

    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {

    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}*/
/* Responsive */

/*@media(max-width:991px) {

    .banner-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0px;
        gap: 0px;
    }

    .banner-content p {
        margin: auto auto 35px;
    }

    .banner-image img {
        margin-bottom: -90px;
    }

    .banner-content h1 {
        font-size: 52px;
    }

    .banner-image {
        margin-top: 30px;
    }
}

@media(max-width:576px) {

    .page-banner {
        padding: 150px 0 60px;
    }

    .banner-content h1 {
        font-size: 38px;
    }
}

.banner-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient( rgba(255,255,255,.03) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.03) 1px, transparent 1px );
    background-size: 60px 60px;
    animation: gridMove 12s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(60px);
    }
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .25;
    animation: floatGlow 8s ease-in-out infinite;
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: #20C997;
    top: 10%;
    left: -100px;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: #0D6EFD;
    right: -100px;
    top: 20%;
    animation-delay: 2s;
}

.glow-3 {
    width: 250px;
    height: 250px;
    background: #22D3EE;
    bottom: -80px;
    left: 40%;
    animation-delay: 4s;
}

@keyframes floatGlow {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

.premium-contact {
    padding: 60px 0;
    background: #f8fafc;
    position: relative;
}*/

/* GRID */

/*.contact-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 40px;
}*/
/* ==========================
   ABOUT US SECTION
========================== */

/*.about-us {
    padding: 70px 0;
    background: #ffffff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
}

    .about-image img {
        width: 100%;
        border-radius: 30px;
        display: block;
        box-shadow: 0 20px 50px rgba(0,0,0,.08);
    }

.experience-box {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient( 135deg, #0A4EA3, #2563eb );
    color: #fff;
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
}

    .experience-box h3 {
        font-size: 40px;
        margin-bottom: 5px;
    }

.section-badge {
    display: inline-block;
    padding: 10px 20px;
    background: #E8FFF7;
    color: #20C997;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #081B3D;
    margin-bottom: 20px;
}

    .about-content h2 span {
        display: block;
        color: #20C997;
    }

.about-content p {
    color: #64748B;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    background: #F8FBFF;
    border: 1px solid #E6EEF7;
    padding: 16px 20px;
    border-radius: 15px;
    font-weight: 600;
    color: #081B3D;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    padding: 0 35px;
    border-radius: 50px;
    background: linear-gradient( 135deg, #0A4EA3, #2563eb );
    color: #fff;
    font-weight: 600;
}*/
/* ==========================
   TABLET
========================== */

/*@media(max-width:991px) {

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        text-align: center;
    }

        .about-content h2 {
            font-size: 42px;
        }

    .about-features {
        grid-template-columns: 1fr 1fr;
    }

    .experience-box {
        right: 20px;
    }
}*/

/* ==========================
   MOBILE
========================== */

/*@media(max-width:767px) {

    .about-us {
        padding: 70px 0;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-box {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        width: 100%;
    }

        .experience-box h3 {
            font-size: 32px;
        }
}*/
/* ==========================
   WHY CHOOSE US
========================== */

/*.why-choose {
    padding: 70px 0;
    background: #F8FBFF;
}

.section-title-center {
    text-align: center;
    max-width: 1100px;
    margin: auto;
    margin-bottom: 70px;
}

    .section-title-center h2 {
        font-size: 52px;
        color: #081B3D;
        margin: 20px 0;
    }

        .section-title-center h2 span {
            color: #20C997;
        }

    .section-title-center p {
        color: #64748B;
        line-height: 1.8;
    }

.choose-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.choose-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 25px;
    text-align: center;
    transition: .4s;
    border: 1px solid #E8EEF6;
}

    .choose-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.08);
    }

.choose-icon {
    width: 80px;
    height: 80px;
    margin: auto auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    background: linear-gradient( 135deg, #0A4EA3, #2563eb );
    border-radius: 20px;
    color: #fff;
}

.choose-card h3 {
    color: #081B3D;
    margin-bottom: 15px;
}

.choose-card p {
    color: #64748B;
    line-height: 1.8;
}
@media(max-width:991px) {

    .choose-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:767px) {

    .choose-grid {
        grid-template-columns: 1fr;
    }

    .section-title-center h2 {
        font-size: 34px;
    }
}*/
/* ==========================
   MISSION & VISION
========================== */

/*.mission-vision {
    padding: 0 0 70px;
    background: #fff;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.mv-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #E8EEF6;
    transition: all .4s ease;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

    .mv-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0,0,0,.08);
    }

    .mv-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #0D6EFD, #20C997);
    }

.mv-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    border-radius: 25px;
    background: linear-gradient( 135deg, #0A4EA3, #2563eb );
}

.mv-content {
    flex: 1;
}

.mv-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #081B3D;
    margin: 0 0 15px;
    line-height: 1.2;
}

.mv-card p {
    margin: 0;
    color: #64748B;
    font-size: 16px;
    line-height: 1.9;
}*/

/* ==========================
   TABLET
========================== */

/*@media (max-width: 991px) {

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .mv-card h3 {
        font-size: 28px;
    }
}*/

/* ==========================
   MOBILE
========================== */

/*@media (max-width: 767px) {

    .mission-vision {
        padding: 0 0 50px;
    }

    .mv-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 25px;
    }

    .mv-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
        font-size: 34px;
    }

    .mv-card h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .mv-card p {
        font-size: 15px;
        line-height: 1.8;
    }
}*/
/*=========================
 FAQ SECTION
=========================*/

/*.premium-faq-section {
    padding: 60px 0;
    background: #f8fafc;
}*/

/*=========================
 GRID
=========================*/

/*.faq-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
}*/

/*=========================
 LEFT SIDE
=========================*/
/*.faqsection-title {
    font-size: 42px;
}

.faq-content {
    background: linear-gradient( 135deg, #071c4d, #0A4EA3 );
    padding: 30px;
    border-radius: 30px;
    position: sticky;
    top: 60px;
}

    .faq-content .section-tag {
        background: rgba(255,255,255,.12);
        color: #fff;
    }

    .faq-content .faqsection-title {
        color: #fff;
        margin-top: 20px;
    }

        .faq-content .faqsection-title span {
            color: #27d9d2;
        }

    .faq-content p {
        color: rgba(255,255,255,.8);
        line-height: 1.9;
        margin-top: 20px;
    }*/

/*=========================
 SUPPORT CARD
=========================*/

/*.faq-support-card {
    margin-top: 35px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 20px;
}

.support-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: rgba(39,217,210,.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .support-icon i {
        color: #27d9d2;
        font-size: 28px;
    }

.support-content h4 {
    color: #fff;
    margin-bottom: 8px;
}

.support-content p {
    margin: 0;
    font-size: 14px;
}*/

/*=========================
 BUTTON
=========================*/

/*.faq-contact-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background: #27d9d2;
    color: #081B3D;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: .4s;
}

    .faq-contact-btn:hover {
        background: #fff;
        color: #081B3D;
    }*/

/*=========================
 RIGHT SIDE
=========================*/

/*.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}*/

/*=========================
 FAQ ITEM
=========================*/

/*.faq-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: .4s;
}

    .faq-item.active {
        box-shadow: 0 15px 40px rgba(10,78,163,.08);
    }

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 28px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #081B3D;
}

    .faq-question span {
        font-size: 28px;
        color: #27d9d2;
    }

.faq-answer {
    padding: 0 30px 28px;
    color: #64748b;
    line-height: 1.9;
}*/

/*=========================
 HOVER
=========================*/

/*.faq-item:hover {
    transform: translateY(-3px);
}*/

/*=========================
 RESPONSIVE
=========================*/

/*@media(max-width:991px) {

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-content {
        position: static;
    }
}

@media(max-width:767px) {

    .premium-faq-section {
        padding: 60px 0;
    }

    .faq-content {
        padding: 30px;
    }

    .faq-question {
        font-size: 16px;
        padding: 22px;
    }

    .faq-answer {
        padding: 0 22px 22px;
    }
}*/


/*==============================
        ABOUT BANNER
===============================*/

/*.page-banner {
    position: relative;
    overflow: hidden;
    padding: 15px 0 41px;
    background: linear-gradient(135deg, #0E5A37 0%, #157347 50%, #2E8B57 100%);
}*/

    /* Overlay */

    /*.page-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(9,55,32,.55), rgba(9,55,32,.25), rgba(9,55,32,.08));
    }*/

/* Grid */

/*.banner-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
    background-size: 55px 55px;
    opacity: .35;
}*/

/* Layout */

/*.banner-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}*/

/* Left */

/*.banner-content {
    width: 52%;
}

.banner-badge {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1px solid rgba(255,215,0,.25);
    font-weight: 700;
}

.banner-content h1 {
    margin: 22px 0 18px;
    font-size: 58px;
    line-height: 1.15;
    color: #fff;
    font-weight: 800;
}

    .banner-content h1 span {
        color: #FFD54F;
    }

.banner-content p {
    color: rgba(255,255,255,.90);
    line-height: 1.9;
    font-size: 17px;
    max-width: 600px;
}*/

/* Breadcrumb */

/*.breadcrumb-box {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
}

    .breadcrumb-box a {
        color: #fff;
        font-weight: 700;
    }

    .breadcrumb-box span {
        color: #FFD54F;
    }*/

/* Right */

/*.banner-image {
    width: 48%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

    .banner-image img {
        width: 120%;
        max-width: 650px;*/ /* 430 ki jagah 600 ya 650 */
        /*height: auto;*/ /* 359px hata do */
        /*animation: floatDoctor 4s ease-in-out infinite;
        filter: drop-shadow(0 25px 45px rgba(0,0,0,.22));
    }*/

/* Floating */

/*@keyframes floatDoctor {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}*/

/* Glow */

/*.glow {
    border-radius: 50%;
    filter: blur(90px);
    opacity: .22;
}

.glow-1 {
    background: #FFD54F;
}

.glow-2 {
    background: #7ED957;
}

.glow-3 {
    background: #4CAF50;
}
@media(max-width:991px) {

    .page-banner {
        padding: 80px 0 60px;
    }

    .banner-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .banner-content,
    .banner-image {
        width: 100%;
    }

        .banner-content h1 {
            font-size: 46px;
        }

        .banner-content p {
            margin: auto;
        }

    .banner-image {
        justify-content: center;
    }

        .banner-image img {
            max-width: 330px;
        }
}

@media(max-width:768px) {

    .page-banner {
        padding: 70px 0 50px;
    }

    .banner-content h1 {
        font-size: 36px;
    }

    .banner-content p {
        font-size: 15px;
    }

    .banner-badge {
        font-size: 14px;
    }

    .banner-image img {
        max-width: 270px;
    }
}

@media(max-width:480px) {

    .banner-content h1 {
        font-size: 30px;
    }

    .banner-image img {
        max-width: 220px;
    }

    .breadcrumb-box {
        padding: 12px 18px;
        gap: 10px;
    }
}*/



.page-banner {
    width: 100%;
    padding: 0;
    margin: 0;
    background: none;
    overflow: hidden;
}

    .page-banner .banner-image {
        width: 100%;
        line-height: 0;
    }

        .page-banner .banner-image img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            object-position: center;
            display: block;
        }

 
@media(max-width:991px) {
    .page-banner .banner-image img {
        height: 380px;
    }
}


@media(max-width:576px) {
    .page-banner .banner-image img {
        height: 220px;
    }
}

.page-banner {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

    .page-banner img {
        display: block;
    }




/*==================================================
            ABOUT US SECTION
==================================================*/

.about-us {
    position: relative;
    padding: 31px 0;
    overflow: hidden;
    background: #F8FCF8;
}

    /*==============================
        BACKGROUND
==============================*/

    .about-us::before {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        background: rgba(76,175,80,.08);
        left: -180px;
        top: -180px;
        filter: blur(20px);
    }

    .about-us::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(255,193,7,.08);
        right: -150px;
        bottom: -150px;
        filter: blur(20px);
    }

/*==============================
        WRAPPER
==============================*/

.about-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

/*==============================
        IMAGE
==============================*/

.about-image {
    position: relative;
    width: 48%;
}

    .about-image img {
        width: 100%;
        border-radius: 30px;
        display: block;
        border: 8px solid #fff;
        box-shadow: 0 30px 70px rgba(27,94,32,.15);
        transition: .45s;
    }

    .about-image:hover img {
        transform: scale(1.02);
    }

    /*==============================
        IMAGE GLOW
==============================*/

    .about-image::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 20px;
        top: 20px;
        border-radius: 30px;
        background: linear-gradient(135deg, rgba(46,125,50,.12), rgba(255,215,64,.12));
        z-index: -1;
    }

/*==============================
        EXPERIENCE CARD
==============================*/

.experience-box {
    position: absolute;
    right: -25px;
    bottom: -95px;
    width: 250px;
    padding: 35px 25px;
    border-radius: 26px;
    text-align: center;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    color: #fff;
    box-shadow: 0 30px 60px rgba(27,94,32,.28);
    animation: floatCard 4s ease-in-out infinite;
}

    .experience-box h3 {
        font-size: 56px;
        font-weight: 900;
        margin-bottom: 8px;
        line-height: 1;
    }

    .experience-box span {
        font-size: 22px;
        font-weight: 600;
    }

/*==============================
        CONTENT
==============================*/

.about-content {
    width: 52%;
}

    .about-content h2 {
        font-size: 58px;
        line-height: 1.15;
        color: #FFD54F;
        font-weight: 900;
        margin-bottom: 28px;
    }

        .about-content h2 span {
            display: block;
            color: #2E7D32;
            margin-top: 8px;
        }

    /*==============================
        PARAGRAPH
==============================*/

    .about-content p {
        font-size: 18px;
        line-height: 2;
        color: #5B6B7A;
        margin-bottom: 35px;
    }

/*==============================
        ANIMATION
==============================*/

@keyframes floatCard {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}
/*==================================================
            FEATURES
==================================================*/

.about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
}

/*==============================
        FEATURE CARD
==============================*/

.feature-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 82px;
    padding: 22px 28px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(46,125,50,.12);
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
    color: #1B5E20;
    font-size: 20px;
    font-weight: 700;
    overflow: hidden;
    transition: .4s;
}

    /*==============================
        GOLDEN TOP LINE
==============================*/

    .feature-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 4px;
        background: linear-gradient(90deg,#FFD54F,#2E7D32);
        transition: .45s;
    }

    /*==============================
        GLOW
==============================*/

    .feature-item::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(255,213,79,.18);
        right: -120px;
        top: -120px;
        transition: .45s;
    }

    /*==============================
        HOVER
==============================*/

    .feature-item:hover {
        transform: translateY(-8px);
        border-color: #2E7D32;
        box-shadow: 0 25px 55px rgba(46,125,50,.18);
        color: #2E7D32;
    }

        .feature-item:hover::before {
            width: 100%;
        }

        .feature-item:hover::after {
            transform: scale(1.3);
        }

/*==============================
        ICON STYLE
==============================*/

.feature-item {
    gap: 15px;
}

    .feature-item::first-letter {
        color: #2E7D32;
        font-size: 26px;
    }

/*==============================
        IMAGE EFFECT
==============================*/

.about-image {
    overflow: visible;
}

    .about-image img {
        transition: .45s;
    }

    .about-image:hover img {
        transform: scale(1.03);
        box-shadow: 0 35px 75px rgba(46,125,50,.20);
    }

/*==============================
        EXPERIENCE HOVER
==============================*/

.experience-box {
    transition: .4s;
}

    .experience-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 35px 70px rgba(27,94,32,.35);
    }

/*==============================
        HEADING
==============================*/

.about-content h2 {
    position: relative;
}

    .about-content h2::after {
        content: "";
        display: block;
        width: 90px;
        height: 4px;
        margin-top: 20px;
        border-radius: 30px;
        background: linear-gradient(90deg,#2E7D32,#FFD54F);
    }

/*==============================
        PARAGRAPH
==============================*/

.about-content p {
    position: relative;
    padding-left: 22px;
}

    .about-content p::before {
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        width: 5px;
        height: 85%;
        border-radius: 30px;
        background: linear-gradient(#2E7D32,#FFD54F);
    }

/*==============================
        SHINE EFFECT
==============================*/

.feature-item span {
    position: relative;
    z-index: 2;
}

.feature-item:hover {
    overflow: hidden;
}

    .feature-item:hover::before {
        animation: shineBar .8s linear;
    }

@keyframes shineBar {

    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/*==============================
        FLOATING ANIMATION
==============================*/

.about-content {
    animation: fadeRight 1s ease;
}

.about-image {
    animation: fadeLeft 1s ease;
}

@keyframes fadeLeft {

    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {

    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*==================================================
            LAPTOP
==================================================*/

@media(max-width:1200px) {

    .about-us {
        padding: 90px 0;
    }

    .about-wrapper {
        gap: 50px;
    }

    .about-content h2 {
        font-size: 48px;
    }

    .about-content p {
        font-size: 17px;
    }

    .experience-box {
        width: 220px;
        padding: 30px 20px;
    }

        .experience-box h3 {
            font-size: 48px;
        }

    .feature-item {
        font-size: 18px;
        padding: 20px 22px;
    }
}

/*==================================================
            TABLET
==================================================*/

@media(max-width:991px) {

    .about-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .about-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

        .about-image img {
            max-width: 650px;
        }

    .about-content {
        width: 100%;
        text-align: center;
    }

        .about-content h2 {
            font-size: 42px;
        }

            .about-content h2::after {
                margin: 18px auto 0;
            }

        .about-content p {
            padding-left: 0;
            max-width: 700px;
            margin: 0 auto 35px;
        }

            .about-content p::before {
                display: none;
            }

    .about-features {
        grid-template-columns: repeat(2,1fr);
    }

    .experience-box {
        right: 25px;
        bottom: 25px;
    }
}

/*==================================================
            MOBILE
==================================================*/

@media(max-width:768px) {

    .about-us {
        padding: 70px 0;
    }

    .about-wrapper {
        gap: 45px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-item {
        min-height: 70px;
        font-size: 17px;
        justify-content: center;
        text-align: center;
    }

    .about-image img {
        border-radius: 22px;
    }

    .experience-box {
        width: 190px;
        padding: 22px 18px;
    }

        .experience-box h3 {
            font-size: 42px;
        }

        .experience-box span {
            font-size: 18px;
        }
}

/*==================================================
            SMALL MOBILE
==================================================*/

@media(max-width:576px) {

    .about-us {
        padding: 60px 0;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-image img {
        border-width: 5px;
    }

    .experience-box {
        width: 160px;
        right: 12px;
        bottom: 12px;
        border-radius: 18px;
    }

        .experience-box h3 {
            font-size: 34px;
        }

        .experience-box span {
            font-size: 15px;
        }

    .feature-item {
        padding: 18px;
        font-size: 16px;
    }
}

/*==================================================
            EXTRA SMALL
==================================================*/

@media(max-width:420px) {

    .about-content h2 {
        font-size: 25px;
    }

    .about-content p {
        line-height: 1.7;
    }

    .about-image img {
        border-radius: 18px;
    }

    .experience-box {
        width: 140px;
        padding: 16px 14px;
    }

        .experience-box h3 {
            font-size: 28px;
        }

        .experience-box span {
            font-size: 13px;
        }

    .feature-item {
        min-height: 60px;
        font-size: 15px;
    }
}

/*==================================================
            FINAL EFFECTS
==================================================*/

.about-wrapper {
    position: relative;
    z-index: 2;
}

.about-image {
    transition: .45s;
}

    .about-image:hover {
        transform: translateY(-8px);
    }

.about-content {
    transition: .45s;
}

    .about-content:hover {
        transform: translateY(-5px);
    }

.feature-item {
    cursor: pointer;
}

    .feature-item:hover {
        background: linear-gradient(135deg,#ffffff,#F8FCF8);
    }

.about-image img {
    object-fit: cover;
}

/*==================================================
            SCROLL ANIMATION
==================================================*/

.about-image,
.about-content {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/*=========================================
        MISSION VISION
=========================================*/

.mission-vision {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
    background: linear-gradient(180deg,#F7FCF8,#F2FAF5);
}

    /*=========================
    Background Shape
=========================*/

    .mission-vision::before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(46,125,50,.05);
        left: -180px;
        top: -150px;
        filter: blur(25px);
    }

    .mission-vision::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255,193,7,.08);
        right: -120px;
        bottom: -120px;
        filter: blur(30px);
    }

/*=========================
        Grid
=========================*/

.mv-grid {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 35px;
}

/*=========================
        Card
=========================*/

.mv-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 42px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    border: 1px solid rgba(46,125,50,.10);
    overflow: hidden;
    transition: .45s;
    box-shadow: 0 20px 45px rgba(0,0,0,.06);
}

    /* Top Border */

    .mv-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #2E7D32, #FFD54F, #43A047);
    }

    /* Glow */

    .mv-card::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(255,213,79,.18);
        right: -80px;
        top: -80px;
    }

    /*=========================
        Hover
=========================*/

    .mv-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(46,125,50,.18);
    }

/*=========================
        Icon
=========================*/

.mv-icon {
    width: 130px;
    height: 130px;
    min-width: 130px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
    color: #fff;
    background: linear-gradient(135deg, #2E7D32, #43A047);
    box-shadow: 0 18px 40px rgba(46,125,50,.28);
    transition: .45s;
}

.mv-card:hover .mv-icon {
    transform: rotate(-8deg) scale(1.08);
}

/*=========================
        Content
=========================*/

.mv-content h3 {
    font-size: 48px;
    font-weight: 800;
    color: #153462;
    margin-bottom: 18px;
}

.mv-content p {
    font-size: 20px;
    line-height: 1.9;
    color: #66798C;
}
/*=========================================
        CARD SHINE EFFECT
=========================================*/

.mv-card {
    isolation: isolate;
}

    .mv-card span {
        position: relative;
        z-index: 2;
    }

    .mv-card:hover {
        border-color: rgba(46,125,50,.25);
    }

        .mv-card:hover::after {
            transform: scale(1.5);
            transition: .5s;
        }

    /*=========================================
        GLASS SHINE
=========================================*/

    .mv-card .shine {
        display: none;
    }

    .mv-card::before {
        overflow: hidden;
    }

    .mv-card::before {
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
    }

    .mv-card::selection {
        background: transparent;
    }

    /* Animated Shine */

    .mv-card::after {
        transition: .45s;
    }

    .mv-card:hover::after {
        background: radial-gradient(circle, rgba(255,213,79,.28), transparent 70%);
    }

/*=========================================
        ICON ANIMATION
=========================================*/

.mv-icon {
    animation: iconFloat 5s ease-in-out infinite;
}

@keyframes iconFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.mv-card:hover .mv-icon {
    box-shadow: 0 20px 45px rgba(46,125,50,.35);
}

/*=========================================
        HEADING
=========================================*/

.mv-content h3 {
    position: relative;
}

    .mv-content h3::after {
        content: "";
        display: block;
        width: 70px;
        height: 4px;
        margin-top: 12px;
        border-radius: 20px;
        background: linear-gradient(90deg, #2E7D32, #FFD54F);
    }

/*=========================================
        TEXT
=========================================*/

.mv-content p {
    transition: .4s;
}

.mv-card:hover .mv-content p {
    color: #44596A;
}

/*=========================================
        ENTRY ANIMATION
=========================================*/

.mv-card {
    animation: fadeUp .9s ease both;
}

    .mv-card:nth-child(2) {
        animation-delay: .25s;
    }

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(45px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1200px) {

    .mv-content h3 {
        font-size: 38px;
    }

    .mv-content p {
        font-size: 18px;
    }

    .mv-icon {
        width: 110px;
        height: 110px;
        min-width: 110px;
        font-size: 46px;
    }
}

@media(max-width:991px) {

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: 35px;
    }

    .mv-content h3 {
        font-size: 36px;
    }
}

@media(max-width:768px) {

    .mission-vision {
        padding: 70px 0;
    }

    .mv-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 25px;
    }

    .mv-icon {
        width: 90px;
        height: 90px;
        min-width: 90px;
        font-size: 40px;
        border-radius: 24px;
    }

    .mv-content h3 {
        font-size: 30px;
    }

        .mv-content h3::after {
            margin: 15px auto 0;
        }

    .mv-content p {
        font-size: 16px;
        line-height: 1.8;
    }
}

@media(max-width:576px) {

    .mv-card {
        border-radius: 22px;
        padding: 25px 20px;
    }

    .mv-icon {
        width: 75px;
        height: 75px;
        min-width: 75px;
        font-size: 32px;
    }

    .mv-content h3 {
        font-size: 26px;
    }

    .mv-content p {
        font-size: 15px;
    }
}

@media(max-width:420px) {

    .mv-card {
        padding: 22px 18px;
    }

    .mv-content h3 {
        font-size: 22px;
    }

    .mv-content p {
        font-size: 14px;
    }
}


/*==================================================
            WHY CHOOSE SECTION
==================================================*/

.why-choose {
    position: relative;
    overflow: hidden;
    padding: 31px 0;
    background: linear-gradient(135deg, #062A1E 0%, #0D402E 50%, #145238 100%);
}

    /*====================================
        BACKGROUND GLOW
====================================*/

    .why-choose::before {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        background: rgba(255,215,64,.08);
        left: -180px;
        top: -180px;
        filter: blur(35px);
        animation: glowOne 10s ease-in-out infinite;
    }

    .why-choose::after {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(46,125,50,.14);
        right: -160px;
        bottom: -160px;
        filter: blur(35px);
        animation: glowTwo 12s ease-in-out infinite;
    }

    /*====================================
            GRID
====================================*/

    .why-choose .container {
        position: relative;
        z-index: 5;
    }

/*====================================
        SECTION TITLE
====================================*/

.section-title-center {
    max-width: 900px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;
}

    .section-title-center h2 {
        font-size: 62px;
        line-height: 1.2;
        color: #fff;
        font-weight: 900;
        margin-bottom: 25px;
    }

        .section-title-center h2 span {
            color: #FFD54F;
        }

    .section-title-center p {
        font-size: 19px;
        line-height: 2;
        color: rgba(255,255,255,.80);
    }

/*====================================
            GRID
====================================*/

.choose-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 28px;
}

/*====================================
            CARD
====================================*/

.choose-card {
    position: relative;
    overflow: hidden;
    padding: 40px 28px;
    border-radius: 28px;
    text-align: center;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.10);
    transition: .45s;
    box-shadow: 0 25px 50px rgba(0,0,0,.18);
}

    /*====================================
        TOP BORDER
====================================*/

    .choose-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #2E7D32, #FFD54F, #43A047);
    }

    /*====================================
        GLOW
====================================*/

    .choose-card::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255,213,79,.10);
        right: -120px;
        top: -120px;
    }

/*====================================
            ICON
====================================*/

.choose-icon {
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: #fff;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    box-shadow: 0 20px 40px rgba(46,125,50,.28);
    margin-bottom: 30px;
}

/*====================================
        TITLE
====================================*/

.choose-card h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 800;
}

/*====================================
        DESCRIPTION
====================================*/

.choose-card p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,.78);
}

/*====================================
        ANIMATION
====================================*/

@keyframes glowOne {

    50% {
        transform: translate(40px,30px);
    }
}

@keyframes glowTwo {

    50% {
        transform: translate(-30px,-25px);
    }
}

/*==================================================
            PREMIUM HOVER
==================================================*/

.choose-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

    .choose-card:hover {
        transform: translateY(-18px) rotateX(6deg) rotateY(-6deg);
        border-color: rgba(255,215,64,.35);
        box-shadow: 0 35px 80px rgba(0,0,0,.35), 0 0 35px rgba(46,125,50,.18);
    }

/*==================================================
            GOLDEN SHINE
==================================================*/

.choose-card {
    isolation: isolate;
}

    .choose-card .shine {
        display: none;
    }

    .choose-card::after {
        transition: .55s;
    }

    .choose-card:hover::after {
        transform: scale(1.4);
        background: radial-gradient(circle, rgba(255,215,64,.22), transparent 70%);
    }

    /*==================================================
            GLASS SHINE
==================================================*/

    .choose-card span {
        position: relative;
        z-index: 2;
    }

    .choose-card::before {
        overflow: hidden;
    }

    .choose-card::before {
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
    }

/*==================================================
            ICON
==================================================*/

.choose-icon {
    transition: .45s;
    animation: iconFloat 5s ease-in-out infinite;
}

.choose-card:hover .choose-icon {
    transform: rotate(-10deg) scale(1.12);
    box-shadow: 0 25px 45px rgba(255,215,64,.20), 0 20px 45px rgba(46,125,50,.30);
}

@keyframes iconFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/*==================================================
        TITLE
==================================================*/

.choose-card h3 {
    transition: .4s;
}

.choose-card:hover h3 {
    color: #FFD54F;
}

/*==================================================
        DESCRIPTION
==================================================*/

.choose-card p {
    transition: .4s;
}

.choose-card:hover p {
    color: #F4F4F4;
}

/*==================================================
        ENTRY ANIMATION
==================================================*/

.choose-card {
    animation: cardUp .8s ease both;
}

    .choose-card:nth-child(2) {
        animation-delay: .15s;
    }

    .choose-card:nth-child(3) {
        animation-delay: .30s;
    }

    .choose-card:nth-child(4) {
        animation-delay: .45s;
    }

@keyframes cardUp {

    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*==================================================
        TITLE EFFECT
==================================================*/

.section-title-center h2 {
    position: relative;
}

    .section-title-center h2::after {
        content: "";
        display: block;
        width: 120px;
        height: 5px;
        margin: 25px auto 0;
        border-radius: 20px;
        background: linear-gradient(90deg, #2E7D32, #FFD54F, #2E7D32);
    }

/*==================================================
            PARAGRAPH
==================================================*/

.section-title-center p {
    max-width: 850px;
    margin: 30px auto 0;
}

/*==================================================
            GRID
==================================================*/

.choose-grid {
    perspective: 1500px;
}

/*==================================================
        FLOAT EFFECT
==================================================*/

.choose-card:nth-child(odd) {
    animation: cardUp .8s ease, floatCard 6s ease-in-out infinite;
}

.choose-card:nth-child(even) {
    animation: cardUp .8s ease, floatCard2 7s ease-in-out infinite;
}

@keyframes floatCard {

    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatCard2 {

    50% {
        transform: translateY(8px);
    }
}

/*==================================================
        BORDER GLOW
==================================================*/

.choose-card:hover {
    background: linear-gradient( rgba(255,255,255,.08), rgba(255,255,255,.05));
}
/*==================================================
            LAPTOP
==================================================*/

@media(max-width:1200px) {

    .section-title-center h2 {
        font-size: 52px;
    }

    .choose-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 25px;
    }

    .choose-card {
        padding: 35px 25px;
    }

    .choose-icon {
        width: 90px;
        height: 90px;
        font-size: 38px;
    }

    .choose-card h3 {
        font-size: 24px;
    }
}

/*==================================================
            TABLET
==================================================*/

@media(max-width:991px) {

    .why-choose {
        padding: 80px 0;
    }

    .section-title-center {
        margin-bottom: 55px;
    }

        .section-title-center h2 {
            font-size: 42px;
        }

        .section-title-center p {
            font-size: 17px;
        }

    .choose-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 22px;
    }

    .choose-card {
        padding: 32px 24px;
    }

    .choose-icon {
        width: 82px;
        height: 82px;
        font-size: 34px;
        border-radius: 22px;
    }

    .choose-card h3 {
        font-size: 22px;
    }

    .choose-card p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/*==================================================
            MOBILE
==================================================*/

@media(max-width:768px) {

    .why-choose {
        padding: 70px 0;
    }

    .section-title-center {
        margin-bottom: 45px;
    }

        .section-title-center h2 {
            font-size: 34px;
            line-height: 1.3;
        }

        .section-title-center p {
            font-size: 15px;
            line-height: 1.8;
        }

    .choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .choose-card {
        padding: 30px 22px;
    }

    .choose-icon {
        width: 78px;
        height: 78px;
        font-size: 32px;
        margin-bottom: 22px;
    }

    .choose-card h3 {
        font-size: 22px;
    }

    .choose-card p {
        font-size: 15px;
    }
}

/*==================================================
            SMALL MOBILE
==================================================*/

@media(max-width:576px) {

    .why-choose {
        padding: 60px 0;
    }

    .section-title-center h2 {
        font-size: 28px;
    }

        .section-title-center h2::after {
            width: 80px;
            margin-top: 18px;
        }

    .choose-card {
        border-radius: 22px;
        padding: 26px 18px;
    }

    .choose-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .choose-card h3 {
        font-size: 20px;
    }

    .choose-card p {
        font-size: 14px;
    }
}

/*==================================================
            EXTRA SMALL
==================================================*/

@media(max-width:420px) {

    .section-title-center h2 {
        font-size: 24px;
    }

    .choose-card {
        padding: 22px 16px;
    }

    .choose-icon {
        width: 62px;
        height: 62px;
        font-size: 25px;
    }

    .choose-card h3 {
        font-size: 18px;
    }

    .choose-card p {
        font-size: 13px;
        line-height: 1.7;
    }
}

/*==================================================
            PREMIUM EFFECTS
==================================================*/

.choose-card {
    cursor: pointer;
}

    .choose-card:hover {
        background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
    }

    /* Floating Glow */

    .choose-card .glow {
        display: none;
    }

    .choose-card:hover {
        box-shadow: 0 25px 70px rgba(46,125,50,.22), 0 0 40px rgba(255,215,64,.12);
    }

        /* Icon Pulse */

        .choose-card:hover .choose-icon {
            animation: pulseIcon .8s;
        }

@keyframes pulseIcon {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

/* Smooth Transition */

.choose-card,
.choose-icon,
.choose-card h3,
.choose-card p {
    transition: .4s ease;
}

/* Section Fade */

.why-choose {
    animation: fadeSection .8s ease;
}

@keyframes fadeSection {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*==================================================
            PREMIUM FAQ SECTION
==================================================*/

.premium-faq-section {
    position: relative;
    padding: 41px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #F8FCF8 0%, #F2FAF4 100%);
}

    /*====================================
        BACKGROUND EFFECTS
====================================*/

    .premium-faq-section::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(46,125,50,.08);
        left: -180px;
        top: -150px;
        filter: blur(35px);
        animation: faqGlow1 10s ease-in-out infinite;
    }

    .premium-faq-section::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255,215,64,.12);
        right: -120px;
        bottom: -120px;
        filter: blur(35px);
        animation: faqGlow2 12s ease-in-out infinite;
    }

/*====================================
            GRID
====================================*/

.faq-grid {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 55px;
    align-items: start;
}

/*====================================
        LEFT CARD
====================================*/

.faq-content {
    position: sticky;
    top: 110px;
    padding: 45px;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    color: #fff;
    box-shadow: 0 30px 70px rgba(27,94,32,.22);
}

    /* Golden Top Border */

    .faq-content::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #FFD54F, #2E7D32, #FFD54F);
    }

/*====================================
            TAG
====================================*/

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 40px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.15);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

/*====================================
            TITLE
====================================*/

.faqsection-title {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 25px;
    color: #fff;
}

    .faqsection-title span {
        display: block;
        margin-top: 10px;
        color: #FFD54F;
    }

/*====================================
        PARAGRAPH
====================================*/

.faq-content > p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,.88);
    margin-bottom: 40px;
}

/*====================================
        SUPPORT CARD
====================================*/

.faq-support-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 25px;
    border-radius: 24px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.12);
    transition: .4s;
}

.support-icon {
    width: 78px;
    height: 78px;
    min-width: 78px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: linear-gradient(135deg, #FFD54F, #F4B400);
    color: #1B5E20;
    box-shadow: 0 15px 35px rgba(255,215,64,.30);
}

.support-content h4 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 800;
}

.support-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,.85);
}

/*====================================
        GLOW ANIMATION
====================================*/

@keyframes faqGlow1 {

    50% {
        transform: translate(35px,25px);
    }
}

@keyframes faqGlow2 {

    50% {
        transform: translate(-35px,-25px);
    }
}
/*==================================================
            FAQ WRAPPER
==================================================*/

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/*==================================================
            FAQ CARD
==================================================*/

.faq-item {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(46,125,50,.10);
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
    transition: .45s;
}

    /* Top Gradient */

    .faq-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #2E7D32, #FFD54F, #43A047);
        transform: scaleX(0);
        transform-origin: left;
        transition: .45s;
    }

    /* Glow */

    .faq-item::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(255,215,64,.10);
        right: -120px;
        top: -120px;
        transition: .45s;
    }

    /* Hover */

    .faq-item:hover {
        transform: translateY(-8px);
        border-color: #2E7D32;
        box-shadow: 0 30px 65px rgba(46,125,50,.16);
    }

        .faq-item:hover::before {
            transform: scaleX(1);
        }

        .faq-item:hover::after {
            transform: scale(1.5);
        }

/*==================================================
            QUESTION
==================================================*/

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 35px;
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
    font-size: 25px;
    font-weight: 800;
    color: #4CAF50;
    text-align: left;
    transition: .35s;
}

    .faq-question:hover {
        color: #2E7D32;
    }

    /*==================================================
            PLUS ICON
==================================================*/

    .faq-question::after {
        content: "+";
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #2E7D32, #43A047);
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        transition: .4s;
    }

.faq-item.active .faq-question::after {
    content: "−";
    background: linear-gradient(135deg, #FFD54F, #F4B400);
    color: #1B5E20;
    transform: rotate(180deg);
}

/*==================================================
            ANSWER
==================================================*/

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 35px;
    font-size: 17px;
    line-height: 1.9;
    color: #66798C;
    transition: max-height .45s ease, opacity .35s ease, padding .35s ease;
}

/* Active */

.faq-item.active {
    border-color: rgba(255,215,64,.40);
}

    .faq-item.active .faq-answer {
        max-height: 250px;
        opacity: 1;
        padding: 0 35px 30px;
    }

/*==================================================
            SUPPORT HOVER
==================================================*/

.faq-support-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,.16);
    box-shadow: 0 18px 45px rgba(0,0,0,.15);
}

.support-icon {
    transition: .4s;
}

.faq-support-card:hover .support-icon {
    transform: rotate(-10deg) scale(1.08);
}

/*==================================================
            ENTRY ANIMATION
==================================================*/

.faq-item {
    animation: faqUp .7s ease both;
}

    .faq-item:nth-child(2) {
        animation-delay: .1s;
    }

    .faq-item:nth-child(3) {
        animation-delay: .2s;
    }

    .faq-item:nth-child(4) {
        animation-delay: .3s;
    }

    .faq-item:nth-child(5) {
        animation-delay: .4s;
    }

@keyframes faqUp {

    from {
        opacity: 0;
        transform: translateY(45px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .faq-grid {
        grid-template-columns: 360px 1fr;
        gap: 40px;
    }

    .faqsection-title {
        font-size: 44px;
    }

    .faq-content {
        padding: 35px;
    }

    .support-content h4 {
        font-size: 24px;
    }

    .faq-question {
        font-size: 22px;
    }
}

/*==================================================
                TABLET
==================================================*/

@media(max-width:991px) {

    .premium-faq-section {
        padding: 80px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-content {
        position: relative;
        top: 0;
    }

    .faqsection-title {
        font-size: 40px;
    }

    .faq-content > p {
        font-size: 17px;
    }

    .support-content h4 {
        font-size: 22px;
    }

    .faq-question {
        font-size: 20px;
    }
}

/*==================================================
                MOBILE
==================================================*/

@media(max-width:768px) {

    .premium-faq-section {
        padding: 70px 0;
    }

    .faq-content {
        padding: 30px;
        border-radius: 25px;
    }

    .section-tag {
        padding: 10px 20px;
        font-size: 13px;
    }

    .faqsection-title {
        font-size: 32px;
    }

    .faq-content > p {
        font-size: 15px;
        line-height: 1.8;
    }

    .faq-support-card {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .support-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 26px;
    }

    .support-content h4 {
        font-size: 22px;
    }

    .support-content p {
        font-size: 15px;
    }

    .faq-question {
        padding: 24px;
        font-size: 18px;
    }

        .faq-question::after {
            width: 36px;
            height: 36px;
            font-size: 20px;
        }

    .faq-answer {
        padding: 0 24px;
        font-size: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 24px 24px;
    }
}

/*==================================================
            SMALL MOBILE
==================================================*/

@media(max-width:576px) {

    .faq-content {
        padding: 25px;
    }

    .faqsection-title {
        font-size: 28px;
    }

    .faq-question {
        padding: 20px;
        font-size: 17px;
    }

        .faq-question::after {
            width: 32px;
            height: 32px;
            font-size: 18px;
        }

    .support-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 22px;
    }

    .support-content h4 {
        font-size: 20px;
    }

    .support-content p {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/*==================================================
            EXTRA SMALL
==================================================*/

@media(max-width:420px) {

    .faq-content {
        padding: 22px;
    }

    .faqsection-title {
        font-size: 24px;
    }

    .faq-content > p {
        font-size: 14px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px;
    }

        .faq-question::after {
            width: 28px;
            height: 28px;
            font-size: 16px;
        }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 20px;
    }
}

/*==================================================
            PREMIUM EFFECTS
==================================================*/

.faq-content {
    transition: .45s;
}

    .faq-content:hover {
        transform: translateY(-8px);
        box-shadow: 0 40px 80px rgba(27,94,32,.28);
    }

.faq-item {
    cursor: pointer;
}

    .faq-item:hover {
        background: linear-gradient(135deg, #ffffff, #F7FCF8);
    }

    .faq-item.active {
        background: linear-gradient(135deg, #ffffff, #F4FBF5);
    }

.faq-question,
.faq-answer,
.support-icon,
.faq-support-card {
    transition: .4s ease;
}

/*==================================================
        SCROLL ANIMATION
==================================================*/

.premium-faq-section {
    animation: faqFade .8s ease;
}

@keyframes faqFade {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*==================================================
        CARD FLOAT
==================================================*/

.faq-item:nth-child(odd) {
    animation: faqUp .8s ease, faqFloat1 6s ease-in-out infinite;
}

.faq-item:nth-child(even) {
    animation: faqUp .8s ease, faqFloat2 7s ease-in-out infinite;
}

@keyframes faqFloat1 {

    50% {
        transform: translateY(-5px);
    }
}

@keyframes faqFloat2 {

    50% {
        transform: translateY(5px);
    }
}















