/*

TemplateMo 597 Neural Glass

https://templatemo.com/tm-597-neural-glass

*/


@charset "utf-8";
/* CSS Document */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 body {
     font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
     background: #000;
     color: #e0a3ff;
     overflow-x: hidden;
     min-height: 100vh;
     font-weight: 400;
     line-height: 1.6;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
}
/* Prevent any accidental horizontal overflow from fixed/transformed elements */
html {
    overflow-x: hidden;
}
/* Smooth anchor scroll and default offset for fixed header */
html { scroll-behavior: smooth; }

:root {
    --sticky-offset-desktop: 120px;
    --sticky-offset-mobile: 84px;
}

/* Ensure anchored elements account for fixed header/top bar */
*[id] { scroll-margin-top: var(--sticky-offset-desktop); }
html { scroll-padding-top: var(--sticky-offset-desktop); }

@media (max-width: 1000px) {
    *[id] { scroll-margin-top: var(--sticky-offset-mobile); }
    html { scroll-padding-top: var(--sticky-offset-mobile); }
}
/* Enhanced background colors - Purple/Pink/Green palette */
 .neural-background {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -2;
     background: radial-gradient(circle at 15% 85%, rgba(5, 0, 8, 0.7) 0%, transparent 50%), radial-gradient(circle at 85% 15%, rgba(139, 37, 99, 0.8) 0%, transparent 50%), radial-gradient(circle at 45% 60%, rgba(128, 0, 128, 0.6) 0%, transparent 50%), radial-gradient(circle at 70% 40%, rgba(34, 139, 34, 0.4) 0%, transparent 50%), linear-gradient(135deg, #0a0a0a 0%, #2d1b3d 50%, #000000 100%);
     animation: backgroundPulse 14s ease-in-out infinite;
}
 @keyframes backgroundPulse {
     0%, 100% {
         filter: brightness(0.9) saturate(1.4) hue-rotate(0deg);
    }
     33% {
         filter: brightness(1.1) saturate(1.7) hue-rotate(15deg);
    }
     66% {
         filter: brightness(1.0) saturate(1.5) hue-rotate(-10deg);
    }
}
/* Floating geometric shapes */
 .geometric-shapes {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
     overflow: hidden;
}
 .shape {
     position: absolute;
     border: 1px solid rgba(0, 255, 255, 0.3);
     animation: floatShape 20s linear infinite;
}
 .shape:nth-child(1) {
     width: 100px;
     height: 100px;
     left: 10%;
     animation-delay: 0s;
     border-color: rgba(255, 105, 180, 0.4);
}
 .shape:nth-child(2) {
     width: 60px;
     height: 60px;
     left: 70%;
     animation-delay: -5s;
     border-radius: 50%;
     border-color: rgba(147, 112, 219, 0.4);
}
 .shape:nth-child(3) {
     width: 80px;
     height: 80px;
     left: 30%;
     animation-delay: -10s;
     transform: rotate(45deg);
     border-color: rgba(224, 163, 255, 0.4);
}
 .shape:nth-child(4) {
     width: 120px;
     height: 120px;
     left: 50%;
     animation-delay: -15s;
     clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
     background: linear-gradient(45deg, rgba(255, 105, 180, 0.1), transparent);
}
 @keyframes floatShape {
     from {
         transform: translateY(100vh) rotate(0deg);
         opacity: 0;
    }
     10%, 90% {
         opacity: 1;
    }
     to {
         transform: translateY(-100px) rotate(360deg);
         opacity: 0;
    }
}
/* Neural network lines */
 .neural-lines {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
}
 .neural-line {
     position: absolute;
     background: linear-gradient(90deg, transparent, #00ffff, transparent);
     height: 1px;
     animation: neuralPulse 3s ease-in-out infinite;
}
 .neural-line:nth-child(1) {
     top: 20%;
     left: 0;
     width: 100%;
     background: linear-gradient(90deg, transparent, #e0a3ff, transparent);
     animation-delay: 0s;
}
 .neural-line:nth-child(2) {
     top: 60%;
     left: 0;
     width: 100%;
     background: linear-gradient(90deg, transparent, #ff69b4, transparent);
     animation-delay: -1s;
}
 .neural-line:nth-child(3) {
     top: 40%;
     left: 0;
     width: 100%;
     background: linear-gradient(90deg, transparent, #9370db, transparent);
     animation-delay: -2s;
}
 @keyframes neuralPulse {
     0%, 100% {
         opacity: 0.2;
         transform: scaleX(0.5);
    }
     50% {
         opacity: 1;
         transform: scaleX(1);
    }
}
/* Glassmorphism styles */
 .glass {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 20px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
 .glass-strong {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 25px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Top Info Bar */
.top-info-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(6, 46, 45, 0.95), rgba(2, 40, 39, 0.95));
    backdrop-filter: blur(10px);
    padding: 10px 0;
    z-index: 101;
    border-bottom: 1px solid rgba(15, 211, 195, 0.2);
    font-size: 0.85rem;
}

.top-info-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-info-left,
.top-info-right {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-item:hover {
    color: #0fd3c3;
}

.info-icon {
    font-size: 1rem;
    color: #0fd3c3;
}

/* Enhanced Header */
 header {
     position: fixed;
     top: 50px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 100;
     width: 96%;
     max-width: 1600px;
     padding: 15px 35px;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     background: rgba(10, 14, 26, 0.85);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(15, 211, 195, 0.2);
     border-radius: 20px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
 header.scrolled {
     background: rgba(10, 14, 26, 0.95);
     backdrop-filter: blur(30px);
     border-color: rgba(15, 211, 195, 0.3);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(15, 211, 195, 0.15);
}
 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
}
 .logo {
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 22px;
     font-weight: 700;
     background: linear-gradient(45deg, #0fd3c3, #066d67);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     text-decoration: none;
     transition: all 0.3s ease;
}
 .logo:hover {
     transform: scale(1.05);
}

.logo-text {
    letter-spacing: 0.5px;
}

 .logo-icon {
     width: 45px;
     height: 45px;
     filter: drop-shadow(0 0 8px rgba(15, 211, 195, 0.5));
}
 @keyframes logoGlow {
     0%, 100% {
         filter: drop-shadow(0 0 10px #e0a3ff);
    }
     50% {
         filter: drop-shadow(0 0 20px #ff69b4);
    }
}
 .nav-links {
     display: flex;
     list-style: none;
     gap: 5px;
     align-items: center;
}

.nav-links li {
    position: relative;
}

 .nav-links a,
 .nav-link {
     color: #ffffff;
     text-decoration: none;
     transition: all 0.3s ease;
     position: relative;
     padding: 10px 18px;
     border-radius: 10px;
     font-size: 0.95rem;
     font-weight: 500;
     letter-spacing: 0.3px;
     display: block;
}

.nav-links a:hover,
.nav-link:hover {
    color: #0fd3c3;
    background: rgba(15, 211, 195, 0.1);
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.65rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 211, 195, 0.2);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: rgba(15, 211, 195, 0.15);
    color: #0fd3c3;
    padding-left: 25px;
}

/* CTA Button in Nav */
.nav-cta-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #0fd3c3, #066d67);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 211, 195, 0.3);
    border: 1px solid rgba(15, 211, 195, 0.3);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 211, 195, 0.5);
    background: linear-gradient(135deg, #1ae4d3, #088078);
}
 .nav-links a.active {
     color: #e0a3ff;
     background: linear-gradient(135deg, rgba(224, 163, 255, 0.15), rgba(255, 105, 180, 0.1));
     box-shadow: 0 0 20px rgba(224, 163, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 15px rgba(224, 163, 255, 0.2);
     border: 1px solid rgba(224, 163, 255, 0.3);
     text-shadow: 0 0 10px rgba(224, 163, 255, 0.8);
     transform: translateY(-1px);
}
 .nav-links a.active::after {
     content: '';
     position: absolute;
     top: -2px;
     left: -2px;
     right: -2px;
     bottom: -2px;
     background: linear-gradient(45deg, #e0a3ff, #ff69b4, #9370db, #e0a3ff);
     background-size: 400% 400%;
     border-radius: 17px;
     z-index: -2;
     animation: borderGlow 3s ease infinite;
}
.nav-links a.external-link::after {
    content: " ↗";
    font-size: 0.8em;
    vertical-align: super;
}
 @keyframes borderGlow {
     0% {
         background-position: 0% 50%;
    }
     50% {
         background-position: 100% 50%;
    }
     100% {
         background-position: 0% 50%;
    }
}
/* Mobile Menu */
 .mobile-menu-toggle {
     display: none;
     flex-direction: column;
     cursor: pointer;
     padding: 8px;
     border-radius: 8px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     transition: all 0.3s ease;
}
 .mobile-menu-toggle:hover {
     background: rgba(15, 211, 195, 0.15);
     box-shadow: 0 0 15px rgba(15, 211, 195, 0.3);
}

 .hamburger-line {
     width: 25px;
     height: 3px;
     background: linear-gradient(45deg, #0fd3c3, #066d67);
     margin: 3px 0;
     border-radius: 2px;
     transition: all 0.3s ease;
}
 .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
     transform: rotate(45deg) translate(9px, 9px);
}
 .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
     opacity: 0;
}
 .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -6px);
}
 .mobile-nav {
     position: fixed;
     top: 90px;
     left: 50%;
     transform: translateX(-50%);
     width: 90%;
     max-width: 400px;
     background: rgba(0, 0, 0, 0.95);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 20px;
     padding: 30px;
     display: none;
     flex-direction: column;
     gap: 20px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}
 .mobile-nav.active {
     display: flex;
     animation: slideDown 0.3s ease-out;
}
 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateX(-50%) translateY(-20px);
    }
     to {
         opacity: 1;
         transform: translateX(-50%) translateY(0);
    }
}
 .mobile-nav a {
     color: #ffffff;
     text-decoration: none;
     padding: 15px 20px;
     border-radius: 12px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     text-align: center;
     font-size: 1.05rem;
     transition: all 0.3s ease;
     font-weight: 500;
}
 .mobile-nav a:hover {
     background: rgba(15, 211, 195, 0.15);
     color: #0fd3c3;
     box-shadow: 0 0 20px rgba(15, 211, 195, 0.3);
     transform: translateY(-2px);
}

.mobile-cta {
    background: linear-gradient(135deg, #0fd3c3, #066d67) !important;
    border: 1px solid rgba(15, 211, 195, 0.3) !important;
    font-weight: 600 !important;
    margin-top: 10px;
}

.mobile-cta:hover {
    background: linear-gradient(135deg, #1ae4d3, #088078) !important;
}
/* Section 1: Modern Redesigned Hero */
 .hero {
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     position: relative;
     overflow: hidden;
}
 .hero::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 60%;
     height: 60%;
     background: radial-gradient(circle, rgba(224, 163, 255, 0.04) 0%, transparent 70%);
     transform: translate(-50%, -50%);
     animation: heroGlow 10s ease-in-out infinite;
     z-index: -1;
}
 @keyframes heroGlow {
     0%, 100% {
         transform: translate(-50%, -50%) scale(1) rotate(0deg);
         opacity: 0.6;
    }
     50% {
         transform: translate(-50%, -50%) scale(1.3) rotate(180deg);
         opacity: 1;
    }
}
 .hero-content {
     max-width: 1400px;
     padding: 80px 40px;
	 margin-top: 150px;
     animation: heroAppear 2.5s ease-out;
     position: relative;
     background: none;
     backdrop-filter: none;
     border: none;
     box-shadow: none;
     border-radius: 0;
}
 @keyframes heroAppear {
     from {
         opacity: 0;
         transform: translateY(60px) scale(0.96);
    }
     to {
         opacity: 1;
         transform: translateY(0) scale(1);
    }
}
 .hero-subtitle {
     font-size: 0.9rem;
     color: #e0a3ff;
     margin-bottom: 25px;
     opacity: 0;
     animation: slideInFromLeft 1.2s ease 0.3s forwards;
     text-transform: uppercase;
     letter-spacing: 0.4em;
     position: relative;
     display: inline-block;
     font-weight: 300;
}
 .hero-subtitle::before, .hero-subtitle::after {
     content: '';
     position: absolute;
     top: 50%;
     width: 40px;
     height: 1px;
     background: linear-gradient(90deg, transparent, #e0a3ff, transparent);
     animation: linePulse 3s ease infinite;
}
 .hero-subtitle::before {
     left: -60px;
}
 .hero-subtitle::after {
     right: -60px;
}
 @keyframes linePulse {
     0%, 100% {
         opacity: 0.4;
         transform: scaleX(0.8);
    }
     50% {
         opacity: 1;
         transform: scaleX(1.2);
    }
}
 @keyframes slideInFromLeft {
     from {
         opacity: 0;
         transform: translateX(-40px);
    }
     to {
         opacity: 1;
         transform: translateX(0);
    }
}
 .hero h1 {
     font-size: clamp(2.2rem, 6vw, 4rem);
     margin-bottom: 30px;
     background: linear-gradient(135deg, #e0a3ff 0%, #ff69b4 30%, #9370db 60%, #e0a3ff 100%);
     background-size: 300% 300%;
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     animation: modernGradient 8s ease infinite;
     line-height: 1.1;
     letter-spacing: -0.02em;
     font-weight: 800;
     text-shadow: none;
     opacity: 0;
     animation: slideInFromRight 1.2s ease 0.6s forwards, modernGradient 8s ease 0.6s infinite;
}
 @keyframes modernGradient {
     0% {
         background-position: 0% 50%;
    }
     50% {
         background-position: 100% 50%;
    }
     100% {
         background-position: 0% 50%;
    }
}
 @keyframes slideInFromRight {
     from {
         opacity: 0;
         transform: translateX(40px);
    }
     to {
         opacity: 1;
         transform: translateX(0);
    }
}
 .hero-description {
     max-width: 700px;
     margin: 40px auto 50px;
     opacity: 0;
     animation: fadeInScale 1.2s ease 0.9s forwards;
     text-align: center;
}
 .hero-description p {
     font-size: 1.2rem;
     color: #d1d1d1;
     line-height: 1.7;
     margin-bottom: 0;
     font-weight: 300;
}
 @keyframes fadeInScale {
     from {
         opacity: 0;
         transform: scale(0.95);
    }
     to {
         opacity: 1;
         transform: scale(1);
    }
}
 .hero-stats {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
     gap: 40px;
     margin: 60px auto 50px;
     max-width: 640px;
     opacity: 0;
     animation: slideUpStagger 1.2s ease 1.2s forwards;
}
 .hero-stat {
     text-align: center;
     position: relative;
     padding: 20px;
     background: linear-gradient(135deg, rgba(224, 163, 255, 0.06), rgba(255, 105, 180, 0.04));
     border: 1px solid rgba(224, 163, 255, 0.15);
     border-radius: 12px;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     backdrop-filter: blur(10px);
}
 .hero-stat:hover {
     transform: translateY(-8px) scale(1.05);
     border-color: rgba(255, 105, 180, 0.3);
     box-shadow: 0 20px 40px rgba(224, 163, 255, 0.1);
}
 .hero-stat-number {
     font-size: 1.8rem;
     font-weight: 700;
     color: #e0a3ff;
     display: block;
     text-shadow: 0 0 15px rgba(224, 163, 255, 0.4);
     margin-bottom: 8px;
}
 .hero-stat-label {
     font-size: 0.8rem;
     color: #999;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     font-weight: 400;
}
 @keyframes slideUpStagger {
     from {
         opacity: 0;
         transform: translateY(30px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .cta-buttons {
     display: flex;
     gap: 20px;
     justify-content: center;
     flex-wrap: wrap;
     opacity: 0;
     animation: buttonSlideUp 1.2s ease 1.5s forwards;
}
 @keyframes buttonSlideUp {
     from {
         opacity: 0;
         transform: translateY(20px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .cta-button {
     display: inline-block;
     padding: 16px 40px;
     background: linear-gradient(135deg, #e0a3ff, #ff69b4);
     color: #000;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 600;
     font-size: 0.95rem;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
     text-transform: uppercase;
     letter-spacing: 0.03em;
     box-shadow: 0 4px 15px rgba(224, 163, 255, 0.2);
}
 .cta-button.secondary {
     background: transparent;
     border: 2px solid #e0a3ff;
     color: #e0a3ff;
     box-shadow: 0 4px 15px rgba(224, 163, 255, 0.1);
}
 .cta-button:hover {
     transform: translateY(-4px) scale(1.02);
     box-shadow: 0 12px 30px rgba(224, 163, 255, 0.3);
}
 .cta-button.secondary:hover {
     background: rgba(224, 163, 255, 0.08);
     box-shadow: 0 12px 30px rgba(224, 163, 255, 0.2);
}
/* Section 2: Diagonal Features */
 .features {
     padding: 150px 0;
     position: relative;
     overflow: hidden;
}
 .features::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: conic-gradient(from 0deg, transparent, rgba(0, 255, 255, 0.1), transparent);
     animation: rotate 20s linear infinite;
     z-index: -1;
}
 @keyframes rotate {
     from {
         transform: rotate(0deg);
    }
     to {
         transform: rotate(360deg);
    }
}
 .section-title {
     text-align: center;
     font-size: clamp(2.5rem, 6vw, 4rem);
     margin-bottom: 80px;
     color: #00ffff;
     position: relative;
}
 .section-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 3px;
     background: linear-gradient(90deg, #00ffff, #ff0080);
     border-radius: 2px;
}
 .features-container {
     max-width: 1600px;
     margin: 0 auto;
     padding: 0 20px;
}
/* Services grid and card improvements */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.service-item {
    padding: 22px;
    border-radius: 16px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service-item h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: #eafffb;
}
.service-item p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    margin: 0;
    word-wrap: break-word;
    hyphens: auto;
}

/* Reduce columns on smaller screens */
@media (max-width: 1000px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    /* Prevent any accidental horizontal overflow on small screens */
    body { overflow-x: hidden; }
    .service-grid { grid-template-columns: 1fr; }
    .service-item { padding: 16px; }
}

/* Extra-tight rules for very small devices to prevent any horizontal overflow */
@media (max-width: 420px) {
    header {
        left: 6px;
        right: 6px;
        width: calc(100% - 12px);
        padding: 8px 10px;
    }
    .logo { font-size: 16px; }
    .logo-icon { width: 26px; height: 26px; }
    .mobile-nav {
        top: 66px;
        left: 6px;
        right: 6px;
        width: calc(100% - 12px);
        padding: 10px;
        max-height: calc(100vh - 96px);
    }
    .mobile-nav a {
        padding: 10px 12px;
        font-size: 1rem;
        white-space: normal; /* allow wrapping */
        min-width: 0;
    }
    .nav-links a { min-width: 0; }
    .hero-content { padding: 60px 18px; }
}

@media (max-width: 360px) {
    header { padding: 6px 8px; top: 8px; }
    .logo { font-size: 14px; }
    .logo-icon { width: 24px; height: 24px; }
    .mobile-nav { top: 58px; padding: 8px; }
    .mobile-nav a { padding: 8px 10px; font-size: 0.95rem; }
    .cta-button, .submit-btn { width: 94%; }
}

/* Icon + content layout inside service cards */
.service-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.service-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: linear-gradient(135deg, rgba(15,211,195,0.08), rgba(6,109,103,0.04));
    border: 1px solid rgba(15,211,195,0.06);
    box-shadow: 0 6px 18px rgba(6,109,103,0.06);
}
.service-body { flex: 1; }

@media (max-width: 700px) {
    .service-row { flex-direction: column; gap: 8px; }
    .service-icon { width: 44px; height: 44px; font-size: 1.4rem; }
}

/* Hosting cards styles */
.hosting-intro {
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}
.hosting-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    align-items: stretch;
}
.hosting-card {
    padding: 22px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
}
.hosting-card.recommended {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(6,109,103,0.12);
    border: 1px solid rgba(15,211,195,0.12);
}
.hosting-badge {
    font-weight: 700;
    color: #eafffb;
    background: rgba(15,211,195,0.06);
    padding: 8px 12px;
    border-radius: 12px;
    display: inline-block;
}
.hosting-price {
    font-size: 2rem;
    font-weight: 800;
    color: #eafffb;
}
.hosting-price .billing { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.75); }
.hosting-list { list-style: none; padding: 0; margin: 0; color: rgba(255,255,255,0.85); }
.hosting-list li { padding: 6px 0; border-bottom: 1px dashed rgba(255,255,255,0.03); }
.hosting-cta { margin-top: 10px; text-align: center; }

@media (max-width: 700px) {
    .hosting-cards { grid-template-columns: 1fr; }
    .hosting-card { max-width: none; }
}

/* Bundles horizontal scroll container */
.bundles-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem;
    padding: 0 1rem 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(15,211,195,0.3) transparent;
}

.bundles-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.bundles-scroll-container::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
}

.bundles-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(15,211,195,0.3);
    border-radius: 10px;
}

.bundles-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(15,211,195,0.5);
}

.bundles-scroll {
    display: flex;
    gap: 20px;
    padding-bottom: 8px;
}

.bundles-scroll .hosting-card {
    flex: 0 0 280px;
    max-width: 280px;
}

@media (min-width: 701px) {
    .bundles-scroll .hosting-card {
        flex: 0 0 320px;
        max-width: 320px;
    }
}

/* Pricing toggle styles */
.pricing-controls { display:flex; justify-content:center; margin-bottom:16px; }
.pricing-toggle { display:inline-flex; background: rgba(255,255,255,0.03); border-radius: 12px; padding:6px; }
.period-btn { background: transparent; border: none; color: rgba(255,255,255,0.8); padding: 8px 14px; border-radius: 8px; cursor: pointer; font-weight:600; }
.period-btn.active, .period-btn:focus { background: linear-gradient(90deg, var(--accent-1), var(--accent-2)); color: #002; }
.toggle-note { font-weight:400; font-size:0.8rem; margin-left:6px; color: rgba(255,255,255,0.8); }

/* Modal styles */
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.65); display: none; align-items: center; justify-content: center; z-index: 1000; }
.modal { background: linear-gradient(180deg, rgba(2,40,39,0.98), rgba(6,46,45,0.95)); padding: 22px; border-radius: 14px; width: 92%; max-width: 520px; box-shadow: 0 30px 80px rgba(2,40,39,0.8); transform: translateY(-12px); opacity: 0; transition: all 260ms ease; border: 1px solid rgba(15,211,195,0.08); }
.modal-backdrop.show .modal { transform: translateY(0); opacity: 1; }
.modal h3 { margin-top: 0; color: #eafffb; font-size: 1.25rem; }
.modal-summary { display:flex; justify-content:space-between; align-items:center; padding:10px 12px; margin-bottom:12px; background: rgba(15,211,195,0.03); border-radius:10px; border:1px solid rgba(15,211,195,0.03); color:#eafffb; }
.modal-summary .modal-price { font-weight:800; font-size:1.4rem; }
.modal .form-row { display:flex; gap:8px; }
.modal input, .modal textarea { width:100%; padding:10px; border-radius:10px; border:1px solid rgba(255,255,255,0.04); background: rgba(0,0,0,0.45); color: #eafffb; }
.modal .field-error { color: #ffb4b4; font-size:0.9rem; margin:6px 0 0 2px; min-height:1.1em; }
.modal .modal-actions { display:flex; gap:8px; justify-content:flex-end; margin-top:12px; }
.modal .close-modal { background: transparent; border: 1px solid rgba(15,211,195,0.08); color:#eafffb; padding:8px 12px; border-radius:10px; cursor:pointer; }
.modal .submit-order { background: linear-gradient(90deg, #0fd3c3, #066d67); border: none; color: #002; padding:8px 12px; border-radius:10px; cursor:pointer; font-weight:700; }
.modal .submit-order:active { transform: translateY(1px); }
.modal.show { display:block; }
.modal-backdrop.show { display:flex; }

/* Price change animation */
.price-flash { display:inline-block; transition: transform 260ms ease, opacity 260ms ease; }
.price-flash.enter { transform: translateY(-6px); opacity: 0; }
.price-flash.enter-active { transform: translateY(0); opacity: 1; }
.price-flash.leave { transform: translateY(0); opacity: 1; }
.price-flash.leave-active { transform: translateY(6px); opacity: 0; }



 .diagonal-grid {
     display: flex;
     flex-direction: column;
     gap: 60px;
}
 .feature-row {
     display: flex;
     align-items: center;
     gap: 80px;
     position: relative;
}
 .feature-row:nth-child(even) {
     flex-direction: row-reverse;
}
 .feature-content {
     flex: 1;
     padding: 50px;
     transform: skew(-5deg);
     transition: all 0.4s ease;
}
 .feature-content:hover {
     transform: skew(-5deg) translateY(-10px);
     box-shadow: 0 30px 60px rgba(0, 255, 255, 0.2);
}
 .feature-visual {
     flex: 1;
     height: 300px;
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     transition: all 0.4s ease;
}
 .feature-visual:hover {
     transform: scale(1.05);
     box-shadow: 0 20px 40px rgba(224, 163, 255, 0.3);
}
 .feature-visual::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(45deg, rgba(224, 163, 255, 0.1), rgba(255, 105, 180, 0.1));
     z-index: 1;
     backdrop-filter: blur(1px);
     transition: all 0.4s ease;
}
 .feature-visual:hover::before {
     background: linear-gradient(45deg, rgba(224, 163, 255, 0.2), rgba(255, 105, 180, 0.2));
}
 .feature-row:nth-child(1) .feature-visual {
     background-image: url('images/templatemo-neural-01.jpg');
}
 .feature-row:nth-child(2) .feature-visual {
     background-image: url('images/templatemo-neural-02.jpg');
}
 .feature-row:nth-child(3) .feature-visual {
     background-image: url('images/templatemo-neural-03.jpg');
}
 .feature-icon {
     font-size: 4rem;
     margin-bottom: 25px;
     background: linear-gradient(45deg, #ff0080, #8000ff);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
}
 .feature-content h3 {
     font-size: 2.2rem;
     margin-bottom: 20px;
     color: #ffffff;
}
 .feature-content p {
     font-size: 1.1rem;
     color: #cccccc;
     line-height: 1.8;
}
/* Section 3: Enhanced Hexagonal Showcase */
 .showcase {
     padding: 150px 0;
     position: relative;
}
 .hexagon-container {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     gap: 40px;
     max-width: 1600px;
     margin: 0 auto;
     padding: 0 20px;
}
 .hexagon {
     width: 220px;
     height: 290px;
     position: relative;
     margin: 20px;
     transition: all 0.4s ease;
}
 .hexagon:hover {
     transform: scale(1.1);
}
 .hexagon-inner {
     width: 100%;
     height: 100%;
     position: relative;
     transform: rotate(30deg);
     border-radius: 25px;
     padding: 50px 25px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     overflow: hidden;
     transition: all 0.4s ease;
}
 .hexagon:hover .hexagon-inner {
     transform: rotate(0deg);
     border-radius: 15px;
}
 .hexagon:nth-child(odd) .hexagon-inner {
     background: linear-gradient(135deg, rgba(0, 255, 255, 0.12), rgba(255, 0, 128, 0.12));
     border: 1px solid rgba(0, 255, 255, 0.3);
}
 .hexagon:nth-child(even) .hexagon-inner {
     background: linear-gradient(135deg, rgba(255, 0, 128, 0.12), rgba(128, 0, 255, 0.12));
     border: 1px solid rgba(255, 0, 128, 0.3);
}
 .hexagon-icon {
     font-size: 2.8rem;
     margin-bottom: 20px;
     transform: rotate(-30deg);
     filter: drop-shadow(0 0 10px currentColor);
     transition: all 0.4s ease;
}
 .hexagon:hover .hexagon-icon {
     transform: rotate(0deg);
}
 .hexagon h4 {
     font-size: 1.3rem;
     color: #ffffff;
     transform: rotate(-30deg);
     margin-bottom: 15px;
     font-weight: bold;
     text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
     transition: all 0.4s ease;
}
 .hexagon:hover h4 {
     transform: rotate(0deg);
}
 .hexagon p {
     font-size: 0.95rem;
     color: #e0e0e0;
     transform: rotate(-30deg);
     line-height: 1.5;
     max-width: 140px;
     word-wrap: break-word;
     hyphens: auto;
     transition: all 0.4s ease;
}
 .hexagon:hover p {
     transform: rotate(0deg);
}

/* Client Cards Hover Effects */
.showcase a.glass:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(15,211,195,0.25);
    border-color: rgba(15,211,195,0.4);
}

.featured-clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto 3rem;
    max-width: 1200px;
    align-items: start;
    grid-auto-rows: 1fr;
    justify-content: center;
}

/* Responsive: prefer 3 columns on wide screens, 2 on medium, 1 on narrow */
@media (min-width: 1200px) {
    .featured-clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 760px) and (max-width: 1199px) {
    .featured-clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 759px) {
    .featured-clients-grid {
        grid-template-columns: 1fr;
    }
}

.client-card {
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Prevent children from overflowing visually */
.client-card * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Make the 'Read Case Study' link stick to the bottom of the card */
.client-card-link {
    margin-top: auto;
}

/* Ensure site link doesn't wrap out of the header area */
.client-card-site a {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.client-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.client-card-icon {
    font-size: 3rem;
    line-height: 1;
    flex-shrink: 0;
}

.client-card h3 {
    margin: 0;
    font-size: 1.4rem;
}

.client-card-meta {
    margin: 0.25rem 0 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

.client-card .client-card-site {
    margin: 0.4rem 0 0;
}

.client-card-site a {
    color: #0fd3c3;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.client-card-description {
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
}

.client-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.client-card-tags span {
    background: rgba(15,211,195,0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #0fd3c3;
}

.client-card-link {
    color: #0fd3c3;
    font-weight: 600;
    margin-top: auto;
}

/* Section 4: Enhanced Timeline */
 .timeline {
     padding: 100px 0;
     position: relative;
}
 .timeline-container {
     max-width: 1400px;
     margin: 0 auto;
     position: relative;
     padding: 0 20px;
}
 .timeline-line {
     position: absolute;
     left: 50%;
     top: 0;
     bottom: 0;
     width: 4px;
     background: linear-gradient(180deg, #e0a3ff, #ff69b4, #9370db);
     transform: translateX(-50%);
     border-radius: 2px;
     box-shadow: 0 0 20px rgba(224, 163, 255, 0.3);
}
 .timeline-item {
     display: flex;
     justify-content: flex-end;
     padding-right: 60px;
     position: relative;
     margin-bottom: 60px;
}
 .timeline-item:nth-child(even) {
     justify-content: flex-start;
     padding-left: 60px;
     padding-right: 0;
}
 .timeline-content {
     max-width: 450px;
     padding: 50px 40px;
     position: relative;
     transform: perspective(1000px) rotateY(-5deg);
     transition: all 0.4s ease;
     background: rgba(224, 163, 255, 0.08);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(224, 163, 255, 0.15);
     border-radius: 25px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
 .timeline-item:nth-child(even) .timeline-content {
     transform: perspective(1000px) rotateY(5deg);
}
 .timeline-content:hover {
     transform: perspective(1000px) rotateY(0deg) translateZ(20px);
     box-shadow: 0 25px 60px rgba(224, 163, 255, 0.2), 0 0 0 1px rgba(224, 163, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
     border-color: rgba(224, 163, 255, 0.3);
}
 .timeline-dot {
     position: absolute;
     left: 50%;
     top: 60px;
     transform: translateX(-50%);
     width: 24px;
     height: 24px;
     background: linear-gradient(135deg, #ff69b4, #e0a3ff);
     border-radius: 50%;
     box-shadow: 0 0 25px rgba(255, 105, 180, 0.6), 0 4px 15px rgba(0, 0, 0, 0.3);
     z-index: 1;
     border: 3px solid rgba(255, 255, 255, 0.2);
}
 .timeline-year {
     font-size: 1.8rem;
     color: #e0a3ff;
     margin-bottom: 20px;
     font-weight: bold;
     text-shadow: 0 0 15px rgba(224, 163, 255, 0.4);
}
 .timeline-content h4 {
     font-size: 1.5rem;
     color: #ffffff;
     margin-bottom: 20px;
     font-weight: 600;
}
 .timeline-content p {
     color: #d1d1d1;
     line-height: 1.7;
     font-size: 1rem;
}
/* Section 5: Contact */
 .contact {
     padding: 150px 0;
     position: relative;
}
 .contact-container {
     max-width: 1600px;
     margin: 0 auto;
     padding: 0 20px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
}
 .contact-info {
     padding: 60px 40px;
     position: relative;
}
 .contact-info::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(0, 255, 255, 0.1), transparent 70%);
     animation: pulse 4s ease-in-out infinite;
     z-index: -1;
}
 @keyframes pulse {
     0%, 100% {
         transform: scale(1);
         opacity: 0.5;
    }
     50% {
         transform: scale(1.1);
         opacity: 1;
    }
}
 .contact-form {
     padding: 50px 40px;
}
 .form-group {
     margin-bottom: 30px;
     position: relative;
}
 .form-group input, .form-group textarea {
     width: 100%;
     padding: 15px 20px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 10px;
     color: #ffffff;
     font-family: inherit;
     font-size: 1rem;
     backdrop-filter: blur(10px);
     transition: all 0.3s ease;
}
 .form-group input:focus, .form-group textarea:focus {
     outline: none;
     border-color: #00ffff;
     box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
     background: rgba(255, 255, 255, 0.1);
}
 .form-group input::placeholder, .form-group textarea::placeholder {
     color: #888;
}
 .submit-btn {
     width: 100%;
     padding: 18px;
     background: linear-gradient(45deg, #00ffff, #ff0080);
     border: none;
     border-radius: 10px;
     color: #000;
     font-weight: bold;
     font-size: 1.1rem;
     cursor: pointer;
     transition: all 0.3s ease;
}
 .submit-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}
 .contact-info h3 {
     font-size: 2.5rem;
     color: #00ffff;
     margin-bottom: 30px;
}
 .contact-info p {
     font-size: 1.2rem;
     color: #cccccc;
     line-height: 1.7;
     margin-bottom: 30px;
}
 .social-links {
     display: flex;
     gap: 20px;
     margin-top: 40px;
}
 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 60px;
     height: 60px;
     border-radius: 15px;
     color: #00ffff;
     text-decoration: none;
     font-size: 1.5rem;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
}
 .social-links a::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
     transition: left 0.5s ease;
}
 .social-links a:hover::before {
     left: 100%;
}
 .social-links a:hover {
     transform: translateY(-5px) scale(1.1);
     box-shadow: 0 10px 25px rgba(0, 255, 255, 0.4);
}
/* Footer */
 footer {
     text-align: center;
     padding: 60px 20px 40px;
     border-top: 1px solid rgba(224, 163, 255, 0.2);
     background: rgba(0, 0, 0, 0.5);
     backdrop-filter: blur(20px);
}
 .footer-content {
     max-width: 1600px;
     margin: 0 auto;
}
 .footer-links {
     display: flex;
     justify-content: center;
     gap: 30px;
     margin-bottom: 30px;
     flex-wrap: wrap;
}
 .footer-links a {
     color: #cccccc;
     text-decoration: none;
     font-size: 0.9rem;
     transition: all 0.3s ease;
     position: relative;
     padding: 8px 0;
}
 .footer-links a:hover {
     color: #e0a3ff;
     text-shadow: 0 0 10px rgba(224, 163, 255, 0.5);
}
 .footer-links a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 1px;
     background: linear-gradient(90deg, #e0a3ff, #ff69b4);
     transition: width 0.3s ease;
}
 .footer-links a:hover::after {
     width: 100%;
}
 .footer-copyright {
     color: #888;
     font-size: 0.9rem;
     margin-bottom: 15px;
}
 .footer-design {
     color: #666;
     font-size: 0.85rem;
     margin-top: 20px;
}
 .footer-design a {
     color: #e0a3ff;
     text-decoration: none;
     transition: all 0.3s ease;
}
 .footer-design a:hover {
     color: #ff69b4;
     text-shadow: 0 0 8px rgba(255, 105, 180, 0.5);
}
/* Mobile Responsiveness */
 @media (max-width: 1024px) {
	 .feature-row {
        flex-direction: column;
        gap: 40px;
		min-height: 720px;
    }

    .feature-row:nth-child(even) {
        left: 0; /* anchor to left on small screens */
        transform: none; /* remove centering transform to avoid misalignment */
        max-width: 100%;
        flex-direction: column;
    }
	.feature-content {
    	flex: 0;
	}
    .feature-visual {
        height: 250px; /* Adjust the height for mobile view */
        width: 100%;
    }
     .contact-container {
         grid-template-columns: 1fr;
         gap: 40px;
    }

     .timeline-line {
         left: 30px;
    }
     .timeline-item, .timeline-item:nth-child(even) {
         justify-content: flex-start;
         padding-left: 80px;
         padding-right: 0;
    }
     .timeline-dot {
         left: 30px;
    }
     .timeline-content {
         max-width: 100%;
    }
}

@media (max-width: 1000px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* tighten nav layout and logo so it fits comfortably */
    nav { align-items: center; gap: 8px; flex-wrap: wrap; }
    /* let the logo shrink if needed and avoid flex overflow */
    .logo { font-size: 18px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 58%; display: inline-flex; align-items: center; gap:8px; min-width: 0; }
    .logo-icon { width: 30px; height: 30px; }
    
    /* Hide top info bar on small screens */
    .top-info-bar {
        display: none;
    }
    
    header {
        top: 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-cta-btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}
 @media (max-width: 768px) {
     .hero-content {
         padding: 40px 20px;
         margin-top: 100px;
    }
     .hero h1 {
         font-size: clamp(1.8rem, 8vw, 3rem);
    }
     .hero-description p {
         font-size: 1.1rem;
    }
     .hero-stats {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
         margin: 40px auto 35px;
    }
     .hero-stat {
         padding: 15px;
    }
     .hero-stat-number {
         font-size: 1.5rem;
    }
     .hero-subtitle::before, .hero-subtitle::after {
         width: 25px;
    }
     .hero-subtitle::before {
         left: -35px;
    }
     .hero-subtitle::after {
         right: -35px;
    }
     .cta-buttons {
         flex-direction: column;
         align-items: center;
         gap: 15px;
    }
     .cta-button {
         width: 100%;
         max-width: 280px;
         text-align: center;
    }
    /* Update the existing hexagon styles for mobile */
    .hexagon {
        width: 280px;  /* Increased from 180px */
        height: 320px; /* Increased from 200px */
        margin: 30px auto; /* Center and add more spacing */
    }
    
    .hexagon-inner {
        padding: 60px 35px; /* More padding for larger content area */
    }
    
    .hexagon-icon {
        font-size: 3.5rem; /* Larger icon */
        margin-bottom: 25px;
    }
    
    .hexagon h4 {
        font-size: 1.6rem; /* Larger heading */
        margin-bottom: 20px;
    }
    
    .hexagon p {
        font-size: 1.1rem; /* Larger text */
        max-width: 200px; /* More width for text */
        line-height: 1.6;
    }
    
    .hexagon-container {
        gap: 20px; /* Reduce gap since boxes are larger */
    }
     .section-title {
         margin-bottom: 60px;
    }
     .features, .showcase, .timeline, .contact {
         padding: 80px 0;
    }
     .timeline {
         padding: 60px 0;
    }
     .footer-links {
         gap: 20px;
         margin-bottom: 25px;
    }
     .footer-links a {
         font-size: 0.85rem;
    }
}
/* Enhanced scrollbar */
 ::-webkit-scrollbar {
     width: 12px;
}
 ::-webkit-scrollbar-track {
     background: rgba(0, 0, 0, 0.8);
     border-radius: 6px;
}
 ::-webkit-scrollbar-thumb {
     background: linear-gradient(45deg, #00ffff, #ff0080);
     border-radius: 6px;
     box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
 ::-webkit-scrollbar-thumb:hover {
     background: linear-gradient(45deg, #ff0080, #8000ff);
     box-shadow: 0 0 15px rgba(255, 0, 128, 0.7);
}

/* Dark / Teal theme overrides */
/* These overrides shift the original purple/pink accents to teal/dark-blue shades */
:root {
    --accent-1: #0fd3c3; /* bright teal */
    --accent-2: #066d67; /* deep teal */
    --accent-3: #004e4a; /* darkest teal */
    --accent-glow: rgba(15, 211, 195, 0.18);
}

/* Logo glow */
.logo { animation: logoGlow 3s ease-in-out infinite; }
@keyframes logoGlow {
    0%,100% { filter: drop-shadow(0 0 10px var(--accent-1)); }
    50% { filter: drop-shadow(0 0 20px var(--accent-2)); }
}

/* Nav active / border glow */
.nav-links a.active {
    color: #cffbf6;
    background: linear-gradient(135deg, rgba(6,109,103,0.12), rgba(15,211,195,0.08));
    box-shadow: 0 0 20px rgba(6,109,103,0.18), inset 0 1px 0 rgba(255,255,255,0.04);
    border: 1px solid rgba(6,109,103,0.12);
}
.nav-links a.active::after {
    background: linear-gradient(45deg, var(--accent-1), var(--accent-2), var(--accent-3));
}

/* Shapes & lines accent colors */
.shape:nth-child(1) { border-color: rgba(15,211,195,0.32); }
.shape:nth-child(2) { border-color: rgba(6,109,103,0.28); }
.shape:nth-child(3) { border-color: rgba(0,78,74,0.26); }
.shape:nth-child(4) { background: linear-gradient(45deg, rgba(15,211,195,0.06), transparent); }
.neural-line:nth-child(1) { background: linear-gradient(90deg, transparent, var(--accent-1), transparent); }
.neural-line:nth-child(2) { background: linear-gradient(90deg, transparent, var(--accent-2), transparent); }
.neural-line:nth-child(3) { background: linear-gradient(90deg, transparent, var(--accent-3), transparent); }

/* Header accents */
header { background: rgba(2,46,45,0.6); border-color: rgba(6,109,103,0.06); }
header.scrolled { background: rgba(2,46,45,0.72); box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(6,109,103,0.06); }

/* CTA overrides to use teal palette */
.cta-button { background: linear-gradient(90deg, var(--accent-1), var(--accent-2)); border: 1px solid rgba(6,109,103,0.12); }
.cta-button.secondary { background: linear-gradient(90deg, var(--accent-2), var(--accent-3)); }

/* Mobile overrides for new palette */
@media (max-width: 700px) {
    .mobile-nav { border: 1px solid rgba(6,109,103,0.08); }
    .mobile-nav a:hover { box-shadow: 0 0 20px rgba(15,211,195,0.14); }
    .submit-btn { background: linear-gradient(90deg, #00bfae, #0fd3c3); color: #022; }
}

/* Hero stats styles */
.hero-stats {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    margin: 28px 0 8px 0;
    flex-wrap: wrap;
}
.hero-stat {
    background: linear-gradient(135deg, rgba(15,211,195,0.06), rgba(6,109,103,0.04));
    border: 1px solid rgba(15,211,195,0.08);
    padding: 14px 18px;
    border-radius: 12px;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(6,109,103,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hero-stat:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(6,109,103,0.12); }
.hero-stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #eafffb;
    text-shadow: 0 0 10px rgba(15,211,195,0.14);
}
.hero-stat-label {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

@media (max-width: 700px) {
    .hero-stats { gap: 12px; margin: 18px 0; }
    .hero-stat { padding: 12px 14px; min-width: 140px; }
    .hero-stat-number { font-size: 1.35rem; }
}

/* Service card stat badges */
.service-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin: 8px 0 10px 0;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(15,211,195,0.04);
    border: 1px solid rgba(15,211,195,0.06);
}
.service-stat .stat-number {
    font-weight: 700;
    color: #eafffb;
    font-size: 1rem;
}
.service-stat small {
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
}

@media (max-width: 700px) {
    .service-stat { padding: 8px 10px; }
    .service-stat .stat-number { font-size: 0.95rem; }
}




/* Mobile CTA & Accessibility Overrides */
@media (max-width: 700px) {
    /* Ensure header is compact and nav toggle visible */
    header {
        top: 12px;
        padding: 10px 12px;
        /* anchor to left/right on small screens to avoid translate centering overflow */
        left: 8px;
        right: 8px;
        transform: none;
        width: calc(100% - 16px);
        max-width: none;
        box-sizing: border-box;
    }
    .nav-links {
        display: none; /* hide desktop nav on small screens */
    }
    .mobile-menu-toggle {
        display: flex;
    }

    /* Reduce logo size on small screens to prevent header stretching */
    .logo {
        font-size: 18px;
        gap: 8px;
    }
    .logo-icon {
        width: 30px;
        height: 30px;
    }

    /* Mobile nav tweaks: ensure it fits the viewport and doesn't cause horizontal scroll */
    .mobile-nav {
        top: 70px;
        padding: 14px 12px;
        /* stretch to full width with small side margin, no centering transform on small screens */
        left: 8px;
        right: 8px;
        transform: none;
        width: calc(100% - 16px);
        max-width: none;
        margin: 0 8px;
        background: linear-gradient(180deg, rgba(14,14,14,0.96), rgba(10,10,10,0.95));
        border: 1px solid rgba(224,163,255,0.12);
        box-sizing: border-box;
        overflow-x: hidden; /* prevent horizontal scroll */
        max-height: calc(100vh - 110px); /* keep it inside the viewport */
        overflow-y: auto; /* allow vertical scroll if needed */
        -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
    }
    .mobile-nav a {
        padding: 16px 18px;
        font-size: 1.05rem;
        border-radius: 14px;
    }

    /* CTA buttons: full width, high contrast, large tap targets */
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-top: 18px;
    }
    .cta-button {
        display: inline-block;
        width: 92%;
        max-width: 420px;
        padding: 14px 18px;
        font-size: 1.05rem;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(224,163,255,0.12);
        text-decoration: none;
        text-align: center;
    }
    .cta-button { /* primary */
        background: linear-gradient(90deg, #00c6ff, #0072ff);
        color: #fff;
        border: 1px solid rgba(0,0,0,0.2);
    }
    .cta-button.secondary { /* secondary */
        background: linear-gradient(90deg, #ff69b4, #9370db);
        color: #fff;
        border: 1px solid rgba(0,0,0,0.18);
    }

    /* Hosting section highlight */
    #hosting .hosting-container {
        padding: 18px;
    }
    .hosting-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .hosting-item {
        padding: 12px;
        border-radius: 12px;
        background: rgba(255,255,255,0.02);
        border: 1px solid rgba(255,255,255,0.04);
    }

    /* Improve contact form spacing and buttons */
    .contact-form .form-group input,
    .contact-form .form-group textarea {
        padding: 12px 14px;
        font-size: 1rem;
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,0.06);
        background: rgba(0,0,0,0.6);
        color: #fff;
    }

    .submit-btn {
        display: inline-block;
        width: 92%;
        max-width: 420px;
        padding: 14px 18px;
        margin-top: 12px;
        font-size: 1.05rem;
        border-radius: 12px;
        background: linear-gradient(90deg, #00ff88, #00c6ff);
        color: #050505;
        border: none;
    }

    /* Decorative hero subtitle lines can overflow on narrow viewports; hide them to avoid horizontal scroll */
    .hero-subtitle::before,
    .hero-subtitle::after {
        display: none;
    }

    /* Slightly increase footer link spacing on mobile */
    .footer-links {
        gap: 14px;
        flex-wrap: wrap;
    }
}

