* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    /* Primary Brand Colors */
    --primary-green: #4E9A2D;
    --dark-green: #2F7D1E;
    --light-green: #EAF7E3;

    --primary-blue: #1F4E8C;
    --dark-blue: #163B69;
    --light-blue: #EAF2FC;

    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;

    --text-dark: #1E293B;
    --text-light: #64748B;

    --border-color: #dbe4dc;

    /* Backgrounds */
    --bg-light: #F8FCF6;
    --bg-section: #F3FAEF;

    /* Gradients */
    --green-gradient: linear-gradient(135deg, #4E9A2D, #2F7D1E);
    --blue-gradient: linear-gradient(135deg, #1F4E8C, #163B69);

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, .08);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, .12);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, .15);

    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 50px;

    /* Fonts */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Open Sans', sans-serif;

    /* Transitions */
    --transition: all .4s ease;

}



/* TOP HEADER */
.top-header {
    background: linear-gradient(90deg, #1F4E8C, #2F7D1E);
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-right {
    display: flex;
    gap: 15px;
}

.top-right a {
    color: #fff;
    font-size: 18px;
}


/* NAVBAR */
.main-navbar {
    background: #fff;
    padding: 18px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: .4s;
}

.main-navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.logo {
    height: 72px;
    transition: .4s;
}

.main-navbar.scrolled .logo {
    height: 60px;
}


.navbar-toggler {
    border: none;
    font-size: 34px;
    color: #4E9A2D;
}

.navbar-toggler:focus {
    box-shadow: none;
}


/* MENU */
.nav-link {
    color: #1E293B;
    font-weight: 600;
    margin: 0 15px;
    position: relative;
    padding-bottom: 8px;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #4E9A2D;
    border-radius: 30px;
    transition: .4s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #4E9A2D;
}



/* MOBILE */
@media(max-width:991px) {

    .top-header .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-left {
        justify-content: center;
        gap: 12px;
    }

    .main-navbar {
        padding: 14px 0;
    }

    .logo {
        height: 58px;
    }

    .navbar-collapse {
        background: #fff;
        margin-top: 20px;
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    }

    .nav-link {
        display: block;
        margin: 14px 0;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

}


@media(max-width:576px) {

    /* Mobile top bar same row */
    @media(max-width:768px) {

        .top-header {
            padding: 8px 10px;
            overflow: hidden;
        }

        .top-header .container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
        }

        .top-left {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: nowrap;
            white-space: nowrap;
        }

        .top-left span {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            margin: 0;
            white-space: nowrap;
        }

        .top-right {
            display: none;
            /* hide social icons on mobile */
        }

    }

    .logo {
        height: 52px;
    }

}

.hero-section {
    padding: 150px 0 90px;
    background: linear-gradient(135deg, #F8FCF6, #EAF7E3);
    overflow: hidden;
    position: relative;
}

.carousel-item,
.carousel-item .row {
    min-height: 650px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-tag {
    display: inline-flex;
    padding: 10px 20px;
    background: #E8F7DE;
    color: #2F7D1E;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 58px;
    margin-bottom: 20px;
}

.hero-content p {
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btn {
    display: inline-flex;
    padding: 14px 28px;
    background: linear-gradient(90deg, #4E9A2D, #1F4E8C);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
}

.hero-product {
    width: 100%;
    max-width: 950px;
    height: 450px;
    object-fit: contain;
    margin: auto;
}


/* Controls */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    opacity: 1;
    z-index: 10;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.control-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}


/* Mobile */
@media(max-width:576px) {

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-tag,
    .hero-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-product {
        height: 250px;
        max-width: 950px;
    }

    .carousel-control-prev {
        left: 8px;
    }

    .carousel-control-next {
        right: 8px;
    }

    .control-btn {
        width: 42px;
        height: 42px;
    }

}

/* Control Button Background */
.control-btn {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #4E9A2D, #1F4E8C);
    color: #fff;

    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);

    font-size: 20px;

    transition: .4s;
}

.control-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .20);
}

/* Move controls away from text */
.carousel-control-prev {
    left: -80px;
}

.carousel-control-next {
    right: -80px;
}

@media(max-width:576px) {

    .carousel-control-prev {
        left: 5px;
    }

    .carousel-control-next {
        right: 5px;
    }

}

.about-section {
    padding: 100px 0;
    background: #fff;
}

.about-img-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.experience-box {
    position: absolute;
    bottom: 30px;
    right: -20px;

    background: linear-gradient(90deg, #4E9A2D, #1F4E8C);
    color: #fff;

    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.experience-box h4 {
    font-size: 36px;
    margin: 0;
}

.section-tag {
    display: inline-block;
    padding: 10px 20px;
    background: #E8F7DE;
    color: #2F7D1E;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-section h2 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1F4E8C;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-point {
    margin-bottom: 18px;
    font-weight: 600;
}

.about-point i {
    color: #4E9A2D;
    margin-right: 10px;
}

.about-btn {
    display: inline-flex;
    padding: 14px 30px;
    background: linear-gradient(90deg, #4E9A2D, #1F4E8C);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
}


/* Mobile */
@media(max-width:576px) {

    .about-section {
        text-align: left;
        text-align: justify;
    }

    .about-section h2 {
        font-size: 30px;
    }

    .experience-box {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        display: inline-block;
    }

    .about-btn {
        margin: auto;
    }

    .experience-box {
        left: 100px;
    }

}

.why-section {
    padding: 100px 0;
    background: #F8FCF6;
}

.section-title {
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 48px;
    margin: 20px 0;
    color: #1F4E8C;
}

.why-card {
    background: #fff;
    padding: 45px 30px;
    text-align: center;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-card i {
    font-size: 60px;
    color: #4E9A2D;
    margin-bottom: 20px;
}

.why-card h4 {
    margin-bottom: 15px;
}

@media(max-width:576px) {

    .section-title h2 {
        font-size: 30px;
    }

}

.services-section {
    padding: 100px 0;
    background: #fff;
}

.service-card {
    background: #F8FCF6;
    padding: 45px 35px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .4s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(90deg, #4E9A2D, #1F4E8C);
    color: #fff;

    border-radius: 50%;
    font-size: 34px;

    margin-bottom: 25px;
}

.service-card h4 {
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

.service-card a {
    text-decoration: none;
    font-weight: 600;
    color: #2F7D1E;
}

.service-card a i {
    margin-left: 6px;
}

@media(max-width:576px) {

    .service-card {
        text-align: center;
    }

    .service-icon {
        margin: auto auto 25px;
    }

}


.products-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FCF6, #EAF7E3);
    overflow: hidden;
}

.product-card {
    background: #fff;
    padding: 35px 30px;
    text-align: center;

    border-radius: 30px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: .4s;
}

.product-card:hover {
    transform: translateY(-10px);
}


.product-card img {
    width: 100%;
    max-width: 600px;
    height: 200px;
    object-fit: contain;

    margin: 0 auto 20px;
    display: block;
}


.product-card h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;

    min-height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}


.order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    height: 50px;
    padding: 0 24px;

    margin: auto;

    background: linear-gradient(90deg, #25D366, #1da851);
    color: #fff;

    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;

    white-space: nowrap;
}


/* Tablet */
@media(max-width:991px) {

    .product-card {
        padding: 30px 25px;
    }

    .product-card img {
        max-width: 190px;
        height: 190px;
    }

    .product-card h5 {
        font-size: 18px;
        min-height: 50px;
    }

}


/* Mobile */
@media(max-width:576px) {

    .products-section {
        padding: 70px 0;
    }

    .product-card {
        padding: 25px 20px;
    }

    .product-card img {
        max-width: 390px;
        height: 150px;
    }

    .product-card h5 {
        font-size: 17px;
        min-height: auto;
    }

    .order-btn {
        height: 46px;
        padding: 0 20px;
        font-size: 14px;
    }

}

.gpay-section {
    padding: 100px 0;
    background: #fff;
}

.gpay-img-box {
    background: #F8FCF6;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.gpay-img {
    max-width: 320px;
    width: 100%;
    display: block;
    margin: auto;
}

.gpay-section h2 {
    font-size: 48px;
    margin: 20px 0;
    color: #1F4E8C;
}

.gpay-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.gpay-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 15px 28px;

    background: #EAF7E3;
    color: #2F7D1E;

    border-radius: 50px;
    font-weight: 700;

    margin-bottom: 25px;
}

.gpay-number i {
    font-size: 22px;
}

.gpay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 14px 30px;

    background: linear-gradient(90deg, #4E9A2D, #1F4E8C);
    color: #fff;

    border-radius: 50px;
    text-decoration: none;
}


/* Mobile */
@media(max-width:576px) {

    .gpay-section {
        text-align: center;
    }

    .gpay-section h2 {
        font-size: 30px;
    }

    .gpay-number,
    .gpay-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .gpay-img {
        max-width: 220px;
    }

}

.cert-section {
    padding: 100px 0;
    background: #F8FCF6;
}

.cert-card {
    background: #fff;
    padding: 50px 35px;
    text-align: center;

    border-radius: 30px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

    transition: .4s;
}

.cert-card:hover {
    transform: translateY(-8px);
}

.cert-icon {
    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(90deg, #4E9A2D, #1F4E8C);
    color: #fff;

    border-radius: 50%;
    font-size: 38px;
}

.cert-card h4 {
    margin-bottom: 15px;
}

.cert-card h5 {
    color: #2F7D1E;
    font-weight: 700;
    font-size: 24px;
    word-break: break-word;
}

@media(max-width:576px) {

    .cert-card h5 {
        font-size: 20px;
    }

}

.ticker-section {
    background: linear-gradient(90deg, #1F4E8C, #2F7D1E);
    padding: 18px 0;
    overflow: hidden;
}

.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-block;
    white-space: nowrap;

    animation: tickerMove 25s linear infinite;
}

.ticker-track span {
    display: inline-block;

    margin-right: 80px;

    font-size: 18px;
    font-weight: 600;
    color: #fff;

    position: relative;
}

.ticker-track span::after {
    content: '✦';
    position: absolute;
    right: -45px;
    color: #9dff74;
}


/* Continuous loop */
@keyframes tickerMove {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}


/* Mobile */
@media(max-width:576px) {

    .ticker-track span {
        font-size: 14px;
        margin-right: 50px;
    }

}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FCF6, #EAF7E3);
    overflow: hidden;
}


/* Section Title */
.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 48px;
    color: #1F4E8C;
    margin-top: 20px;
}


/* VIDEO CARD */
.video-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 30px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .10);

    margin-bottom: 35px;
}

.video-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: .5s;
}

.video-card:hover img {
    transform: scale(1.06);
}

.video-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .30);

    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 85px;
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #2F7D1E;

    border-radius: 50%;

    font-size: 38px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .20);
}



