
        :root {
            --primary: #6d9617;
            --primary-dark: #527600;
            --navy: #142542;
            --navy-light: #1e5d8d;
            --light-bg: #f5f8f6;
            --text: #263238;
            --muted: #6d747b;
            --border: #e7ece8;
        }
        
        /* =========================
           HERO
        ========================= */

        .gst-hero {
            position: relative;
            min-height: 530px;
            background:
                radial-gradient(circle at 90% 40%, rgba(109, 150, 23, .12), transparent 25%),
                linear-gradient(120deg, #f4f8f7 0%, #ffffff 55%, #f4f8f4 100%);
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .gst-hero::before {
            content: "";
            position: absolute;
            width: 430px;
            height: 430px;
            border-radius: 50%;
            background: rgba(109, 150, 23, .08);
            right: -120px;
            top: 30px;
        }

        .hero-shape {
            position: absolute;
            width: 260px;
            height: 260px;
            border: 1px solid rgba(109, 150, 23, .18);
            border-radius: 50%;
            right: 60px;
            bottom: -130px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .mini-label {
            display: inline-block;
            color: var(--primary-dark);
            background: #edf5df;
            padding: 6px 13px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .5px;
            margin-bottom: 18px;
        }

        .hero-content h1 {
            font-size: clamp(32px, 4vw, 54px);
            line-height: 1.12;
            font-weight: 800;
            color: var(--navy);
            max-width: 700px;
            margin-bottom: 20px;
        }

        .hero-content h1 span {
            color: var(--primary);
        }

        .hero-content p {
            font-size: 16px;
            color: var(--muted);
            max-width: 650px;
            line-height: 1.8;
        }

        .hero-buttons {
            margin-top: 30px;
        }

        .btn-primary-custom {
            background: var(--primary);
            color: #fff;
            padding: 13px 25px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid var(--primary);
            transition: .3s;
        }

        .btn-primary-custom:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-outline-custom {
            background: transparent;
            color: var(--primary-dark);
            padding: 13px 25px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid var(--primary);
            margin-left: 8px;
            transition: .3s;
        }

        .btn-outline-custom:hover {
            background: var(--primary);
            color: #fff;
        }

        .hero-image {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-image img {
            width: 100%;
            max-width: 530px;
            height: 430px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 20px 50px rgba(20, 37, 66, .12);
        }

        /* =========================
           INTRO
        ========================= */

        .section {
            padding: 90px 0;
        }

        .intro-section {
            background: #fff;
        }

        .section-label {
            color: var(--primary-dark);
            background: #eff6e3;
            display: inline-block;
            padding: 6px 13px;
            font-size: 10px;
            font-weight: 700;
            border-radius: 4px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 38px;
            color: var(--navy);
            font-weight: 800;
            margin-bottom: 20px;
        }

        .section-title span {
            color: var(--primary);
        }

        .section-description {
            color: var(--muted);
            line-height: 1.9;
            font-size: 15px;
        }

        .intro-image {
            position: relative;
        }

        .intro-image img {
            width: 100%;
            height: 430px;
            object-fit: cover;
            border-radius: 6px;
        }

        .experience-card {
            position: absolute;
            bottom: -25px;
            right: -20px;
            background: var(--navy);
            color: #fff;
            padding: 22px 28px;
            border-radius: 6px;
            box-shadow: 0 15px 30px rgba(20, 37, 66, .2);
        }

        .experience-card strong {
            display: block;
            font-size: 25px;
            color: #fff;
        }

        .experience-card span {
            font-size: 11px;
            color: #d9e0e7;
        }

        /* =========================
           SERVICE CARDS
        ========================= */

        .soft-section {
            background: var(--light-bg);
        }

        .center-heading {
            text-align: center;
            max-width: 750px;
            margin: auto;
        }

        .service-card {
            height: 100%;
            padding: 32px 28px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 7px;
            transition: .35s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 4px;
            width: 0;
            background: var(--primary);
            transition: .35s;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 40px rgba(20, 37, 66, .10);
        }

        .service-card:hover::before {
            width: 100%;
        }

        .icon-box {
            width: 55px;
            height: 55px;
            background: #edf5df;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 23px;
            margin-bottom: 22px;
        }

        .service-card h3 {
            color: var(--navy);
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .service-card p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.8;
        }

        /* =========================
           WHO NEEDS
        ========================= */

        .needs-list {
            list-style: none;
            padding: 0;
            margin: 30px 0 0;
        }

        .needs-list li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 17px;
            color: #4c555b;
            font-size: 14px;
            line-height: 1.6;
        }

        .check-icon {
            flex: 0 0 25px;
            width: 25px;
            height: 25px;
            background: #edf5df;
            color: var(--primary-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            margin-top: 1px;
        }

        .needs-image {
            height: 500px;
            border-radius: 7px;
            overflow: hidden;
        }

        .needs-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .6s;
        }

        .needs-image:hover img {
            transform: scale(1.04);
        }

        /* =========================
           SERVICES
        ========================= */

        .service-list-card {
            background: #fff;
            border: 1px solid var(--border);
            padding: 30px;
            border-radius: 7px;
            height: 100%;
        }

        .service-list-card ul {
            padding: 0;
            margin: 25px 0 0;
            list-style: none;
        }

        .service-list-card li {
            padding: 14px 0;
            border-bottom: 1px solid #edf0ed;
            color: #525a60;
            font-size: 14px;
            display: flex;
            gap: 12px;
        }

        .service-list-card li:last-child {
            border-bottom: 0;
        }

        .service-list-card li i {
            color: var(--primary);
            font-size: 17px;
        }

        /* =========================
           WHY CHOOSE
        ========================= */

        .why-section {
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }

        .why-section::after {
            content: "";
            position: absolute;
            width: 400px;
            height: 400px;
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 50%;
            right: -150px;
            top: -150px;
        }

        .why-section .section-title {
            color: #fff;
        }

        .why-section .section-description {
            color: #d4dce5;
        }

        .why-item {
            display: flex;
            gap: 18px;
            margin-top: 25px;
        }

        .why-icon {
            width: 45px;
            height: 45px;
            flex: 0 0 45px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .why-item h4 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 7px;
        }

        .why-item p {
            color: #bfcbd7;
            font-size: 13px;
            line-height: 1.7;
            margin: 0;
        }

        .why-image img {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 7px;
        }

  

        /* =========================
           SCROLL ANIMATION
        ========================= */

        .reveal {
            opacity: 0;
            transform: translateY(35px);
            transition: all .7s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* =========================
           RESPONSIVE
        ========================= */

        @media (max-width: 991px) {

            .header-contact {
                display: none;
            }

            .navbar-nav {
                background: #fff;
                padding: 15px;
                box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
            }

            .gst-hero {
                padding: 80px 0;
            }

            .hero-image {
                margin-top: 50px;
            }

            .intro-image {
                margin-bottom: 50px;
            }

            .needs-image {
                height: 400px;
                margin-top: 40px;
            }
        }

        @media (max-width: 767px) {

            .section {
                padding: 65px 0;
            }

            .hero-content h1 {
                font-size: 34px;
            }

            .hero-content p {
                font-size: 14px;
            }

            .hero-buttons .btn-outline-custom {
                margin-left: 0;
                margin-top: 10px;
            }

            .hero-image img {
                height: 320px;
            }

            .section-title {
                font-size: 30px;
            }

            .intro-image img {
                height: 330px;
            }

            .experience-card {
                right: 10px;
            }

            .cta-box {
                padding: 35px 25px;
            }

            .cta-box h2 {
                font-size: 27px;
            }
        }
