/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    margin-right: 0 !important;   /* removes extra right margin */
    padding-right: 0 !important;  /* removes extra right padding */
    display: inline-block;         /* prevents extra spacing from block display */
}

/* Improved Navbar Styles */
#navigation {
    background: rgba(15, 23, 42, 0.85);
    box-shadow: 0 4px 24px rgba(6, 182, 212, 0.08);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(34, 211, 238, 0.08);
    transition: background 0.4s, box-shadow 0.4s;
}


#navigation .logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #22d3ee 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#navigation .nav-link {
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
}

#navigation .nav-link:hover, 
#navigation .nav-link:focus {
    background: rgba(34,211,238,0.08);
    color: #22d3ee;
}

#navigation .nav-underline {
    height: 2px;
    background: linear-gradient(90deg, #22d3ee 0%, #3b82f6 100%);
    border-radius: 2px;
}

#navigation button,
#mobile-menu button {
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 16px rgba(6,182,212,0.12);
}

/* Hide hamburger on md+ screens, show on mobile */
/* @media (min-width: 768px) {
    #mobile-menu-btn {
        display: none !important;
    }
    #mobile-menu {
        display: none !important;
    }
} */
/* @media (max-width: 767px) {
    #mobile-menu-btn {
        display: inline-flex !important;
        color: #22d3ee;  Make hamburger icon cyan for better visibility 
        transition: color 0.3s;
    }
    #mobile-menu-btn:hover {
        color: #3b82f6;
    }
    .md\:flex {
        display: none !important;
    }
} */

/* Mobile menu overlay */
#mobile-menu {
    background: rgba(15,23,42,0.98);
    box-shadow: 0 8px 32px rgba(6,182,212,0.08);
    border-radius: 1rem;
    position: absolute;
    top: 4.5rem;
    left: 1rem;
    right: 1rem;
    z-index: 99;
    min-width: 220px;
    max-width: 95vw;
    padding: 1.5rem 1rem 2rem 1rem;
    animation: fade-in 0.4s;
    backdrop-filter: blur(8px);
    display: none;
}

#mobile-menu.open {
    display: block;
}

#mobile-menu a {
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

#mobile-menu a:hover {
    background: rgba(34,211,238,0.08);
    color: #22d3ee;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0f172a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* Utility Classes */
.max-w-7xl {
    max-width: 80rem;
}
/* Mobile Navbar Styles */
.mobile-navbar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
    position: relative;
    transition: background 0.2s;
}

.mobile-navbar-toggle:focus {
    outline: 2px solid #22d3ee;
}

.hamburger {
    width: 2rem;
    height: 2rem;
    display: inline-block;
    position: relative;
}

.hamburger-bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #22d3ee;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.hamburger-bar:nth-child(1) {
    top: 4px;
}
.hamburger-bar:nth-child(2) {
    top: 14px;
}
.hamburger-bar:nth-child(3) {
    top: 24px;
}

.mobile-navbar-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.mobile-navbar-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}
.mobile-navbar-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile menu overlay for better UX */
#mobile-menu {
    background: rgba(15,23,42,0.98);
    box-shadow: 0 8px 32px rgba(6,182,212,0.08);
    border-radius: 1rem;
    position: absolute;
    top: 4.5rem;
    left: 1rem;
    right: 1rem;
    z-index: 99;
    min-width: 220px;
    max-width: 95vw;
    padding: 1.5rem 1rem 2rem 1rem;
    animation: fade-in 0.4s;
    backdrop-filter: blur(8px);
}

#mobile-menu a {
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

#mobile-menu a:hover {
    background: rgba(34,211,238,0.08);
    color: #22d3ee;
}

#mobile-menu button {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 16px rgba(6,182,212,0.12);
}

/* @media (min-width: 768px) {
    .mobile-navbar-toggle {
        display: none;
    }
    #mobile-menu {
        display: none !important;
    }
} */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