/* IMAGE CARDS */
.gallery-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 30px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .10);
}

.gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: .5s;
}

.gallery-card:hover img {
    transform: scale(1.08);
}


.gallery-overlay {
    position: absolute;
    inset: 0;

    background: rgba(31, 78, 140, .45);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: .4s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #2F7D1E;

    border-radius: 50%;

    font-size: 28px;
}



/* Mobile */
@media(max-width:576px) {

    .gallery-section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .video-card img,
    .gallery-card img {
        height: 230px;
    }

    .play-btn {
        width: 65px;
        height: 65px;
        font-size: 30px;
    }

    .gallery-overlay i {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

}

.testimonial-sec {
    padding: 100px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.review-intro h2 {
    font-size: 58px;
    line-height: 1.1;
    margin: 20px 0;
    color: var(--text-dark);
}

.review-intro h2 span {
    color: var(--primary-green);
}

.rating-box h3 {
    font-size: 46px;
    color: var(--primary-blue);
    margin: 25px 0 10px;
}

.hero-btn {
    display: inline-flex;
    padding: 15px 32px;

    background: var(--green-gradient);
    color: #fff;

    border-radius: 20px;
    text-decoration: none;

    margin-top: 25px;
    box-shadow: var(--shadow-sm);
}


.review-card {
    background: #fff;

    padding: 28px 22px;

    border-radius: 28px;

    box-shadow: var(--shadow-sm);

    min-height: 190px;

    transition: .4s;
}

.review-card:hover {
    transform: translateY(-8px);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-top img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.review-top h5 {
    margin: 0;
    font-size: 20px;
}

.review-top span {
    color: #d4a62a;
}

.review-card p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-light);
}


/* dots */
.swiper-pagination {
    margin-top: 30px !important;
    position: relative !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    opacity: .35;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.15);
}


