
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gold: #FFD700;
            --gold-dark: #E6C200;
            --gold-light: #FFF4A3;
            --primary-dark: #0A0A0A;
            --secondary-dark: #1A1A1A;
            --tertiary-dark: #2A2A2A;
            --text-primary: #FFFFFF;
            --text-secondary: #B8B8B8;
            --text-tertiary: #888888;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 215, 0, 0.2);
            --shadow-gold: rgba(255, 215, 0, 0.4);
            --gradient-primary: linear-gradient(135deg, #FFD700 0%, #E6C200 50%, #FFD700 100%);
            --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
            margin: 0;
            padding: 0;
            width: 100%;
        }

        html {
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
        }

        /* Ensure full width coverage without stretching */
        .hero {
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            height: 100%;
            background:
                radial-gradient(ellipse at 30% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                var(--primary-dark);
            z-index: -2;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--secondary-dark);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: 20px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold-dark);
        }

        /* Ultra-Premium Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.15);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav.scrolled {
            background: rgba(10, 10, 10, 0.98);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.1);
            border-bottom: 1px solid var(--primary-gold);
            padding: 0.7rem 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            flex-shrink: 0;
        }

        .logo::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -12px;
            width: 3px;
            height: 22px;
            background: var(--primary-gold);
            transform: translateY(-50%);
            border-radius: 2px;
        }

        .logo:hover {
            color: var(--primary-gold);
            transform: translateY(-1px);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0.8rem;
            border-radius: 12px;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 215, 0, 0.08);
            border-radius: 12px;
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover::before {
            opacity: 1;
            transform: scale(1);
        }

        .nav-links a:hover {
            color: var(--primary-gold);
            transform: translateY(-1px);
        }

        /* Consult Now Button */
        .consult-now-btn {
            background: linear-gradient(135deg, #FFD700, #FFF4A3);
            color: #000000;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            border: 2px solid transparent;
            white-space: nowrap;
        }

        .consult-now-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
            background: linear-gradient(135deg, #FFF4A3, #FFD700);
            color: #000000;
        }

        .consult-now-btn i {
            font-size: 1rem;
        }

        /* Ensure consult-now-btn is visible and black on all devices */
        .consult-now-btn,
        .consult-now-btn:hover,
        .consult-now-btn:focus,
        .consult-now-btn:active {
            color: #000000 !important;
        }

        /* Mobile menu consult-now-btn styling */
        .nav-links.mobile-active .consult-now-btn {
            display: flex !important;
            color: #000000 !important;
            background: linear-gradient(135deg, #FFD700, #FFF4A3) !important;
            margin: 1rem 2rem;
            justify-content: center;
            text-align: center;
            font-size: 1.1rem;
            padding: 1rem 2rem;
        }

        /* Dropdown Styles */
        .nav-item {
            position: relative;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            cursor: pointer;
        }

        .dropdown-toggle::after {
            content: '▾';
            font-size: 0.6rem;
            transition: transform 0.3s ease;
            color: var(--text-secondary);
        }

        .nav-item:hover .dropdown-toggle::after {
            transform: rotate(180deg);
            color: var(--primary-gold);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 0.5rem);
            left: 50%;
            transform: translateX(-50%) translateY(-5px);
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 16px;
            padding: 0.8rem 0;
            min-width: 240px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.1);
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 0.7rem 1.2rem;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            margin: 0 0.5rem;
            border-radius: 8px;
        }

        .dropdown-item:hover {
            color: var(--primary-gold);
            background: rgba(255, 215, 0, 0.08);
            border-left-color: var(--primary-gold);
            transform: translateX(5px);
        }

        .dropdown-header {
            padding: 0.4rem 1.2rem;
            color: var(--primary-gold);
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 1px solid rgba(255, 215, 0, 0.15);
            margin: 0 0.5rem 0.3rem;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            gap: 4px;
        }

        .mobile-menu span {
            width: 24px;
            height: 2px;
            background: var(--primary-gold);
            transition: 0.3s;
            border-radius: 1px;
        }

        .mobile-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .nav-links.mobile-active {
            display: flex !important;
            flex-direction: column;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            height: calc(100vh - 80px);
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(30px);
            padding: 2rem 0;
            gap: 1.5rem;
            text-align: center;
            border-top: 1px solid rgba(255, 215, 0, 0.1);
            z-index: 999;
            overflow-y: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .nav-links.mobile-active a {
            padding: 1rem 2rem;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 0 1rem;
        }

        .nav-links.mobile-active a:hover {
            background: rgba(255, 215, 0, 0.1);
            color: var(--primary-gold);
            transform: translateX(10px);
        }

        .nav-links.mobile-active .dropdown-menu {
            position: static;
            background: rgba(255, 215, 0, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 12px;
            padding: 1rem 0;
            margin: 1rem 2rem;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            min-width: auto;
            text-align: center;
        }

        .nav-links.mobile-active .dropdown-toggle {
            justify-content: center;
            text-align: center;
        }

        .nav-links.mobile-active .dropdown-item {
            padding: 0.8rem 2rem;
            font-size: 1.1rem;
            border-left: none;
            color: var(--text-secondary);
            margin: 0;
            transition: all 0.3s ease;
        }

        .nav-links.mobile-active .dropdown-item:hover {
            background: rgba(255, 215, 0, 0.1);
            color: var(--primary-gold);
            transform: translateX(10px);
        }

        .nav-links.mobile-active .dropdown-header {
            padding: 0.8rem 2rem;
            font-size: 1rem;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            margin-bottom: 0.5rem;
            color: var(--primary-gold);
            font-weight: 700;
        }

        /* Revolutionary Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: visible;
            margin-top: 80px; /* Reduced margin-top */
            width: 100%;
            padding: 2rem 0;
        }



        /* SVG Divider */
        .hero-divider {
            width: 100%;
            line-height: 0;
            position: relative;
            z-index: 10;
            
        }

        /* Advanced Particle System */
        .particles {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-gold);
            border-radius: 50%;
            animation: particleMove 15s linear infinite;
            opacity: 0.6;
        }

        @keyframes particleMove {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-10vh) translateX(50px);
                opacity: 0;
            }
        }

        /* Animated Mesh Background */
        .mesh-background {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            height: 100%;
            background-image:
                linear-gradient(45deg, rgba(255, 215, 0, 0.03) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(255, 215, 0, 0.03) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(255, 215, 0, 0.03) 75%),
                linear-gradient(-45deg, transparent 75%, rgba(255, 215, 0, 0.03) 75%);
            background-size: clamp(60px, 4vw, 120px) clamp(60px, 4vw, 120px);
            background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
            animation: meshMove 20s linear infinite;
            background-repeat: repeat;
            z-index: -1;
        }

        @keyframes meshMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        /* Floating Orbs */
        .orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.1));
            filter: blur(1px);
            animation: orbFloat 8s ease-in-out infinite;
        }

        .orb:nth-child(1) {
            width: clamp(120px, 8vw, 200px);
            height: clamp(120px, 8vw, 200px);
            top: 20%;
            left: clamp(10%, 5vw, 20%);
            animation-delay: 0s;
        }

        .orb:nth-child(2) {
            width: clamp(80px, 6vw, 150px);
            height: clamp(80px, 6vw, 150px);
            top: 70%;
            right: clamp(15%, 8vw, 25%);
            animation-delay: 2s;
        }

        .orb:nth-child(3) {
            width: clamp(100px, 7vw, 180px);
            height: clamp(100px, 7vw, 180px);
            bottom: 20%;
            left: clamp(60%, 50vw, 70%);
            animation-delay: 4s;
        }

        @keyframes orbFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
                opacity: 0.3;
            }
            25% {
                transform: translateY(-30px) rotate(90deg) scale(1.1);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-50px) rotate(180deg) scale(0.9);
                opacity: 0.8;
            }
            75% {
                transform: translateY(-30px) rotate(270deg) scale(1.05);
                opacity: 0.5;
            }
        }

        .hero-content {
            max-width: 1200px;
            text-align: center;
            z-index: 10;
            padding: 0 2rem;
            position: relative;
            padding-bottom: 120px;
            width: 100%;
            margin: 0 auto;
            opacity: 1;
            visibility: visible;
        }

        @media (max-width: 768px) {
            .hero-content {
                padding-bottom: 100px;
            }
        }

        /* Ensure hero badge is visible on all screen sizes */
        @media (min-width: 1024px) {
            .hero-badge {
                display: inline-flex !important;
                opacity: 1 !important;
                visibility: visible !important;
                z-index: 20 !important;
            }
        }

        @media (min-width: 1920px) {
            .hero-badge {
                display: inline-flex !important;
                opacity: 1 !important;
                visibility: visible !important;
                z-index: 20 !important;
                font-size: clamp(1rem, 1vw, 1.2rem) !important;
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: clamp(0.6rem, 1.2vw, 1rem) clamp(1.5rem, 2.5vw, 2.5rem);
            background: rgba(255, 215, 0, 0.1);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 50px;
            font-size: clamp(0.8rem, 1vw, 1rem);
            font-weight: 600;
            color: var(--primary-gold);
            margin-bottom: 2rem;
            backdrop-filter: blur(15px);
            animation: slideInDown 1.2s ease-out;
            position: relative;
            overflow: hidden;
            z-index: 10;
            opacity: 1;
            visibility: visible;
        }

        .hero-badge i {
            font-size: 0.8rem;
            color: var(--primary-gold);
        }

        /* Ensure badge is always visible */
        .hero-badge {
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
            border: 2px solid rgba(255, 215, 0, 0.5);
            background: rgba(255, 215, 0, 0.15);
        }

        .hero-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .hero h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 900;
            line-height: 1.05;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-gold) 30%, var(--gold-light) 60%, var(--text-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInUp 1.2s ease-out 0.3s both;
            position: relative;
            letter-spacing: -2px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-subtitle {
            font-size: clamp(0.9rem, 1.8vw, 1.1rem);
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: slideInUp 1.2s ease-out 0.6s both;
            line-height: 1.7;
            font-weight: 400;
        }

        .hero-cta {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: slideInUp 1.2s ease-out 0.9s both;
        }

        .cta-primary {
            padding: clamp(0.9rem, 1.5vw, 1.2rem) clamp(2rem, 3vw, 3rem);
            background: var(--gradient-primary);
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            font-size: clamp(0.9rem, 1.1vw, 1.1rem);
            letter-spacing: 0.5px;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }

        .cta-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s ease;
        }

        .cta-primary:hover::before {
            left: 100%;
        }

        .cta-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(255, 215, 0, 0.5);
        }

        .cta-secondary {
            padding: clamp(0.9rem, 1.5vw, 1.2rem) clamp(2rem, 3vw, 3rem);
            background: transparent;
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 700;
            border: 2px solid rgba(255, 215, 0, 0.4);
            border-radius: 50px;
            transition: all 0.5s ease;
            backdrop-filter: blur(15px);
            font-size: clamp(0.9rem, 1.1vw, 1.1rem);
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .cta-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 215, 0, 0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .cta-secondary:hover::before {
            opacity: 1;
        }

        .cta-secondary:hover {
            border-color: var(--primary-gold);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
            color: var(--primary-gold);
        }

        /* Stats Section */
        .stats-section {
            padding: 6rem 0;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 215, 0, 0.1);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
            margin-top: 0;
        }
        @media (max-width: 1024px) {
            .stats-section {
                margin-top: 0;
            }
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .stat-item {
            text-align: center;
            position: relative;
        }

        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 1rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--text-secondary);
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Enhanced Section Styling */
        section {
            padding: 10rem 0;
            max-width: 1600px;
            margin: 0 auto;
            padding-left: 2rem;
            padding-right: 2rem;
            position: relative;
        }

        /* Container for better large screen handling */
        .container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        .container-wide {
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 3rem;
            width: 100%;
        }

        .container-narrow {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
            position: relative;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 2rem;
            background: rgba(255, 215, 0, 0.1);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            backdrop-filter: blur(15px);
            position: relative;
            overflow: hidden;
        }

        .section-badge i {
            font-size: 0.8rem;
        }

        .section-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            animation: shimmer 4s infinite;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.8rem, 6vw, 4rem);
            font-weight: 800;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-gold) 50%, var(--text-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            font-weight: 400;
        }

        /* Ultra-Premium Service Cards */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2.5rem;
            margin-top: 5rem;
            align-items: stretch;
        }

        .service-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 215, 0, 0.15);
            border-radius: 30px;
            padding: 3.5rem 2.5rem;
            text-align: center;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            transform: translateY(30px);
            opacity: 0;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--primary-gold), transparent, var(--primary-gold));
            border-radius: 32px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover::after {
            opacity: 0.3;
        }

        .service-card:hover {
            transform: translateY(-15px);
            border-color: rgba(255, 215, 0, 0.4);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 50px rgba(255, 215, 0, 0.2);
        }

        .service-card.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .service-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2.5rem;
            color: var(--primary-dark);
            position: relative;
            transition: all 0.5s ease;
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
        }

        .service-icon i {
            font-size: 2.2rem;
            transition: all 0.5s ease;
        }

        .service-icon::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(45deg, var(--primary-gold), transparent);
            border-radius: 28px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: rotateY(15deg) scale(1.1);
            box-shadow: 0 25px 50px rgba(255, 215, 0, 0.5);
        }

        .service-card:hover .service-icon i {
            transform: scale(1.1);
        }

        .service-card:hover .service-icon::before {
            opacity: 1;
        }

        .service-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
        }

        .service-card p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 1.1rem;
            font-weight: 400;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .read-more-btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.2) 100%);
            color: var(--primary-gold);
            text-decoration: none;
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            letter-spacing: 0.5px;
            margin-top: auto;
        }

        .read-more-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .read-more-btn:hover::before {
            left: 100%;
        }

        .read-more-btn:hover {
            background: var(--primary-gold);
            color: var(--primary-dark);
            border-color: var(--primary-gold);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
        }

        /* Enhanced About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-top: 5rem;
        }

        .about-text {
            font-size: 1.2rem;
            line-height: 1.9;
            color: var(--text-secondary);
        }

        .about-text h3 {
            color: var(--primary-gold);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.2rem;
            margin-bottom: 2rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .about-features {
            display: grid;
            gap: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 2rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.15);
            border-radius: 20px;
            backdrop-filter: blur(15px);
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .feature-item:hover::before {
            left: 100%;
        }

        .feature-item:hover {
            background: rgba(255, 215, 0, 0.08);
            border-color: rgba(255, 215, 0, 0.4);
            transform: translateX(15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            flex-shrink: 0;
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
        }

        .feature-icon i {
            font-size: 1.8rem;
        }

        .feature-content h4 {
            color: var(--text-primary);
            font-weight: 700;
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }

        .feature-content p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.6;
        }





        /* Contact Section */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            margin-top: 5rem;
            align-items: start;
        }

        .contact-info {
            display: grid;
            gap: 2.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 2rem;
            padding: 2.5rem;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 215, 0, 0.15);
            border-radius: 20px;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .contact-item:hover::before {
            left: 100%;
        }

        .contact-item:hover {
            background: rgba(255, 215, 0, 0.08);
            border-color: rgba(255, 215, 0, 0.4);
            transform: translateX(15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            flex-shrink: 0;
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
        }

        .contact-icon i {
            font-size: 2rem;
        }

        .contact-details h4 {
            color: var(--text-primary);
            font-weight: 700;
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }

        .contact-details p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Enhanced Contact Form */
        .contact-form {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.15) 100%);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 25px;
            padding: 3.5rem;
            position: relative;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
        }

        .form-group {
            margin-bottom: 2rem;
            position: relative;
        }

        .form-group label {
            display: block;
            color: var(--primary-gold);
            margin-bottom: 0.8rem;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1.2rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 215, 0, 0.2);
            border-radius: 15px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-gold);
            background: rgba(255, 215, 0, 0.05);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .form-submit {
            width: 100%;
            padding: 1.5rem;
            background: var(--gradient-primary);
            color: var(--primary-dark);
            border: none;
            border-radius: 15px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
        }

        .form-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s ease;
        }

        .form-submit:hover::before {
            left: 100%;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 25px 50px rgba(255, 215, 0, 0.5);
        }



        /* Blog Section */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 5rem;
        }

        .blog-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 215, 0, 0.15);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s ease;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 215, 0, 0.4);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .blog-image {
            height: 200px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
            border: 1px solid rgba(255, 215, 0, 0.15);
            position: relative;
            overflow: hidden;
            border-radius: 15px 15px 0 0;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .blog-image:hover img {
            transform: scale(1.05);
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-category {
            display: inline-block;
            background: rgba(255, 215, 0, 0.1);
            color: var(--primary-gold);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .blog-content h3 {
            color: var(--text-primary);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .blog-content p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .blog-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-tertiary);
        }

        .blog-read-more {
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .blog-read-more:hover {
            color: var(--gold-light);
        }

        /* Enhanced Footer */
        footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
            border-top: 1px solid rgba(255, 215, 0, 0.2);
            padding: 5rem 0 2rem;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
        }

        .footer-content {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .footer-section h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            color: var(--primary-gold);
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .footer-section p,
        .footer-section li {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-section a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: width 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-gold);
        }

        .footer-section a:hover::after {
            width: 100%;
        }

        /* Contact Section Link Styling */
        .contact-details a {
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .contact-details a:hover {
            color: var(--primary-gold);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255, 215, 0, 0.1);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-gold);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .social-link i {
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: var(--primary-gold);
            color: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 215, 0, 0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
            color: var(--text-tertiary);
        }

        /* Scroll Animations */
        @keyframes slideInUp {
            0% {
                opacity: 0;
                transform: translateY(60px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInDown {
            0% {
                opacity: 0;
                transform: translateY(-60px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            0% {
                opacity: 0;
                transform: translateX(-60px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            0% {
                opacity: 0;
                transform: translateX(60px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }



        /* Advanced Hover Effects */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        /* Magnetic Effect */
        .magnetic {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Glow Effect */
        .glow {
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3), 0 0 60px rgba(255, 215, 0, 0.1);
        }

        /* Loading Animation */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.5s ease;
        }

        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 3px solid rgba(255, 215, 0, 0.3);
            border-top: 3px solid var(--primary-gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .hidden {
            opacity: 0;
            pointer-events: none;
        }

        /* WhatsApp Button Styles */
        .whatsapp-widget {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
            font-family: 'Inter', sans-serif;
        }

        .whatsapp-button {
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            position: relative;
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            border: none;
        }

        .whatsapp-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
            background: #20ba5a;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .whatsapp-widget {
                bottom: 1rem;
                right: 1rem;
            }

            .whatsapp-button {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            /* Prevent body scroll when mobile menu is open */
            body.menu-open {
                overflow: hidden;
                position: fixed;
                width: 100%;
            }

            /* Ensure mobile menu is properly positioned */
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

            .consult-now-btn {
                display: flex !important;
                color: #000000 !important;
                background: linear-gradient(135deg, #FFD700, #FFF4A3) !important;
                margin: 1rem 2rem;
                justify-content: center;
                text-align: center;
            }
        }

        /* Responsive Design - Mobile First Approach */
        
        /* Mobile Navigation */
        @media (max-width: 768px) {
            .nav-container {
                padding: 0 1rem;
                flex-direction: row;
                gap: 0.5rem;
                justify-content: space-between;
                align-items: center;
                flex-wrap: nowrap;
            }

            .logo {
                font-size: 1.2rem;
                flex-shrink: 1;
                min-width: 0;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                max-width: calc(100vw - 80px);
            }

            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: flex;
                flex-shrink: 0;
                margin-left: auto;
            }

            .dropdown-menu {
                display: none;
            }

            .nav-links.mobile-active .dropdown-menu {
                display: block;
            }

            /* Prevent body scroll when mobile menu is open */
            body.menu-open {
                overflow: hidden;
                position: fixed;
                width: 100%;
            }

            /* Ensure header is responsive */
            nav {
                padding: 0.8rem 0;
            }

            nav.scrolled {
                padding: 0.6rem 0;
            }
        }

        /* Extra small screens */
        @media (max-width: 360px) {
            .nav-container {
                padding: 0 0.5rem;
            }

            .logo {
                font-size: 0.9rem;
                max-width: calc(100vw - 60px);
            }

            .mobile-menu {
                padding: 0.3rem;
            }
        }

        /* Base Mobile Styles (320px and up) */
        @media (max-width: 480px) {
            .nav-container {
                padding: 0 0.8rem;
                gap: 0.3rem;
            }

            .logo {
                font-size: 1rem;
                max-width: calc(100vw - 70px);
            }

            .logo::before {
                left: -6px;
                width: 2px;
                height: 16px;
            }

            .hero {
                margin-top: 60px;
                min-height: 100vh;
                padding: 2rem 0;
            }

            .hero-content {
                padding: 0 1rem;
                padding-bottom: 80px;
            }

            .hero h1 {
                font-size: clamp(2.5rem, 8vw, 3.5rem);
                line-height: 1.1;
                margin-bottom: 1.5rem;
                letter-spacing: -1px;
            }

            .hero-subtitle {
                font-size: clamp(1rem, 4vw, 1.2rem);
                margin-bottom: 2.5rem;
                line-height: 1.6;
            }

            .hero-badge {
                padding: 0.6rem 1.5rem;
                font-size: 0.8rem;
                margin-bottom: 2rem;
            }

            .hero-cta {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }

            .cta-primary,
            .cta-secondary {
                padding: 1rem 2rem;
                font-size: 1rem;
                width: 100%;
                max-width: 280px;
                text-align: center;
            }

            .stats-section {
                padding: 3rem 0;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 1rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .stat-label {
                font-size: 1rem;
            }

            section {
                padding: 4rem 0;
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .section-title {
                font-size: clamp(2rem, 6vw, 2.5rem);
                margin-bottom: 1.5rem;
            }

            .section-subtitle {
                font-size: 1.1rem;
                line-height: 1.6;
            }

            .section-badge {
                padding: 0.6rem 1.5rem;
                font-size: 0.8rem;
                margin-bottom: 1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-top: 3rem;
            }

            .service-card {
                padding: 2rem 1.5rem;
                transform: translateY(0);
                opacity: 1;
                display: flex;
                flex-direction: column;
                height: 100%;
            }

            .service-icon {
                width: 80px;
                height: 80px;
                margin-bottom: 2rem;
            }

            .service-icon i {
                font-size: 1.8rem;
            }

            .service-card h3 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .service-card p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
                flex-grow: 1;
            }

            .read-more-btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-top: 3rem;
            }

            .about-text {
                font-size: 1.1rem;
            }

            .about-text h3 {
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
            }

            .about-features {
                gap: 1.5rem;
            }

            .feature-item {
                padding: 1.5rem;
                gap: 1rem;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
            }

            .feature-icon i {
                font-size: 1.5rem;
            }

            .feature-content h4 {
                font-size: 1.1rem;
            }



            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-top: 3rem;
            }

            .contact-item {
                padding: 1.5rem;
                gap: 1rem;
            }

            .contact-icon {
                width: 60px;
                height: 60px;
            }

            .contact-icon i {
                font-size: 1.5rem;
            }

            .contact-form {
                padding: 2rem 1.5rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 1rem 1.2rem;
                font-size: 1rem;
            }

            .form-submit {
                padding: 1.2rem;
                font-size: 1rem;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-top: 3rem;
            }

            .blog-card {
                margin-bottom: 1rem;
            }

            .blog-content {
                padding: 1.5rem;
            }

            .blog-content h3 {
                font-size: 1.2rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 1rem;
            }

            .footer-section h3 {
                font-size: 1.3rem;
                margin-bottom: 1.5rem;
            }

            .social-links {
                gap: 1rem;
                margin-top: 1.5rem;
            }

            .social-link {
                width: 45px;
                height: 45px;
            }

            .social-link i {
                font-size: 1rem;
            }

            .whatsapp-widget {
                bottom: 1rem;
                right: 1rem;
            }

            .whatsapp-button {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }

        /* Small Tablets (481px - 768px) */
        @media (min-width: 481px) and (max-width: 768px) {
            .nav-container {
                padding: 0 1.5rem;
            }

            .logo {
                font-size: 1.4rem;
            }

            .hero {
                margin-top: 70px;
            }

            .hero-content {
                padding: 0 1.5rem;
                padding-bottom: 100px;
            }

            .hero h1 {
                font-size: clamp(3rem, 9vw, 4rem);
            }

            .hero-subtitle {
                font-size: clamp(1.1rem, 3.5vw, 1.4rem);
            }

            .hero-cta {
                flex-direction: column;
                gap: 1.5rem;
            }

            .cta-primary,
            .cta-secondary {
                padding: 1.1rem 2.5rem;
                font-size: 1.05rem;
                width: 100%;
                max-width: 320px;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
                padding: 0 1.5rem;
            }

            .stat-number {
                font-size: 3rem;
            }

            section {
                padding: 5rem 0;
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }



            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .blog-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2rem;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
                padding: 0 1.5rem;
            }
        }

        /* Large Tablets (769px - 1024px) */
        @media (min-width: 769px) and (max-width: 1024px) {
            .nav-container {
                padding: 0 2rem;
            }

            .nav-links {
                gap: 1.2rem;
            }

            .nav-links a {
                font-size: 0.9rem;
                padding: 0.5rem 0.7rem;
            }

            .hero {
                margin-top: 80px;
            }

            .hero-content {
                padding: 0 2rem;
                padding-bottom: 120px;
            }

            .hero h1 {
                font-size: clamp(4rem, 8vw, 5rem);
            }

            .hero-subtitle {
                font-size: clamp(1.3rem, 2.5vw, 1.5rem);
            }

            .hero-cta {
                gap: 2rem;
            }

            .cta-primary,
            .cta-secondary {
                padding: 1.2rem 2.8rem;
                font-size: 1.1rem;
            }

            .stats-container {
                grid-template-columns: repeat(4, 1fr);
                gap: 2.5rem;
                padding: 0 2rem;
            }

            .stat-number {
                font-size: 3.2rem;
            }

            section {
                padding: 7rem 0;
                padding-left: 2rem;
                padding-right: 2rem;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 2.5rem;
            }

            .service-card {
                padding: 3rem 2.5rem;
                display: flex;
                flex-direction: column;
                height: 100%;
            }

            .about-content {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }



            .contact-content {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }

            .blog-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 2.5rem;
            }

            .footer-content {
                grid-template-columns: repeat(3, 1fr);
                gap: 3rem;
                padding: 0 2rem;
            }
        }

        /* Desktop (1025px - 1440px) */
        @media (min-width: 1025px) and (max-width: 1440px) {
            .nav-container {
                max-width: 1200px;
                padding: 0 2rem;
            }

            .hero-content {
                max-width: 900px;
                padding: 0 2rem;
                padding-bottom: 120px;
            }

            .hero h1 {
                font-size: clamp(5rem, 7vw, 6rem);
            }

            .hero-subtitle {
                font-size: clamp(1.4rem, 2vw, 1.6rem);
            }

            .stats-container {
                max-width: 1200px;
                padding: 0 2rem;
            }

            section {
                max-width: 1200px;
                padding: 8rem 0;
                padding-left: 2rem;
                padding-right: 2rem;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
                gap: 2.5rem;
            }

            .about-content {
                gap: 5rem;
            }



            .contact-content {
                gap: 5rem;
            }

            .blog-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 2.5rem;
            }

            .footer-content {
                max-width: 1200px;
                padding: 0 2rem;
            }
        }

        /* Large Desktop (1441px and up) */
        @media (min-width: 1441px) {
            .nav-container {
                max-width: 1400px;
                padding: 0 3rem;
            }

            .hero-content {
                max-width: 1000px;
                padding: 0 3rem;
                padding-bottom: 120px;
            }

            .hero h1 {
                font-size: clamp(6rem, 6vw, 6.5rem);
            }

            .hero-subtitle {
                font-size: clamp(1.5rem, 1.8vw, 1.6rem);
            }

            .stats-container {
                max-width: 1400px;
                padding: 0 3rem;
            }

            section {
                max-width: 1400px;
                padding: 10rem 0;
                padding-left: 3rem;
                padding-right: 3rem;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
                gap: 3rem;
            }

            .about-content {
                gap: 6rem;
            }



            .contact-content {
                gap: 6rem;
            }

            .blog-grid {
                grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
                gap: 3rem;
            }

            .footer-content {
                max-width: 1400px;
                padding: 0 3rem;
            }
        }

        /* Ultra-wide screens (1920px and up) */
        @media (min-width: 1920px) {
            .nav-container {
                max-width: 1800px;
                padding: 0 4rem;
            }

            .hero-content {
                max-width: 1400px;
                padding: 0 4rem;
                padding-bottom: 120px;
            }

            .hero h1 {
                font-size: clamp(6.5rem, 4.5vw, 7.5rem);
                max-width: 1200px;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-subtitle {
                font-size: clamp(1.6rem, 1.3vw, 1.8rem);
                max-width: 900px;
                margin-left: auto;
                margin-right: auto;
            }

            .stats-container {
                max-width: 1800px;
                padding: 0 4rem;
            }

            section {
                max-width: 1800px;
                padding: 12rem 0;
                padding-left: 4rem;
                padding-right: 4rem;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
                gap: 3.5rem;
                max-width: 1600px;
                margin-left: auto;
                margin-right: auto;
            }

            .about-content {
                gap: 7rem;
                max-width: 1600px;
                margin-left: auto;
                margin-right: auto;
            }



            .contact-content {
                gap: 7rem;
                max-width: 1600px;
                margin-left: auto;
                margin-right: auto;
            }

            .blog-grid {
                grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
                gap: 3.5rem;
                max-width: 1600px;
                margin-left: auto;
                margin-right: auto;
            }

            .footer-content {
                max-width: 1800px;
                padding: 0 4rem;
            }
        }

        /* Extra large screens (2560px and up) */
        @media (min-width: 2560px) {
            .nav-container {
                max-width: 2000px;
                padding: 0 5rem;
            }

            .hero-content {
                max-width: 1600px;
                padding: 0 5rem;
                padding-bottom: 120px;
            }

            .hero h1 {
                font-size: clamp(3rem, 3vw, 4rem);
                max-width: 800px;
            }

            .hero-subtitle {
                font-size: clamp(1.1rem, 0.9vw, 1.3rem);
                max-width: 600px;
            }

            .hero-badge {
                padding: clamp(0.9rem, 0.8vw, 1rem) clamp(2.2rem, 1.8vw, 2.8rem);
                font-size: clamp(0.9rem, 0.7vw, 1rem);
            }

            .cta-primary,
            .cta-secondary {
                padding: clamp(1.1rem, 1.1vw, 1.3rem) clamp(3rem, 2.2vw, 3.5rem);
                font-size: clamp(1.1rem, 0.8vw, 1.2rem);
            }

            .stats-container {
                max-width: 2000px;
                padding: 0 5rem;
            }

            section {
                max-width: 2000px;
                padding: 15rem 0;
                padding-left: 5rem;
                padding-right: 5rem;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
                gap: 4rem;
                max-width: 1800px;
            }

            .about-content {
                gap: 8rem;
                max-width: 1800px;
            }



            .contact-content {
                gap: 8rem;
                max-width: 1800px;
            }

            .blog-grid {
                grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
                gap: 4rem;
                max-width: 1800px;
            }

            .footer-content {
                max-width: 2000px;
                padding: 0 5rem;
            }
        }

        /* Ultra-wide screens (3440px and up) */
        @media (min-width: 3440px) {
            .nav-container {
                max-width: 2400px;
                padding: 0 6rem;
            }

            .hero-content {
                max-width: 2000px;
                padding: 0 6rem;
                padding-bottom: 120px;
            }

            .hero h1 {
                font-size: clamp(8rem, 3vw, 9rem);
                max-width: 1600px;
            }

            .hero-subtitle {
                font-size: clamp(2rem, 0.8vw, 2.2rem);
                max-width: 1200px;
            }

            .stats-container {
                max-width: 2400px;
                padding: 0 6rem;
            }

            section {
                max-width: 2400px;
                padding: 18rem 0;
                padding-left: 6rem;
                padding-right: 6rem;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(700px, 1fr));
                gap: 4.5rem;
                max-width: 2000px;
            }

            .about-content {
                gap: 10rem;
                max-width: 2000px;
            }



            .contact-content {
                gap: 10rem;
                max-width: 2000px;
            }

            .blog-grid {
                grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
                gap: 4.5rem;
                max-width: 2000px;
            }

            .footer-content {
                max-width: 2400px;
                padding: 0 6rem;
            }
        }

        /* Prevent excessive stretching on very wide screens */
        @media (min-width: 4000px) {
            .nav-container,
            .hero-content,
            .stats-container,
            section,
            .footer-content {
                max-width: 2400px;
            }

            .services-grid,
            .about-content,
            .contact-content,
            .blog-grid {
                max-width: 2000px;
            }
        }

        /* Center content on ultra-wide screens */
        @media (min-width: 1920px) {
            .section-header {
                max-width: 1200px;
                margin-left: auto;
                margin-right: auto;
            }

            .section-title {
                max-width: 1000px;
                margin-left: auto;
                margin-right: auto;
            }

            .section-subtitle {
                max-width: 800px;
                margin-left: auto;
                margin-right: auto;
            }
        }

        /* Improved grid layouts for large screens */
        @media (min-width: 1920px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
                max-width: 1600px;
            }



            .blog-grid {
                grid-template-columns: repeat(3, 1fr);
                max-width: 1600px;
            }
        }

        @media (min-width: 2560px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
                max-width: 1800px;
            }



            .blog-grid {
                grid-template-columns: repeat(3, 1fr);
                max-width: 1800px;
            }
        }

        /* Prevent text from becoming too large on ultra-wide screens */
        @media (min-width: 1920px) {
            .service-card h3 {
                font-size: clamp(1.8rem, 1.5vw, 2.2rem);
            }

            .service-card p {
                font-size: clamp(1.1rem, 1vw, 1.3rem);
            }



            .blog-content h3 {
                font-size: clamp(1.3rem, 1.2vw, 1.5rem);
            }

            .blog-content p {
                font-size: clamp(1rem, 0.9vw, 1.2rem);
            }
        }

        /* Maintain readable line lengths on large screens */
        @media (min-width: 1920px) {
            .service-card p,
            .blog-content p,
            .about-text p {
                max-width: 90%;
                margin-left: auto;
                margin-right: auto;
            }
        }

        /* Enhanced spacing for ultra-wide screens */
        @media (min-width: 1920px) {
            .service-card {
                padding: clamp(3.5rem, 3vw, 4.5rem) clamp(2.5rem, 2vw, 3.5rem);
                display: flex;
                flex-direction: column;
                height: 100%;
            }



            .contact-form {
                padding: clamp(3.5rem, 3vw, 4.5rem);
            }

            .blog-content {
                padding: clamp(2rem, 1.5vw, 3rem);
            }
        }

        /* Background responsiveness for large screens */
        @media (min-width: 1920px) {
            .hero {
                background:
                    radial-gradient(ellipse at 25% 25%, rgba(255, 215, 0, 0.15) 0%, transparent 60%),
                    radial-gradient(ellipse at 75% 75%, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
                    var(--primary-dark);
            }

            .mesh-background {
                background-size: clamp(80px, 3vw, 150px) clamp(80px, 3vw, 150px);
            }

            .orb:nth-child(1) {
                width: clamp(150px, 6vw, 250px);
                height: clamp(150px, 6vw, 250px);
                left: clamp(8%, 3vw, 15%);
            }

            .orb:nth-child(2) {
                width: clamp(100px, 4vw, 180px);
                height: clamp(100px, 4vw, 180px);
                right: clamp(12%, 5vw, 20%);
            }

            .orb:nth-child(3) {
                width: clamp(120px, 5vw, 200px);
                height: clamp(120px, 5vw, 200px);
                left: clamp(65%, 55vw, 75%);
        }

            /* Hero content responsiveness for large screens */
            .hero h1 {
                font-size: clamp(2.8rem, 4vw, 3.5rem);
                max-width: 700px;
            }

            .hero-subtitle {
                font-size: clamp(1rem, 1.3vw, 1.2rem);
                max-width: 500px;
            }

            .hero-badge {
                padding: clamp(0.7rem, 0.9vw, 0.9rem) clamp(1.8rem, 1.8vw, 2.2rem);
                font-size: clamp(0.8rem, 0.8vw, 0.9rem);
            }

            .cta-primary,
            .cta-secondary {
                padding: clamp(1rem, 1.2vw, 1.2rem) clamp(2.5rem, 2.5vw, 3rem);
                font-size: clamp(1rem, 0.9vw, 1.1rem);
            }
        }

        @media (min-width: 2560px) {
            .hero {
                background:
                    radial-gradient(ellipse at 20% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 70%),
                    radial-gradient(ellipse at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 70%),
                    var(--primary-dark);
            }

            .mesh-background {
                background-size: clamp(100px, 2.5vw, 180px) clamp(100px, 2.5vw, 180px);
            }

            .orb:nth-child(1) {
                width: clamp(180px, 5vw, 300px);
                height: clamp(180px, 5vw, 300px);
                left: clamp(6%, 2vw, 12%);
            }

            .orb:nth-child(2) {
                width: clamp(120px, 3vw, 220px);
                height: clamp(120px, 3vw, 220px);
                right: clamp(10%, 3vw, 18%);
            }

            .orb:nth-child(3) {
                width: clamp(140px, 4vw, 250px);
                height: clamp(140px, 4vw, 250px);
                left: clamp(70%, 60vw, 80%);
            }
        }

        @media (min-width: 3440px) {
            .hero {
                background:
                    radial-gradient(ellipse at 15% 15%, rgba(255, 215, 0, 0.15) 0%, transparent 80%),
                    radial-gradient(ellipse at 85% 85%, rgba(255, 215, 0, 0.1) 0%, transparent 80%),
                    var(--primary-dark);
            }

            .mesh-background {
                background-size: clamp(120px, 2vw, 200px) clamp(120px, 2vw, 200px);
        }

            .orb:nth-child(1) {
                width: clamp(200px, 4vw, 350px);
                height: clamp(200px, 4vw, 350px);
                left: clamp(5%, 1.5vw, 10%);
            }

            .orb:nth-child(2) {
                width: clamp(140px, 2.5vw, 250px);
                height: clamp(140px, 2.5vw, 250px);
                right: clamp(8%, 2vw, 15%);
            }

            .orb:nth-child(3) {
                width: clamp(160px, 3vw, 280px);
                height: clamp(160px, 3vw, 280px);
                left: clamp(75%, 65vw, 85%);
            }
        }

        /* Prevent background elements from becoming too large on ultra-wide screens */
        @media (min-width: 4000px) {
            .mesh-background {
                background-size: 200px 200px;
            }

            .orb:nth-child(1) {
                width: 350px;
                height: 350px;
                left: 10%;
            }

            .orb:nth-child(2) {
                width: 250px;
                height: 250px;
                right: 15%;
        }

            .orb:nth-child(3) {
                width: 280px;
                height: 280px;
                left: 80%;
            }
        }
                :root {
            --primary-gold: #FFD700;
            --gold-dark: #E6C200;
            --gold-light: #FFF4A3;
            --primary-dark: #0A0A0A;
            --secondary-dark: #1A1A1A;
            --tertiary-dark: #2A2A2A;
            --text-primary: #FFFFFF;
            --text-secondary: #B8B8B8;
            --text-tertiary: #888888;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 215, 0, 0.2);
            --shadow-gold: rgba(255, 215, 0, 0.4);
            --gradient-primary: linear-gradient(135deg, #FFD700 0%, #E6C200 50%, #FFD700 100%);
            --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.15);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav.scrolled {
            background: rgba(10, 10, 10, 0.98);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.1);
            border-bottom: 1px solid var(--primary-gold);
            padding: 0.7rem 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            flex-shrink: 0;
        }

        .logo::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -12px;
            width: 3px;
            height: 22px;
            background: var(--primary-gold);
            transform: translateY(-50%);
            border-radius: 2px;
        }

        .logo:hover {
            color: var(--primary-gold);
            transform: translateY(-1px);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0.8rem;
            border-radius: 12px;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 215, 0, 0.08);
            border-radius: 12px;
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover::before {
            opacity: 1;
            transform: scale(1);
        }

        .nav-links a:hover {
            color: var(--primary-gold);
            transform: translateY(-1px);
        }

        /* Dropdown Styles */
        .nav-item {
            position: relative;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            cursor: pointer;
        }

        .dropdown-toggle::after {
            content: '▾';
            font-size: 0.6rem;
            transition: transform 0.3s ease;
            color: var(--text-secondary);
        }

        .nav-item:hover .dropdown-toggle::after {
            transform: rotate(180deg);
            color: var(--primary-gold);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 0.5rem);
            left: 50%;
            transform: translateX(-50%) translateY(-5px);
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 16px;
            padding: 0.8rem 0;
            min-width: 240px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.1);
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 0.7rem 1.2rem;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            margin: 0 0.5rem;
            border-radius: 8px;
        }

        .dropdown-item:hover {
            color: var(--primary-gold);
            background: rgba(255, 215, 0, 0.08);
            border-left-color: var(--primary-gold);
            transform: translateX(5px);
        }

        .dropdown-header {
            padding: 0.4rem 1.2rem;
            color: var(--primary-gold);
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 1px solid rgba(255, 215, 0, 0.15);
            margin: 0 0.5rem 0.3rem;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            gap: 4px;
        }

        .mobile-menu span {
            width: 24px;
            height: 2px;
            background: var(--primary-gold);
            transition: 0.3s;
            border-radius: 1px;
        }

        .mobile-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .nav-links.mobile-active {
            display: flex !important;
            flex-direction: column;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            height: calc(100vh - 80px);
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(30px);
            padding: 2rem 0;
            gap: 1.5rem;
            text-align: center;
            border-top: 1px solid rgba(255, 215, 0, 0.1);
            z-index: 999;
            overflow-y: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .nav-links.mobile-active a {
            padding: 1rem 2rem;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 0 1rem;
        }

        .nav-links.mobile-active a:hover {
            background: rgba(255, 215, 0, 0.1);
            color: var(--primary-gold);
            transform: translateX(10px);
        }

        .nav-links.mobile-active .dropdown-menu {
            position: static;
            background: rgba(255, 215, 0, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 12px;
            padding: 1rem 0;
            margin: 1rem 2rem;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            min-width: auto;
            text-align: center;
        }

        .nav-links.mobile-active .dropdown-toggle {
            justify-content: center;
            text-align: center;
        }

        .nav-links.mobile-active .dropdown-item {
            padding: 0.8rem 2rem;
            font-size: 1.1rem;
            border-left: none;
            color: var(--text-secondary);
            margin: 0;
            transition: all 0.3s ease;
        }

        .nav-links.mobile-active .dropdown-item:hover {
            background: rgba(255, 215, 0, 0.1);
            color: var(--primary-gold);
            transform: translateX(10px);
        }

                .nav-links.mobile-active .dropdown-header {
            padding: 0.8rem 2rem;
            font-size: 1rem;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            margin-bottom: 0.5rem;
            color: var(--primary-gold);
            font-weight: 700;
        }

        /* Service Hero */
        .service-hero {
            padding: 8rem 0 4rem;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
            text-align: center;
        }

        .service-hero h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-gold) 50%, var(--text-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-hero p {
            font-size: 1.3rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Service Content */
        .service-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .service-section {
            margin-bottom: 4rem;
        }

        .service-section h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            color: var(--primary-gold);
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .service-section p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 215, 0, 0.15);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 215, 0, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .feature-card h3 {
            color: var(--primary-gold);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .feature-card p {
            color: var(--text-secondary);
            font-size: 1rem;
        }

        .cta-section {
            text-align: center;
            padding: 4rem 0;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.1) 100%);
            border-radius: 30px;
            margin: 4rem 0;
        }

        .cta-btn {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--gradient-primary);
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.4s ease;
            font-size: 1.1rem;
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 25px 50px rgba(255, 215, 0, 0.5);
        }

        /* Consult Now Button */
        .consult-now-btn {
            background: linear-gradient(135deg, #FFD700, #FFF4A3);
            color: #000000;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            border: 2px solid transparent;
            white-space: nowrap;
        }
        .consult-now-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
            background: linear-gradient(135deg, #FFF4A3, #FFD700);
            color: #000000;
        }
        .consult-now-btn i {
            font-size: 1rem;
        }
        @media (max-width: 768px) {
            .consult-now-btn {
                display: flex !important;
                color: #000000 !important;
                background: linear-gradient(135deg, #FFD700, #FFF4A3) !important;
                margin: 1rem 2rem;
                justify-content: center;
                text-align: center;
            }
        }

        /* Ensure consult-now-btn is visible and black on all devices */
        .consult-now-btn,
        .consult-now-btn:hover,
        .consult-now-btn:focus,
        .consult-now-btn:active {
            color: #000000 !important;
        }

        /* Mobile menu consult-now-btn styling */
        .nav-links.mobile-active .consult-now-btn {
            display: flex !important;
            color: #000000 !important;
            background: linear-gradient(135deg, #FFD700, #FFF4A3) !important;
            margin: 1rem 2rem;
            justify-content: center;
            text-align: center;
            font-size: 1.1rem;
            padding: 1rem 2rem;
        }

        /* Responsive Design - Mobile First Approach */
        
        /* Mobile Navigation */
        @media (max-width: 768px) {
            .nav-container {
                padding: 0 1rem;
                flex-direction: row;
                gap: 0.5rem;
                justify-content: space-between;
                align-items: center;
                flex-wrap: nowrap;
            }

            .logo {
                font-size: 1.2rem;
                flex-shrink: 1;
                min-width: 0;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                max-width: calc(100vw - 80px);
            }

            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: flex;
                flex-shrink: 0;
                margin-left: auto;
            }

            /* Prevent body scroll when mobile menu is open */
            body.menu-open {
                overflow: hidden;
                position: fixed;
                width: 100%;
            }
        }

        /* Extra small screens */
        @media (max-width: 480px) {
            .nav-container {
                padding: 0 0.8rem;
                gap: 0.3rem;
            }

            .logo {
                font-size: 1rem;
                max-width: calc(100vw - 70px);
            }

            .logo::before {
                left: -6px;
                width: 2px;
                height: 16px;
            }
        }

        @media (max-width: 360px) {
            .nav-container {
                padding: 0 0.5rem;
            }

            .logo {
                font-size: 0.9rem;
                max-width: calc(100vw - 60px);
            }

            .mobile-menu {
                padding: 0.3rem;
            }
        }

        /* Mobile responsive navigation sizing */
        @media (max-width: 768px) {
            nav {
                padding: 0.8rem 0;
            }

            nav.scrolled {
                padding: 0.6rem 0;
            }
        }

        /* Base Mobile Styles (320px and up) */
        @media (max-width: 480px) {
            .nav-container {
                padding: 0 1rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .back-btn {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }

            .service-hero {
                padding: 6rem 0 3rem;
            }

            .service-hero h1 {
                font-size: clamp(2rem, 8vw, 2.5rem);
                margin-bottom: 1.5rem;
            }

            .service-hero p {
                font-size: 1.1rem;
                padding: 0 1rem;
            }

            .service-content {
                padding: 2rem 1rem;
            }

            .service-section {
                margin-bottom: 3rem;
            }

            .service-section h2 {
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
            }

            .service-section p {
                font-size: 1rem;
                margin-bottom: 1rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin: 2rem 0;
            }

            .feature-card {
                padding: 1.5rem;
            }

            .feature-card h3 {
                font-size: 1.2rem;
                margin-bottom: 0.8rem;
            }

            .feature-card p {
                font-size: 0.95rem;
            }

            .cta-section {
                padding: 3rem 1rem;
                margin: 3rem 0;
            }

            .cta-section h2 {
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
            }

            .cta-section p {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }

            .cta-btn {
                padding: 1rem 2rem;
                font-size: 1rem;
                width: 100%;
                max-width: 280px;
            }

            ul {
                margin-left: 1rem;
            }

            li {
                font-size: 1rem;
                margin-bottom: 0.8rem;
            }
        }

        /* Small Tablets (481px - 768px) */
        @media (min-width: 481px) and (max-width: 768px) {
            .nav-container {
                padding: 0 1.5rem;
                flex-direction: row;
                justify-content: space-between;
            }

            .service-hero {
                padding: 7rem 0 3.5rem;
            }

            .service-hero h1 {
                font-size: clamp(2.5rem, 6vw, 3rem);
            }

            .service-hero p {
                font-size: 1.2rem;
                padding: 0 1.5rem;
            }

            .service-content {
                padding: 3rem 1.5rem;
            }

            .service-section h2 {
                font-size: 2rem;
            }

            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }

            .cta-section {
                padding: 3.5rem 1.5rem;
            }

            .cta-btn {
                padding: 1.1rem 2.5rem;
                font-size: 1.05rem;
            }
        }

        /* Large Tablets (769px - 1024px) */
        @media (min-width: 769px) and (max-width: 1024px) {
            .nav-container {
                padding: 0 2rem;
            }

            .service-hero {
                padding: 8rem 0 4rem;
            }

            .service-hero h1 {
                font-size: clamp(3rem, 5vw, 3.5rem);
            }

            .service-content {
                padding: 4rem 2rem;
            }

            .service-section h2 {
                font-size: 2.2rem;
            }

            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2rem;
            }

            .cta-section {
                padding: 4rem 2rem;
            }
        }

        /* Desktop (1025px - 1440px) */
        @media (min-width: 1025px) and (max-width: 1440px) {
            .service-content {
                max-width: 1100px;
            }

            .service-hero h1 {
                font-size: clamp(3.5rem, 4vw, 4rem);
            }

            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 2.5rem;
            }
        }

        /* Large Desktop (1441px and up) */
        @media (min-width: 1441px) {
            .service-content {
                max-width: 1300px;
            }

            .service-hero h1 {
                font-size: clamp(4rem, 3.5vw, 4.5rem);
            }

            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 3rem;
            }
        }

        /* Landscape orientation adjustments for mobile */
        @media (max-width: 768px) and (orientation: landscape) {
            .service-hero {
                padding: 5rem 0 2rem;
            }

            .service-hero h1 {
                font-size: clamp(2rem, 5vw, 2.5rem);
                margin-bottom: 1rem;
            }

            .service-hero p {
                font-size: 1rem;
                margin-bottom: 1rem;
            }
        }

        /* High DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .feature-card {
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            }

            .cta-btn {
                box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
            }
        }

        /* Reduced motion preferences */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Print styles */
        @media print {
            .back-btn {
                display: none !important;
            }

            .service-hero {
                padding: 2rem 0;
            }

            .feature-card {
                break-inside: avoid;
                box-shadow: none;
                border: 1px solid #ccc;
            }

            body {
                background: white !important;
                color: black !important;
            }

            * {
                background: transparent !important;
                color: black !important;
                box-shadow: none !important;
            }
        }