.hidden {
    display: none;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.space-x-8 > * + * {
    margin-left: 2rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

.overflow-hidden {
    overflow: hidden;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-slate-700 {
    border-color: #334155;
}

.border-cyan-400 {
    border-color: #22d3ee;
}

.bg-slate-800\/30 {
    background-color: rgba(30, 41, 59, 0.3);
}

.bg-slate-800\/50 {
    background-color: rgba(30, 41, 59, 0.5);
}

.bg-slate-700 {
    background-color: #334155;
}

.bg-cyan-400 {
    background-color: #22d3ee;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-cyan-500 {
    --tw-gradient-from: #06b6d4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 182, 212, 0));
}

.to-blue-600 {
    --tw-gradient-to: #2563eb;
}

.from-white {
    --tw-gradient-from: #ffffff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.to-cyan-400 {
    --tw-gradient-to: #22d3ee;
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.text-transparent {
    color: transparent;
}

.text-white {
    color: #ffffff;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-cyan-400 {
    color: #22d3ee;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-105:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
}

.hover\:scale-110:hover {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
}

.hover\:-translate-y-2:hover {
    --tw-translate-y: -0.5rem;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover\:shadow-cyan-500\/25:hover {
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.25);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.cursor-pointer {
    cursor: pointer;
}

/* Custom Animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotate(1deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-10px) rotate(-1deg); 
    }
}

@keyframes ripple {
    0% { 
        transform: scale(0); 
        opacity: 1; 
    }
    100% { 
        transform: scale(4); 
        opacity: 0; 
    }
}

@keyframes shimmer {
    0% { 
        transform: translateX(-100%); 
    }
    100% { 
        transform: translateX(100%); 
    }
}

@keyframes fade-in {
    from { 
        opacity: 0; 
    }
    to { 
        opacity: 1; 
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
    }
    50% { 
        opacity: 0.5; 
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Animation Classes */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-ripple {
    animation: ripple 3s linear infinite;
}

.animate-shimmer {
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.animate-fade-in {
    animation: fade-in 0.6s ease-out forwards;
}

.animate-fade-in-up {
    animation: fade-in-up 1s ease-out forwards;
    opacity: 0;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.25, 0.25, 1);
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Styles */
#navigation {
    background-color: transparent;
    transition: all 0.5s ease;
}

#navigation.scrolled {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #22d3ee;
    transition: width 0.3s ease;
}

.nav-link:hover .nav-underline {
    width: 100%;
}

/* Hero Section Styles */
#hero {
    min-height: 100vh;
    padding-top: 100px; /* Add space for fixed navbar */
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 800px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.hero-title {
    background: linear-gradient(135deg, #ffffff 0%, #22d3ee 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    color: #94a3b8;
    font-size: 1.25rem;
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto;
}

.hero-cta {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.4);
}

.hero-secondary {
    color: #94a3b8;
    padding: 1rem 2rem;
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
}

.hero-secondary:hover {
    border-color: #22d3ee;
    color: #22d3ee;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 211, 238, 0.2);
}

/* Background Patterns */
.bg-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bg-pattern-2 {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* 3D Effects */
.perspective-1000 {
    perspective: 1000px;
}

.rotate-y-12 {
    transform: rotateY(12deg);
}

.rotate-y-0 {
    transform: rotateY(0deg);
}

.device-3d {
    transform-style: preserve-3d;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #06b6d4, #3b82f6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #0891b2, #2563eb);
}

/* Button Styles */
button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-water {
    position: relative;
    overflow: hidden;
}

.btn-water::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-water:hover::before {
    left: 100%;
}

/* Form Styles */
input, textarea {
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #22d3ee;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s cubic-bezier(0.25, 0.25, 0.25, 1);
}

.card-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.15);
}

/* Comparison Table */
.comparison-row:hover {
    background-color: rgba(30, 41, 59, 0.4);
}

/* Tab System */
.science-tab {
    transition: all 0.3s ease;
}

.science-tab.active {
    background: linear-gradient(to right, #06b6d4, #2563eb);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(6, 182, 212, 0.39);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Step Items */
.step-item {
    transition: all 0.5s ease;
}

.step-item.active {
    background-color: rgba(30, 41, 59, 0.8);
    border-color: #22d3ee;
    box-shadow: 0 10px 25px rgba(34, 211, 238, 0.2);
}

.step-item.active h3 {
    color: #22d3ee;
}

.step-item.active .step-icon {
    background: linear-gradient(to right, #06b6d4, #2563eb);
    color: white;
    transform: scale(1.1);
}

.step-item.active .step-arrow {
    color: #22d3ee;
    transform: translateX(4px);
}

/* Testimonial Dots */
.testimonial-dot {
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: #22d3ee;
    transform: scale(1.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .text-6xl {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .text-5xl {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .text-3xl {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .py-24 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .md\:grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lg\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .md\:flex {
        display: none;
    }
    
    .md\:hidden {
        display: block;
    }
    
    .flex-col {
        flex-direction: column;
    }
    
    .sm\:flex-row {
        flex-direction: column;
    }
}

@media (min-width: 768px) {
    .md\:text-8xl {
        font-size: 6rem;
        line-height: 1;
    }
    
    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    
    .md\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    
    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .md\:flex {
        display: flex;
    }
    
    .md\:hidden {
        display: none;
    }
    
    .md\:text-left {
        text-align: left;
    }
    
    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }
    
    .sm\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

/* Glass Morphism Effect */
.glass-morphism {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Additional Utility Classes */
.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-md {
    max-width: 28rem;
}

.aspect-square {
    aspect-ratio: 1 / 1;
}

.object-cover {
    object-fit: cover;
}

.italic {
    font-style: italic;
}

.fill-current {
    fill: currentColor;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-1 {
    flex: 1 1 0%;
}

.inline-flex {
    display: inline-flex;
}

.inline-block {
    display: inline-block;
}

.resize-none {
    resize: none;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.top-1\/4 {
    top: 25%;
}

.bottom-1\/4 {
    bottom: 25%;
}

.left-1\/4 {
    left: 25%;
}

.right-1\/4 {
    right: 25%;
}

.left-1\/2 {
    left: 50%;
}

.-translate-x-1\/2 {
    --tw-translate-x: -50%;
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%;
}

.w-2 {
    width: 0.5rem;
}

.h-2 {
    height: 0.5rem;
}

.w-3 {
    width: 0.75rem;
}

.h-3 {
    height: 0.75rem;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.w-24 {
    width: 6rem;
}

.h-24 {
    height: 6rem;
}

.w-32 {
    width: 8rem;
}

.h-32 {
    height: 8rem;
}

.w-64 {
    width: 16rem;
}

.h-64 {
    height: 16rem;
}

.w-80 {
    width: 20rem;
}

.w-96 {
    width: 24rem;
}

.h-96 {
    height: 24rem;
}

.h-20 {
    height: 5rem;
}

.h-8 {
    height: 2rem;
}

.h-1 {
    height: 0.25rem;
}

.h-0\.5 {
    height: 0.125rem;
}

.w-0\.5 {
    width: 0.125rem;
}

.blur-3xl {
    filter: blur(64px);
}

.scale-110 {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
}

.scale-125 {
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
}

.translate-x-1 {
    --tw-translate-x: 0.25rem;
}

.translate-x-4 {
    --tw-translate-x: 1rem;
}

.border-l-4 {
    border-left-width: 4px;
}

.border-x {
    border-left-width: 1px;
    border-right-width: 1px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-cyan-400\/30 {
    border-color: rgba(34, 211, 238, 0.3);
}

.border-cyan-400\/50 {
    border-color: rgba(34, 211, 238, 0.5);
}

.border-slate-700\/50 {
    border-color: rgba(51, 65, 85, 0.5);
}

.bg-cyan-500\/5 {
    background-color: rgba(6, 182, 212, 0.05);
}

.bg-cyan-500\/10 {
    background-color: rgba(6, 182, 212, 0.1);
}

.bg-blue-500\/5 {
    background-color: rgba(59, 130, 246, 0.05);
}

.bg-blue-600\/10 {
    background-color: rgba(37, 99, 235, 0.1);
}

.bg-cyan-400\/10 {
    background-color: rgba(34, 211, 238, 0.1);
}

.bg-blue-400\/10 {
    background-color: rgba(96, 165, 250, 0.1);
}

.bg-slate-800\/20 {
    background-color: rgba(30, 41, 59, 0.2);
}

.bg-slate-800\/80 {
    background-color: rgba(30, 41, 59, 0.8);
}

.bg-slate-700\/50 {
    background-color: rgba(51, 65, 85, 0.5);
}

.bg-slate-600 {
    background-color: #475569;
}

.bg-yellow-400 {
    background-color: #facc15;
}

.bg-green-400 {
    background-color: #4ade80;
}

.bg-red-400 {
    background-color: #f87171;
}

.bg-yellow-500 {
    background-color: #eab308;
}

.text-slate-950 {
    color: #020617;
}

.text-cyan-300 {
    color: #67e8f9;
}

.text-gray-200 {
    color: #e5e7eb;
}

.text-gray-600 {
    color: #4b5563;
}

.text-green-400 {
    color: #4ade80;
}

.text-red-400 {
    color: #f87171;
}

.text-yellow-400 {
    color: #facc15;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}

.font-medium {
    font-weight: 500;
}

.leading-none {
    line-height: 1;
}

.via-cyan-200 {
    --tw-gradient-stops: var(--tw-gradient-from), #a5f3fc, var(--tw-gradient-to, rgba(165, 243, 252, 0));
}

.via-cyan-400 {
    --tw-gradient-stops: var(--tw-gradient-from), #22d3ee, var(--tw-gradient-to, rgba(34, 211, 238, 0));
}

.via-slate-950 {
    --tw-gradient-stops: var(--tw-gradient-from), #020617, var(--tw-gradient-to, rgba(2, 6, 23, 0));
}

.via-slate-900 {
    --tw-gradient-stops: var(--tw-gradient-from), #0f172a, var(--tw-gradient-to, rgba(15, 23, 42, 0));
}

.via-cyan-950\/20 {
    --tw-gradient-stops: var(--tw-gradient-from), rgba(8, 51, 68, 0.2), var(--tw-gradient-to, rgba(8, 51, 68, 0));
}

.from-slate-900 {
    --tw-gradient-from: #0f172a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 23, 42, 0));
}

.from-slate-950 {
    --tw-gradient-from: #020617;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 6, 23, 0));
}

.from-cyan-950\/20 {
    --tw-gradient-from: rgba(8, 51, 68, 0.2);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(8, 51, 68, 0));
}

.to-slate-900 {
    --tw-gradient-to: #0f172a;
}

.to-slate-950 {
    --tw-gradient-to: #020617;
}

.to-cyan-900 {
    --tw-gradient-to: #164e63;
}

.to-blue-500 {
    --tw-gradient-to: #3b82f6;
}

.from-red-500 {
    --tw-gradient-from: #ef4444;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0));
}

.to-pink-500 {
    --tw-gradient-to: #ec4899;
}

.from-yellow-500 {
    --tw-gradient-from: #eab308;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 179, 8, 0));
}

.to-orange-500 {
    --tw-gradient-to: #f97316;
}

.from-purple-500 {
    --tw-gradient-from: #a855f7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0));
}

.to-indigo-500 {
    --tw-gradient-to: #6366f1;
}

.from-slate-800 {
    --tw-gradient-from: #1e293b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 41, 59, 0));
}

.from-blue-400 {
    --tw-gradient-from: #60a5fa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
}

.from-cyan-400\/20 {
    --tw-gradient-from: rgba(34, 211, 238, 0.2);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 211, 238, 0));
}

.from-blue-500\/20 {
    --tw-gradient-from: rgba(59, 130, 246, 0.2);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
}

.from-slate-700 {
    --tw-gradient-from: #334155;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 65, 85, 0));
}

.to-slate-600 {
    --tw-gradient-to: #475569;
}

.from-transparent {
    --tw-gradient-from: transparent;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.via-cyan-400\/20 {
    --tw-gradient-stops: var(--tw-gradient-from), rgba(34, 211, 238, 0.2), var(--tw-gradient-to, rgba(34, 211, 238, 0));
}

.to-transparent {
    --tw-gradient-to: transparent;
}

.from-cyan-400 {
    --tw-gradient-from: #22d3ee;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 211, 238, 0));
}

.hover\:from-cyan-400:hover {
    --tw-gradient-from: #22d3ee;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 211, 238, 0));
}

.hover\:to-blue-500:hover {
    --tw-gradient-to: #3b82f6;
}

.hover\:text-cyan-400:hover {
    color: #22d3ee;
}

.hover\:text-cyan-300:hover {
    color: #67e8f9;
}

.hover\:text-white:hover {
    color: #ffffff;
}

.hover\:text-gray-300:hover {
    color: #d1d5db;
}

.hover\:text-gray-200:hover {
    color: #e5e7eb;
}

.hover\:bg-cyan-400:hover {
    background-color: #22d3ee;
    color:black
}

.hover\:bg-slate-600:hover {
    background-color: #475569;
}

.hover\:bg-slate-800\/80:hover {
    background-color: rgba(30, 41, 59, 0.8);
}

.hover\:bg-slate-800\/20:hover {
    background-color: rgba(30, 41, 59, 0.2);
}

.hover\:bg-gray-500:hover {
    background-color: #6b7280;
}

.hover\:border-cyan-400\/50:hover {
    border-color: rgba(34, 211, 238, 0.5);
}

.hover\:border-slate-600:hover {
    border-color: #475569;
}

.group:hover .group-hover\:scale-110 {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
}

.group:hover .group-hover\:text-cyan-400 {
    color: #22d3ee;
}

.group:hover .group-hover\:text-cyan-300 {
    color: #67e8f9;
}

.group:hover .group-hover\:text-gray-300 {
    color: #d1d5db;
}

.group:hover .group-hover\:text-gray-200 {
    color: #e5e7eb;
}

.group:hover .group-hover\:bg-slate-600 {
    background-color: #475569;
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

.opacity-0 {
    opacity: 0;
}

.opacity-20 {
    opacity: 0.2;
}

.col-span-3 {
    grid-column: span 3 / span 3;
}

.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

.mt-20 {
    margin-top: 5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-20 {
    margin-bottom: 5rem;
}

.-top-2 {
    top: -0.5rem;
}

.-right-2 {
    right: -0.5rem;
}

.-bottom-2 {
    bottom: -0.5rem;
}

.-left-2 {
    left: -0.5rem;
}

.top-6 {
    top: 1.5rem;
}

.left-6 {
    left: 1.5rem;
}

.top-8 {
    top: 2rem;
}

.left-8 {
    left: 2rem;
}

.right-8 {
    right: 2rem;
}

.bottom-8 {
    bottom: 2rem;
}

.top-1\/2 {
    top: 50%;
}

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.stroke-linecap-round {
    stroke-linecap: round;
}

.stroke-linejoin-round {
    stroke-linejoin: round;
}

.stroke-2 {
    stroke-width: 2;
}

.fill-none {
    fill: none;
}

.stroke-current {
    stroke: currentColor;
}

.viewBox-0-0-24-24 {
    /* This is handled by the SVG viewBox attribute */
}

/* Additional responsive utilities */
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

/* Focus states */
.focus\:border-cyan-400:focus {
    border-color: #22d3ee;
}

.focus\:outline-none:focus {
    outline: none;
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px var(--tw-ring-color);
}

.focus\:ring-cyan-400\/20:focus {
    --tw-ring-color: rgba(34, 211, 238, 0.2);
}

/* Placeholder styles */
.placeholder-gray-400::placeholder {
    color: #9ca3af;
}

/* Additional margin utilities */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Additional positioning */
.inset-4 {
    top: 1rem;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
}

/* Additional width utilities */
.max-w-2xl {
    max-width: 42rem;
}

/* Additional animation delays */
[style*="animation-delay: 0.2s"] {
    animation-delay: 0.2s;
}

[style*="animation-delay: 0.3s"] {
    animation-delay: 0.3s;
}

[style*="animation-delay: 0.4s"] {
    animation-delay: 0.4s;
}

[style*="animation-delay: 0.5s"] {
    animation-delay: 0.5s;
}

[style*="animation-delay: 0.6s"] {
    animation-delay: 0.6s;
}
[style*="animation-delay: 1s"] {
    animation-delay: 1s;
}

[style*="animation-delay: 2s"] {
    animation-delay: 2s;
}
#alkaline_icon2{
width:100%;
height:100%;
}
#alkaline_icon1{
width:100%;
height:100%;
}

/* Ensure mobile menu is hidden by default and shown only when .open is added */
#mobile-menu {
    display: none;
}
#mobile-menu.open {
    display: block;
}