/* mobile */
@media(max-width:767px) {

    .testimonial-sec {
        text-align: center;
    }

    .review-intro h2 {
        font-size: 36px;
    }

    .rating-box h3 {
        font-size: 30px;
    }

    .review-card {
        min-height: auto;
    }

}

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff, #F8FCF6);
}

.contact-box {
    background: #fff;

    padding: 45px 35px;

    border-radius: 30px;

    box-shadow: var(--shadow-sm);

    height: 100%;
}

.contact-item {
    display: flex;
    gap: 18px;

    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--green-gradient);
    color: #fff;

    border-radius: 50%;

    font-size: 26px;

    flex-shrink: 0;
}

.contact-item h5 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-light);
}



/* MAP */
.map-box {
    border-radius: 30px;
    overflow: hidden;

    box-shadow: var(--shadow-sm);

    height: 100%;
    min-height: 520px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
}



/* Mobile */
@media(max-width:767px) {

    .contact-section {
        padding: 70px 0;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .map-box,
    .map-box iframe {
        min-height: 350px;
    }

}

.main-footer {
    padding: 80px 0 30px;
    background: linear-gradient(135deg, #163B69, #2F7D1E);
    color: #fff;
}

.footer-box {
    background: rgba(255, 255, 255, .08);

    padding: 50px 40px;

    border-radius: 35px;

    backdrop-filter: blur(10px);
}

.footer-logo {
    height: 85px;
    margin-bottom: 20px;
    background-color: #ffffff;
    padding: 5px;
}

.footer-about {
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .85);
}


/* social */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, .12);
    color: #fff;

    border-radius: 50%;

    font-size: 18px;

    transition: .4s;
}

