        body { 
            font-family: 'Inter', sans-serif; 
            scroll-behavior: smooth;
        }

		/* Hero Section with Image Background - Add to css/main.css */

		.hero-image {
		    position: relative;
		    background-attachment: fixed; /* Parallax effect */
		}

		/* Enhanced parallax effect for image background */
		.hero-image .absolute.inset-0.bg-cover {
		    will-change: transform;
		    transition: transform 0.1s ease-out;
		}

		/* Text enhancements for better readability over image */
		.hero-image .hero-text {
		    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
		}

		.hero-image p {
		    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
		}

		/* Button enhancements with backdrop blur */
		.hero-image a {
		    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
		}

		.hero-image a:hover {
		    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
		}

		/* Responsive background positioning */
		@media (max-width: 768px) {
		    .hero-image {
		        background-attachment: scroll; /* Better performance on mobile */
		    }
    
		    .hero-image .absolute.inset-0.bg-cover {
		        background-position: center center;
		    }
		}

        
        .hero-gradient {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 75%, #475569 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-gradient::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(1deg); }
        }
        
        .digital-wave {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23ffffff'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23ffffff'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E") repeat-x;
            background-size: 1200px 120px;
            animation: digitalWave 15s ease-in-out infinite;
            transform: rotate(180deg);
        }
        
        @keyframes digitalWave {
            0%, 100% { transform: translateX(0px) rotate(180deg); }
            50% { transform: translateX(-100px) rotate(180deg); }
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
/* Digital Ocean Text Color Options - Add to css/main.css */

/* Option 1: Bright White to Light Blue Gradient */
/*
.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #bae6fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Option 2: White to Cyan Gradient - Uncomment to use */

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #67e8f9 50%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}



/* Enhanced text shadow for all hero text on image background */
.hero-image .hero-text {
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        2px 2px 8px rgba(0, 0, 0, 0.8),
        4px 4px 12px rgba(0, 0, 0, 0.6);
}        
        .stats-counter {
            display: inline-block;
            font-variant-numeric: tabular-nums;
        }
        
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        @media (max-width: 768px) {
            .hero-text {
                font-size: 2.5rem;
                line-height: 1.1;
            }
        }
        
        /* Custom styles for the fixed header */
        .sovereignty-badge {
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            color: white;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 60;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Adjust body padding to account for fixed header */
        body {
            padding-top: 112px; /* 48px banner + 64px nav */
        }
        
        /* Hero section adjustments */
        .hero-image {
            margin-top: -112px;
            padding-top: 112px;
        }
        
        /* Navigation styling */
        nav {
            position: fixed;
            top: 48px;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(148, 163, 184, 0.3);
            height: 64px;
        }
        
        /* Hero background and styling */
        .hero-image {
            background: linear-gradient(135deg, #1e40af, #06b6d4, #10b981);
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(30, 64, 175, 0.3);
            z-index: 1;
        }
        
        .hero-image > * {
            position: relative;
            z-index: 2;
        }
        
        .text-gradient {
            background: linear-gradient(135deg, #60a5fa, #34d399);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        /* Mobile menu styles */
        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        /* Responsive text sizing */
        @media (max-width: 768px) {
            .sovereignty-badge {
                font-size: 0.875rem;
                height: 40px;
            }
            
            body {
                padding-top: 96px; /* 40px banner + 56px nav */
            }
            
            nav {
                top: 40px;
                height: 56px;
            }
            
            .hero-image {
                margin-top: -96px;
                padding-top: 96px;
            }
        }
   

        .solution-card {
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        
        .solution-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
        }
        
        .eperi-card { border-left-color: #10b981; }
        .cloudmore-card { border-left-color: #3b82f6; }
        .crm-card { border-left-color: #8b5cf6; }
        
        .benefit-icon {
            width: 3rem;
            height: 3rem;
            background: linear-gradient(135deg, #10b981, #3b82f6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-bottom: 1rem;
        }
        
        .sovereignty-badge {
            background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-align: center;
            box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.2);
        }
        
        @media (max-width: 768px) {
            .hero-text {
                font-size: 2.5rem;
                line-height: 1.1;
            }
        }

/* Mobile Hero Section Fixes - Add to css/main.css */

/* Base hero section adjustments */
.hero-image {
    position: relative;
    background-attachment: fixed;
    padding-top: 120px; /* Account for banner + nav */
    padding-bottom: 2rem;
}

/* Mobile-specific hero adjustments */
@media (max-width: 768px) {
    .hero-image {
        min-height: 100vh;
        height: auto;
        background-attachment: scroll;
        padding-top: 140px; /* More space for mobile banner + nav */
        padding-bottom: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Ensure hero content is properly sized on mobile */
    .hero-image .relative.z-10 {
        min-height: calc(100vh - 180px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    /* Adjust hero text size for mobile */
    .hero-image .hero-text {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    /* Adjust paragraph for mobile */
    .hero-image p {
        font-size: 1.125rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    /* Stack buttons vertically on small screens */
    .hero-image .flex {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero-image .flex a {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero-image {
        padding-top: 120px;
    }
    
    .hero-image .relative.z-10 {
        min-height: calc(100vh - 140px);
        padding-top: 1rem;
    }
    
    .hero-image .hero-text {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-image p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-image {
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 1rem;
    }
    
    .hero-image .relative.z-10 {
        min-height: calc(100vh - 120px);
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .hero-image .hero-text {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .hero-image p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Mobile Menu Styles - Add these to your css/main.css file */

/* Mobile overlay backdrop */
#mobile-overlay {
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease-in-out;
}

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

/* Mobile menu container */
#mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

/* Show mobile menu when active */
#mobile-menu.active {
    transform: translateX(0);
}

/* Mobile menu hidden state */
#mobile-menu.hidden {
    display: none;
}

/* Mobile menu links */
#mobile-menu nav a {
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}

#mobile-menu nav a:hover {
    color: #2563eb !important;
    background: #f8fafc;
    border-radius: 0.5rem;
}

/* Contact button styling */
#mobile-menu nav a:last-child {
    border-bottom: none;
    font-weight: 600;
}

#mobile-menu nav a:last-child:hover {
    background: #1d4ed8 !important;
    color: white !important;
}

/* Hide hamburger menu on desktop */
@media (min-width: 769px) {
    #mobile-menu-btn {
        display: none;
    }
}

/* Hide hamburger menu on desktop */
@media (min-width: 769px) {
    #mobile-menu-btn {
        display: none;
    }
    
    .mobile-menu,
    #mobile-overlay {
        display: none !important;
    }
}