
        :root {
            --primary-color: #E9EDC9;
            --secondary-color: #FEFAE0;
            --accent-color: #FAEDCD;
            --dark-text: #2D3436;
            --light-text: #636E72;
            --white: #FFFFFF;
            --shadow: rgba(0, 0, 0, 0.1);
            --green-primary: #6B8E23;
            --green-dark: #556B2F;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--dark-text);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
        }

        /* ==================== REDESIGNED HERO SECTION ==================== */
        
        .hero-new {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(135deg, #FEFAE0 0%, #FAEDCD 50%, #E9EDC9 100%);
        }
        
        /* Animated Background Shapes */
        .hero-bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .shape-blob-1 {
            position: absolute;
            top: -10%;
            right: -5%;
            width: 60%;
            height: 80%;
            background: linear-gradient(135deg, rgba(107, 142, 35, 0.15), rgba(85, 107, 47, 0.08));
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            animation: blobFloat 12s ease-in-out infinite;
        }
        
        .shape-blob-2 {
            position: absolute;
            bottom: -15%;
            left: -5%;
            width: 55%;
            height: 70%;
            background: linear-gradient(135deg, rgba(233, 237, 201, 0.6), rgba(254, 250, 224, 0.4));
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            animation: blobFloat 15s ease-in-out infinite reverse;
        }
        
        .shape-circle-1 {
            position: absolute;
            top: 20%;
            left: 10%;
            width: 300px;
            height: 300px;
            border: 3px solid rgba(107, 142, 35, 0.12);
            border-radius: 50%;
            animation: circlePulse 8s ease-in-out infinite;
        }
        
        .shape-circle-2 {
            position: absolute;
            bottom: 30%;
            right: 15%;
            width: 200px;
            height: 200px;
            border: 3px solid rgba(107, 142, 35, 0.08);
            border-radius: 50%;
            animation: circlePulse 10s ease-in-out infinite reverse;
        }
        
        .shape-dots {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(107, 142, 35, 0.08) 1.5px, transparent 1.5px);
            background-size: 40px 40px;
            animation: dotsMove 30s linear infinite;
        }
        
        @keyframes blobFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
            25% { transform: translate(20px, -30px) rotate(5deg); border-radius: 50% 40% 60% 40% / 40% 60% 50% 60%; }
            50% { transform: translate(-10px, 20px) rotate(-3deg); border-radius: 60% 40% 30% 70% / 50% 40% 70% 50%; }
            75% { transform: translate(-20px, -15px) rotate(4deg); border-radius: 45% 55% 65% 35% / 55% 45% 55% 45%; }
        }
        
        @keyframes circlePulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.15); opacity: 1; }
        }
        
        @keyframes dotsMove {
            0% { transform: translateY(0); }
            100% { transform: translateY(-40px); }
        }
        
        /* Hero Container Grid */
        .hero-container-new {
            max-width: 1400px;
            margin: 0 auto;
            padding: 120px 30px 80px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 10;
        }
        
        /* Left Content - Enhanced Typography */
        .hero-content-new {
            position: relative;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            padding: 12px 24px;
            border-radius: 50px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 28px;
            animation: badgeSlide 0.8s ease-out;
        }
        
        @keyframes badgeSlide {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero-badge i {
            color: var(--green-primary);
            font-size: 18px;
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        
        .hero-badge span {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark-text);
            letter-spacing: 0.5px;
        }
        
        .hero-title-new {
            font-size: clamp(42px, 5.5vw, 68px);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 28px;
            font-family: 'Playfair Display', serif;
            color: var(--dark-text);
            animation: titleReveal 1s ease-out 0.2s both;
        }
        
        @keyframes titleReveal {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero-title-new .highlight {
            position: relative;
            display: inline-block;
            color: var(--green-primary);
        }
        
        .hero-title-new .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            z-index: -1;
            border-radius: 3px;
            animation: underlineGrow 1s ease-out 0.8s both;
        }
        
        @keyframes underlineGrow {
            from { width: 0; }
            to { width: 100%; }
        }
        
        .hero-description-new {
            font-size: 18px;
            line-height: 1.85;
            color: var(--light-text);
            margin-bottom: 38px;
            max-width: 550px;
            animation: fadeUp 0.8s ease-out 0.4s both;
        }
        
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(25px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* CTA Buttons Group */
        .hero-buttons-new {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-bottom: 45px;
            animation: fadeUp 0.8s ease-out 0.6s both;
        }
        
        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
            color: var(--white);
            padding: 18px 38px;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 35px rgba(107, 142, 35, 0.35);
            position: relative;
            overflow: hidden;
        }
        
        .btn-hero-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .btn-hero-primary:hover::before {
            left: 100%;
        }
        
        .btn-hero-primary:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 18px 50px rgba(107, 142, 35, 0.45);
        }
        
        .btn-hero-primary i {
            font-size: 18px;
            transition: transform 0.3s ease;
        }
        
        .btn-hero-primary:hover i {
            transform: translateX(4px);
        }
        
        .btn-hero-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--white);
            color: var(--dark-text);
            padding: 17px 36px;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
        }
        
        .btn-hero-secondary:hover {
            border-color: var(--green-primary);
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(107, 142, 35, 0.15);
        }
        
        .btn-hero-secondary i {
            font-size: 18px;
            color: var(--green-primary);
        }
        
        /* Trust Indicators */
        .hero-trust {
            display: flex;
            align-items: center;
            gap: 35px;
            flex-wrap: wrap;
            animation: fadeUp 0.8s ease-out 0.8s both;
        }
        
        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .trust-icon-box {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }
        
        .trust-icon-box:hover {
            transform: rotate(10deg) scale(1.1);
        }
        
        .trust-icon-box i {
            font-size: 22px;
            color: var(--green-primary);
        }
        
        .trust-text strong {
            display: block;
            font-size: 15px;
            color: var(--dark-text);
            font-weight: 700;
        }
        
        .trust-text span {
            font-size: 13px;
            color: var(--light-text);
        }
        
        .trust-divider {
            width: 1px;
            height: 45px;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.15), transparent);
        }
        
        /* Right Side - Image Composition */
        .hero-visual-new {
            position: relative;
            height: 650px;
            animation: visualSlide 1s ease-out 0.4s both;
        }
        
        @keyframes visualSlide {
            from { opacity: 0; transform: translateX(60px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        /* Main Image Container */
        .hero-main-image {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
            z-index: 3;
        }
        
        .hero-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .hero-main-image:hover img {
            transform: scale(1.05);
        }
        
        /* Decorative Frame */
        .hero-frame-decor {
            position: absolute;
            top: -20px;
            right: -20px;
            width: calc(100% + 40px);
            height: calc(100% + 40px);
            border: 3px solid var(--green-primary);
            border-radius: 32px;
            z-index: 1;
            opacity: 0.25;
        }
        
        /* Floating Cards - Redesigned */
        .floating-card-new {
            position: absolute;
            background: var(--white);
            padding: 22px 26px;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
            z-index: 5;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.8);
        }
        
        .floating-card-new.card-exp {
            bottom: 60px;
            left: -50px;
            animation: floatCardNew 5s ease-in-out infinite;
        }
        
        .floating-card-new.card-rating {
            top: 50px;
            right: -40px;
            animation: floatCardNew 6s ease-in-out infinite reverse;
        }
        
        .floating-card-new.card-project {
            bottom: 180px;
            right: -30px;
            animation: floatCardNew 5.5s ease-in-out infinite 1s;
        }
        
        @keyframes floatCardNew {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            33% { transform: translateY(-12px) rotate(1deg); }
            66% { transform: translateY(-6px) rotate(-1deg); }
        }
        
        .card-icon-circle {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }
        
        .card-icon-circle i {
            font-size: 22px;
            color: var(--green-primary);
        }
        
        .floating-card-new strong {
            display: block;
            font-size: 24px;
            color: var(--dark-text);
            font-weight: 800;
            line-height: 1.2;
        }
        
        .floating-card-new span {
            font-size: 13px;
            color: var(--light-text);
            font-weight: 500;
        }
        
        /* Star Rating in Card */
        .card-stars {
            display: flex;
            gap: 3px;
            margin-top: 8px;
        }
        
        .card-stars i {
            color: #FFB800;
            font-size: 14px;
        }
        
        /* Bottom Stats Bar */
        .hero-stats-bar {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--white);
            padding: 25px 50px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
            display: flex;
            gap: 50px;
            z-index: 10;
            animation: statsBarUp 0.8s ease-out 1s both;
        }
        
        @keyframes statsBarUp {
            from { opacity: 0; transform: translateX(-50%) translateY(30px); }
            to { opacity: 1; transform: translateX(-50%) translateY(0); }
        }
        
        .stat-item {
            text-align: center;
            position: relative;
        }
        
        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -25px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.15), transparent);
        }
        
        .stat-number {
            font-size: 32px;
            font-weight: 900;
            color: var(--green-primary);
            line-height: 1;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 13px;
            color: var(--light-text);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Navigation */
        .navbar {
            background: transparent;
            padding: 20px 0;
            transition: all 0.3s ease;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }
        
        .navbar.scrolled {
            background: var(--white);
            box-shadow: 0 2px 20px var(--shadow);
            padding: 15px 0;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-size: 24px;
            font-weight: 700;
            color: var(--dark-text);
        }
        
        .logo i {
            font-size: 32px;
            color: var(--green-primary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--green-primary);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
            color: var(--white) !important;
            padding: 12px 28px !important;
            border-radius: 30px;
            font-weight: 600 !important;
            transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(107, 142, 35, 0.4);
        }
        
        .nav-cta::after {
            display: none !important;
        }
        
        .mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark-text);
        }

        /* About Section */
        .about {
            padding: 150px 0 100px;
            background: var(--white);
        }
        
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header span {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: var(--green-primary);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }
        
        .section-header h2 {
            font-size: 42px;
            color: var(--dark-text);
            margin-bottom: 15px;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        }
        
        .experience-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
            color: var(--white);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(107, 142, 35, 0.3);
        }
        
        .experience-badge strong {
            font-size: 48px;
            display: block;
            line-height: 1;
        }
        
        .experience-badge span {
            font-size: 14px;
            opacity: 0.9;
        }
        
        .about-content h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--dark-text);
        }
        
        .about-content p {
            color: var(--light-text);
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.9;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }
        
        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .about-feature-item i {
            color: var(--green-primary);
            font-size: 20px;
        }
        
        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--green-primary);
            text-decoration: none;
            font-weight: 600;
            margin-top: 25px;
            transition: gap 0.3s ease;
        }
        
        .read-more-btn:hover {
            gap: 15px;
        }

        /* Counter Section */
        .counter-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
            position: relative;
            overflow: hidden;
        }
        
        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            background-size: 50px 50px;
        }
        
        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .counter-item {
            text-align: center;
            color: var(--white);
        }
        
        .counter-item i {
            font-size: 48px;
            margin-bottom: 15px;
            opacity: 0.9;
        }
        
        .counter-number {
            font-size: 52px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 10px;
        }
        
        .counter-label {
            font-size: 16px;
            opacity: 0.9;
            font-weight: 500;
        }

        /* Vision Mission */
        .vision-mission {
            padding: 100px 0;
            background: var(--secondary-color);
        }
        
        .vm-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .vm-card {
            background: var(--white);
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, var(--green-primary), var(--green-dark));
        }
        
        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }
        
        .vm-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }
        
        .vm-icon i {
            font-size: 36px;
            color: var(--green-primary);
        }
        
        .vm-card h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--dark-text);
        }
        
        .vm-card p {
            color: var(--light-text);
            line-height: 1.9;
            font-size: 16px;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 100px 0;
            background: var(--white);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }
        
        .feature-card {
            background: var(--secondary-color);
            padding: 45px 35px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--green-primary);
            box-shadow: 0 15px 50px rgba(107, 142, 35, 0.15);
        }
        
        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: rotateY(180deg);
        }
        
        .feature-icon i {
            font-size: 38px;
            color: var(--white);
        }
        
        .feature-card h4 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark-text);
        }
        
        .feature-card p {
            color: var(--light-text);
            font-size: 15px;
            line-height: 1.8;
        }

        /* Work Process */
        .work-process {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            position: relative;
        }
        
        .process-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .process-line {
            position: absolute;
            top: 60px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 4px;
            background: linear-gradient(90deg, var(--green-primary), var(--green-dark));
            border-radius: 2px;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .step-number {
            width: 120px;
            height: 120px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .step-number:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 50px rgba(107, 142, 35, 0.3);
        }
        
        .step-number i {
            font-size: 42px;
            color: var(--green-primary);
            transition: transform 0.3s ease;
        }
        
        .step-number:hover i {
            transform: rotate(360deg);
        }
        
        .step-number::after {
            content: attr(data-step);
            position: absolute;
            top: -10px;
            right: -10px;
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
        }
        
        .process-step h4 {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--dark-text);
        }
        
        .process-step p {
            color: var(--light-text);
            font-size: 14px;
            line-height: 1.7;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: var(--white);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
        }
        
        .service-card {
            background: var(--secondary-color);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--green-primary);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }
        
        .service-image {
            height: 350px;
            overflow: hidden;
            position: relative;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-icon-overlay {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }
        
        .service-icon-overlay i {
            font-size: 32px;
            color: var(--white);
        }
        
        .service-content {
            padding: 35px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--dark-text);
            font-weight: 700;
        }
        
        .service-content p {
            color: var(--light-text);
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 25px;
            flex-grow: 1;
        }
        
        .service-read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--green-primary);
            text-decoration: none;
            font-weight: 600;
            transition: gap 0.3s ease;
            align-self: flex-start;
        }
        
        .service-read-more:hover {
            gap: 12px;
        }

        /* Booking Form Section */
        .booking-form-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
        }
        
        .booking-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .booking-info h3 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--dark-text);
        }
        
        .booking-info p {
            color: var(--light-text);
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .booking-benefits {
            list-style: none;
        }
        
        .booking-benefits li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 18px;
            font-size: 16px;
            color: var(--dark-text);
        }
        
        .booking-benefits li i {
            color: var(--green-primary);
            font-size: 20px;
        }
        
        .booking-form-wrapper {
            background: var(--white);
            padding: 50px;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        .booking-form-wrapper h3 {
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--dark-text);
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 22px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-text);
            font-size: 14px;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            outline: none;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--green-primary);
            box-shadow: 0 0 0 4px rgba(107, 142, 35, 0.1);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        /* Service Plans */
        .pricing-plans {
            padding: 100px 0;
            background: var(--white);
        }
        
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-top: 50px;
        }
        
        .plan-card {
            background: var(--secondary-color);
            border-radius: 25px;
            padding: 45px 35px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            border: 3px solid transparent;
            overflow: hidden;
        }
        
        .plan-card.featured {
            background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
            color: var(--white);
            transform: scale(1.05);
            border-color: var(--green-primary);
        }
        
        .plan-card.featured .plan-price,
        .plan-card.featured h4,
        .plan-card.featured ul li {
            color: var(--white);
        }
        
        .plan-card.featured .popular-badge {
            display: block;
        }
        
        .popular-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: #FF6B6B;
            color: var(--white);
            padding: 8px 45px;
            font-size: 12px;
            font-weight: 700;
            transform: rotate(45deg);
            display: none;
        }
        
        .plan-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
        }
        
        .plan-card.featured:hover {
            transform: scale(1.05) translateY(-15px);
        }
        
        .plan-icon {
            width: 90px;
            height: 90px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        
        .plan-icon i {
            font-size: 40px;
            color: var(--green-primary);
        }
        
        .plan-card.featured .plan-icon {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .plan-card.featured .plan-icon i {
            color: var(--white);
        }
        
        .plan-card h4 {
            font-size: 26px;
            margin-bottom: 15px;
            color: var(--dark-text);
        }
        
        .plan-price {
            font-size: 48px;
            font-weight: 800;
            color: var(--green-primary);
            margin-bottom: 25px;
        }
        
        .plan-price span {
            font-size: 16px;
            font-weight: 400;
            opacity: 0.8;
        }
        
        .plan-card ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .plan-card ul li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            color: var(--light-text);
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .plan-card.featured ul li {
            border-bottom-color: rgba(255, 255, 255, 0.2);
        }
        
        .plan-card ul li i {
            color: var(--green-primary);
        }
        
        .plan-card.featured ul li i {
            color: var(--white);
        }
        
        .plan-card .btn-primary {
            width: 100%;
            padding: 16px;
        }
        
        .plan-card.featured .btn-primary {
            background: var(--white);
            color: var(--green-primary);
        }
        
        .btn-primary {
            display: inline-block;
            background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
            color: var(--white);
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(107, 142, 35, 0.3);
            border: none;
            cursor: pointer;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(107, 142, 35, 0.5);
        }

        /* Reviews Section */
        .reviews {
            padding: 100px 0;
            background: var(--secondary-color);
        }
        
        .reviews-slider {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-top: 50px;
        }
        
        .review-card {
            background: var(--white);
            padding: 40px 35px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }
        
        .quote-icon {
            font-size: 50px;
            color: var(--primary-color);
            line-height: 1;
            margin-bottom: 20px;
        }
        
        .review-stars {
            color: #FFD700;
            margin-bottom: 18px;
            font-size: 18px;
        }
        
        .review-text {
            color: var(--light-text);
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 25px;
            font-style: italic;
        }
        
        .reviewer {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 2px solid var(--secondary-color);
        }
        
        .reviewer-avatar {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            font-weight: 700;
        }
        
        .reviewer-info strong {
            display: block;
            font-size: 17px;
            color: var(--dark-text);
        }
        
        .reviewer-info span {
            font-size: 13px;
            color: var(--light-text);
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: var(--white);
        }
        
        .faq-container {
            max-width: 850px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--secondary-color);
            border-radius: 15px;
            margin-bottom: 18px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .faq-item.active {
            border-color: var(--green-primary);
            box-shadow: 0 5px 25px rgba(107, 142, 35, 0.15);
        }
        
        .faq-question {
            padding: 22px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 17px;
            color: var(--dark-text);
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            color: var(--green-primary);
        }
        
        .faq-question i {
            font-size: 20px;
            color: var(--green-primary);
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 30px 25px;
        }
        
        .faq-answer p {
            color: var(--light-text);
            line-height: 1.8;
            font-size: 15px;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
            position: relative;
            overflow: hidden;
        }

            /* CTA Section */
        .cta-section1 {
            padding: 100px 0;
            background: linear-gradient(135deg, #FEFAE0, #556B2F);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 70%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><polygon points="100,10 190,190 10,190" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat;
            animation: ctaFloat 10s ease-in-out infinite;
        }
        
        @keyframes ctaFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }
        
        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
            max-width: 750px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 46px;
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 19px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 35px;
            line-height: 1.7;
        }
        
        .cta-content .btn-primary {
            background: var(--white);
            color: var(--green-primary);
            font-size: 18px;
            padding: 18px 50px;
        }
        
        .cta-content .btn-primary:hover {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        /* Contact Section */
        .contact-section {
            padding: 100px 0;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
        }
        
        .contact-info-list {
            margin-top: 30px;
        }
        
        .contact-info-item {
            display: flex;
            gap: 20px;
            margin-bottom: 35px;
            padding: 25px;
            background: var(--white);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .contact-info-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .contact-icon {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-icon i {
            font-size: 26px;
            color: var(--white);
        }
        
        .contact-details h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--dark-text);
        }
        
        .contact-details p {
            color: var(--light-text);
            font-size: 15px;
        }
        
        .contact-details a {
            color: var(--green-primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-details a:hover {
            color: var(--green-dark);
        }
        
        .contact-form-wrapper {
            background: var(--white);
            padding: 50px;
            border-radius: 25px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form-wrapper h3 {
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--dark-text);
        }

        /* Footer */
        .footer {
            background: #2D3436;
            color: var(--white);
            padding: 80px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .footer-col h4 {
            font-size: 20px;
            margin-bottom: 25px;
            color: var(--white);
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--green-primary);
        }
        
        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 15px;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .footer-social a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: var(--green-primary);
            transform: translateY(-5px);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: var(--green-primary);
            padding-left: 10px;
        }
        
        .footer-links a i {
            font-size: 12px;
            color: var(--green-primary);
        }
        
        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s ease;
        }
        
        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .newsletter-form input:focus {
            border-color: var(--green-primary);
        }
        
        .newsletter-form button {
            padding: 14px 25px;
            background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
            color: var(--white);
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(107, 142, 35, 0.4);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
        }
        
        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .footer-bottom a {
            color: var(--green-primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: var(--white);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-container-new {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 130px 20px 100px;
                gap: 40px;
            }
            
            .hero-title-new {
                font-size: clamp(36px, 6vw, 52px);
            }
            
            .hero-description-new {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-buttons-new {
                justify-content: center;
            }
            
            .hero-trust {
                justify-content: center;
            }
            
            .hero-visual-new {
                height: 450px;
                max-width: 550px;
                margin: 0 auto;
            }
            
            .floating-card-new.card-exp {
                left: 10px;
            }
            
            .floating-card-new.card-rating {
                right: 10px;
            }
            
            .floating-card-new.card-project {
                display: none;
            }
            
            .hero-stats-bar {
                width: 90%;
                padding: 20px 30px;
                gap: 30px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .stat-item:not(:last-child)::after {
                display: none;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .counter-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .plans-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .plan-card.featured {
                transform: scale(1);
            }
            
            .reviews-slider {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-line {
                display: none;
            }
            
            .booking-container,
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 80px 30px 30px;
                gap: 25px;
                transition: right 0.3s ease;
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .mobile-toggle {
                display: block;
                z-index: 1001;
            }
            
            .hero-title-new {
                font-size: 34px;
            }
            
            .btn-secondary {
                display: block;
                margin: 20px auto 0;
            }
            
            .section-header h2 {
                font-size: 32px;
            }
            
            .vm-grid {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
            
            .reviews-slider {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .counter-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-content h2 {
                font-size: 32px;
            }
            
            .hero-stats-bar {
                gap: 20px;
            }
            
            .stat-number {
                font-size: 26px;
            }
            
            .trust-divider {
                display: none;
            }
        }