.footer-social a:hover {
    background: #fff;
    color: #2F7D1E;
}


/* headings */
.main-footer h4 {
    margin-bottom: 25px;
    font-size: 22px;
}


/* links */
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    transition: .4s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-contact i {
    margin-right: 10px;
    color: #9dff74;
}


hr {
    border-color: rgba(255, 255, 255, .15);
    margin: 35px 0 25px;
}


/* bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #9dff74;
    text-decoration: none;
}


/* mobile */
@media(max-width:767px) {

    .main-footer {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        justify-content: center;
        flex-direction: column;
    }

}

/* Parallax Header */
.page-header {
    position: relative;

    height: 550px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: url('./img/bg1.png') center center/cover fixed no-repeat;

    overflow: hidden;
}


/* overlay */
.header-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(135deg,
            rgba(22, 59, 105, .65),
            rgba(47, 125, 30, .45));
}


/* content */
.header-content {
    position: relative;
    z-index: 2;

    text-align: center;
    color: #fff;

    max-width: 800px;
    margin: auto;
}

.page-tag {
    display: inline-block;

    padding: 12px 24px;

    background: rgba(255, 255, 255, .15);

    border: 1px solid rgba(255, 255, 255, .20);

    backdrop-filter: blur(10px);

    border-radius: 50px;

    margin-bottom: 25px;
}

.header-content h1 {
    font-size: 68px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 20px;
    opacity: .95;
}



/* floating effect */
.header-content {
    animation: floatText 4s ease-in-out infinite;
}

@keyframes floatText {

    50% {
        transform: translateY(-8px);
    }

}



/* Mobile parallax fix */
@media(max-width:767px) {

    .page-header {
        height: 420px;

        /* fixed parallax can break on mobile */
        background-attachment: scroll;
    }

    .header-content h1 {
        font-size: 38px;
    }

    .header-content p {
        font-size: 16px;
    }

}

.about-intro {
    padding: 100px 0;
    background: #fff;
}

.about-img-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.exp-box {
    position: absolute;
    bottom: 30px;
    right: -20px;

    background: var(--green-gradient);
    color: #fff;

    padding: 25px 30px;

    border-radius: 20px;
}

.exp-box h4 {
    font-size: 38px;
    margin: 0;
}

.about-intro h2 {
    font-size: 50px;
    line-height: 1.2;
    margin: 20px 0;
    color: var(--text-dark);
}

.about-intro p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-btn {
    display: inline-flex;
    padding: 15px 32px;

    background: var(--green-gradient);
    color: #fff;

    border-radius: 20px;
    text-decoration: none;

    margin-top: 20px;
}


