/* ========== RESET & GLOBAL ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f8fafc;
            color: #0f172a;
            line-height: 1.5;
        }

        /* custom variables - fresh green palette */
        :root {
            --primary-deep: #0f172a;
            --primary-accent: #26b41e;
            --accent-glow: #3cd133;
            --teal-mist: #26b41e;
            --gray-soft: #f1f5f9;
            --gray-card: #ffffff;
            --text-dark: #0b1120;
            --text-muted: #475569;
            --border-light: #e2e8f0;
        }

        /* smooth transition for interactive */
        a, button, .transition-all {
            transition: all 0.25s ease;
        }

        /* container utility */
        .max-w-7xl {
            max-width: 80rem;
            margin-left: auto;
            margin-right: auto;
        }

        .px-6 {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        /* ========== HERO SECTION (glass + modern) ========== */
        .hero-section {
            background: linear-gradient(135deg, #0a0f1f 0%, #0f172a 50%, #111827 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 70%;
            height: 140%;
            background: radial-gradient(circle, rgba(38,180,30,0.12) 0%, rgba(38,180,30,0) 70%);
            pointer-events: none;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -5%;
            width: 55%;
            height: 120%;
            background: radial-gradient(circle, rgba(60,209,51,0.08) 0%, rgba(0,0,0,0) 70%);
            pointer-events: none;
        }

        .hero-title {
            background: linear-gradient(to right, #ffffff, #cbd5e1);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
        }

        .glow-btn {
            background: white;
            color: #0f172a;
            box-shadow: 0 12px 30px -12px rgba(0,0,0,0.3);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .glow-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.4);
            background: #f8fafc;
        }

        .hero-img-wrapper {
            border-radius: 2rem;
            background: rgba(255,255,255,0.02);
            backdrop-filter: blur(2px);
            box-shadow: 0 25px 40px -20px rgba(0,0,0,0.5);
            transition: all 0.4s;
            height:500px;
        }

        .hero-img-wrapper img {
            border-radius: 2rem;
            filter: brightness(1.02) contrast(1.05);
            transition: transform 0.35s;
            height: 100%;
            width: 100%;
        }

        .hero-img-wrapper:hover img {
            transform: scale(1.02);
        }

        /* ========== KEY HIGHLIGHTS (modern card stats) ========== */
        .stats-card {
            background: white;
            border-radius: 2rem;
            padding: 1.5rem 0.5rem;
            transition: all 0.25s;
            border: 1px solid #e8f7e7;
            box-shadow: 0 8px 20px -8px rgba(0,0,0,0.03);
        }

        .stats-card:hover {
            border-color: #26b41e;
            box-shadow: 0 20px 25px -12px rgba(38,180,30,0.08);
            transform: translateY(-3px);
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #1e293b, #26b41e);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
        }

        /* ========== SERVICES SECTION (glass-card style) ========== */
        .services-section {
            background: #f9fafc;
            position: relative;
        }

        .service-card-modern {
            background: white;
            border-radius: 1.75rem;
            padding: 1.5rem 1.75rem;
            transition: all 0.3s;
            border: 1px solid #e8f7e7;
            box-shadow: 0 5px 14px rgba(0,0,0,0.02);
        }

        .service-card-modern:hover {
            border-color: #26b41e;
            box-shadow: 0 20px 30px -15px rgba(38,180,30,0.12);
            transform: translateY(-6px);
        }

        .service-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(145deg, #e8f7e7, #ffffff);
            border-radius: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: #26b41e;
            font-size: 1.7rem;
            border: 1px solid #d4f0d2;
        }

        .service-title {
            font-size: 1.35rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.65rem;
        }

        .service-desc {
            color: #475569;
            font-weight: 400;
            line-height: 1.5;
        }

        /* ========== CTA SECTION (bold modern with GREEN GRADIENT) ========== */
        .bg-slate-900, .cta-modern {
            background: linear-gradient(115deg, #0f2b0c 0%, #1e6b18 50%, #26b41e 100%) !important;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(38,180,30,0.3);
            border-bottom: 1px solid rgba(38,180,30,0.3);
        }

        .cta-modern::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 140%;
            height: 200%;
            background: radial-gradient(ellipse at 30% 40%, rgba(60,209,51,0.12), transparent 70%);
            pointer-events: none;
        }

        .cta-button {
            background: #ffffff;
            color: #0f172a;
            font-weight: 600;
            padding: 1rem 2.5rem;
            border-radius: 3rem;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            box-shadow: 0 10px 20px -5px rgba(0,0,0,0.3);
            transition: all 0.2s;
        }

        .cta-button i {
            transition: transform 0.2s;
        }

        .cta-button:hover {
            background: #f1f5f9;
            transform: scale(1.02);
            box-shadow: 0 20px 30px -12px black;
        }

        .cta-button:hover i {
            transform: translateX(4px);
        }

        /* ========== UTILITIES & RESPONSIVE ========== */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem !important;
                line-height: 1.2;
            }
            .stat-number {
                font-size: 2rem;
            }
            .service-card-modern {
                padding: 1.2rem;
            }
            .px-6 {
                padding-left: 1.25rem;
                padding-right: 1.25rem;
            }
        }

        /* custom link smoothness */
        a {
            text-decoration: none;
        }

        /* remove default blue outline on click - replace with green */
        button:focus, a:focus {
            outline: none;
            box-shadow: 0 0 0 2px #26b41e;
        }

        /* make images responsive */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* ensuring all main headings use modern dark slate instead of generic black */
        h1, h2, h3, h4, .text-black {
            color: #0f172a !important;
        }
        
        /* but hero title must stay white gradient, we keep hero-title class */
        .hero-title {
            color: transparent !important;
            background: linear-gradient(to right, #ffffff, #cbd5e1);
            background-clip: text;
            -webkit-background-clip: text;
        }
        
        /* For section headings inside services */
        .service-title {
            color: #0f172a !important;
        }
        
        .stats-card .stat-number {
            background: linear-gradient(135deg, #1e293b, #26b41e);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        
        /* anchor contact dummy, no js needed but style */
        html {
            scroll-behavior: smooth;
        }
        
        /* fix any residual text colors */
        .text-gray-300 {
            color: #cbd5e1 !important;
        }
        .text-gray-500 {
            color: #64748b !important;
        }
        
        /* glass icon for service cards */
        .service-icon i {
            font-size: 1.6rem;
        }
        
        /* fix baseline grid for consistent spacing */
        @media (max-width: 640px) {
            .hero-section {
                padding: 2rem 0;
            }
            .stats-card {
                padding: 1rem 0.25rem;
            }
            .stat-number {
                font-size: 1.9rem;
            }
        }
        
        /* ========== ADDITIONAL GREEN OVERRIDES ========== */
        
        /* Any blue backgrounds */
        .bg-blue-50, .bg-blue-100, .bg-blue-200,
        .bg-indigo-50, .bg-indigo-100, .bg-indigo-200,
        .bg-cyan-50, .bg-cyan-100,
        .bg-sky-50, .bg-sky-100 {
            background-color: #e8f7e7 !important;
        }
        
        /* Any blue text */
        .text-blue-500, .text-blue-600, .text-blue-700,
        .text-indigo-500, .text-indigo-600, .text-indigo-700,
        .text-cyan-500, .text-cyan-600,
        .text-sky-500, .text-sky-600 {
            color: #26b41e !important;
        }
        .cta-modern .text-5xl,i.text-4xl {
    color: #fff;
    font-size: 30px;
    border: 4px solid #fff;
    /* height: 50px; */
    /* width: 50px; */
    border-radius: 50px;
    padding: 10px;
}
        /* Any blue borders */
        .border-blue-200, .border-blue-300,
        .border-indigo-200, .border-indigo-300,
        .border-cyan-200, .border-sky-200 {
            border-color: #26b41e !important;
        }
        
        /* Hover effects */
        .hover\:bg-blue-50:hover, .hover\:bg-blue-100:hover,
        .hover\:bg-indigo-50:hover, .hover\:bg-indigo-100:hover {
            background-color: #d4f0d2 !important;
        }
        
        .hover\:text-blue-600:hover, .hover\:text-blue-700:hover,
        .hover\:text-indigo-600:hover, .hover\:text-indigo-700:hover {
            color: #1e8f17 !important;
        }
        
        /* Focus rings */
        .focus\:ring-blue-500:focus, .focus\:ring-indigo-500:focus {
            --tw-ring-color: #26b41e !important;
        }
        
        /* Any gradient from blue to something */
        .from-blue-500, .from-blue-600, .from-indigo-500,
        .via-blue-500, .via-indigo-500 {
            --tw-gradient-from: #26b41e !important;
            --tw-gradient-to: #1e8f17 !important;
        }
        
        .to-blue-500, .to-blue-600, .to-indigo-500 {
            --tw-gradient-to: #3cd133 !important;
        }