/* Mobile */
@media(max-width:767px) {

    .about-intro {
        text-align: center;
    }

    .about-intro h2 {
        font-size: 34px;
    }

    .exp-box {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        display: inline-block;
    }

}

.mission-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title h2 {
    font-size: 50px;
    margin-top: 20px;
    color: var(--text-dark);
}

.mv-card {
    background: #fff;

    padding: 55px 40px;

    text-align: center;

    border-radius: 35px;

    box-shadow: var(--shadow-sm);

    height: 100%;

    transition: .4s;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.mv-icon {
    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--green-gradient);
    color: #fff;

    border-radius: 50%;

    font-size: 38px;
}

.mv-card h3 {
    margin-bottom: 18px;
    font-size: 30px;
}

.mv-card p {
    line-height: 1.8;
    color: var(--text-light);
}


/* Mobile */
@media(max-width:767px) {

    .section-title h2 {
        font-size: 34px;
    }

    .mv-card {
        padding: 40px 30px;
    }

}

.service-explain {
    padding: 100px 0;
    background: #fff;
}

.service-explain h2 {
    font-size: 50px;
    line-height: 1.2;
    margin: 20px 0;
    color: var(--text-dark);
}

.service-explain p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-points {
    margin-top: 30px;
}

.point {
    margin-bottom: 18px;
    font-weight: 600;
}

.point i {
    color: var(--primary-green);
    margin-right: 10px;
}

.service-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}


/* Mobile */
@media(max-width:767px) {

    .service-explain {
        text-align: center;
    }

    .service-explain h2 {
        font-size: 34px;
    }

}

.service-detail {
    padding: 100px 0;
    background: var(--bg-light);
}

.detail-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.service-detail h2 {
    font-size: 50px;
    margin: 20px 0;
    color: var(--text-dark);
}

.service-detail p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.detail-point {
    margin-bottom: 18px;
    font-weight: 600;
}

.detail-point i {
    color: var(--primary-green);
    margin-right: 10px;
}

.detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 15px 32px;

    background: var(--green-gradient);
    color: #fff;

    border-radius: 20px;
    text-decoration: none;

    margin-top: 20px;
}


/* Mobile */
@media(max-width:767px) {

    .service-detail {
        text-align: center;
    }

    .service-detail h2 {
        font-size: 34px;
    }

}

.whatsapp-form-section {
    padding: 100px 0;
    background: #fff;
}

.wa-form-box {
    background: var(--bg-light);

    padding: 50px 40px;

    border-radius: 35px;

    box-shadow: var(--shadow-sm);
}

.wa-form-box h2 {
    font-size: 46px;
    margin: 20px 0 35px;
    text-align: center;
}

.wa-form-box input,
.wa-form-box textarea {
    width: 100%;

    padding: 16px 20px;

    border: 1px solid var(--border-color);

    border-radius: 15px;

    outline: none;
}

.wa-btn {
    border: none;

    padding: 15px 35px;

    background: #25D366;
    color: #fff;

    border-radius: 50px;

    font-weight: 600;
}


/* Mobile */
@media(max-width:767px) {

    .wa-form-box {
        padding: 35px 25px;
    }

    .wa-form-box h2 {
        font-size: 32px;
    }

}

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    font-size: 34px;

    text-decoration: none;

    z-index: 999;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);

    animation: waPulse 2s infinite;
}


/* pulse */
@keyframes waPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }

}


.whatsapp-float:hover {
    transform: scale(1.08);
    color: #fff;
}


/* Mobile */
@media(max-width:576px) {

    .whatsapp-float {
        width: 58px;
        height: 58px;

        right: 18px;
        bottom: 18px;

        font-size: 30px;
    }

}

/* Scroll Top */
.scroll-top {
    position: fixed;

    right: 25px;
    bottom: 105px;
    /* above whatsapp */

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--green-gradient);
    color: #fff;

    border-radius: 50%;

    font-size: 22px;

    text-decoration: none;

    box-shadow: var(--shadow-sm);

    z-index: 999;

    opacity: 0;
    visibility: hidden;

    transition: .4s;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    color: #fff;
}


/* Mobile */
@media(max-width:576px) {

    .scroll-top {
        right: 18px;
        bottom: 88px;

        width: 48px;
        height: 48px;
    }

}