
/* Base Styles */
html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Glassmorphism Styles */
.glass-panel {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-right: 1px solid rgba(0, 106, 113, 0.15);
    border-bottom: 1px solid rgba(0, 106, 113, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.04);
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-right: 1px solid rgba(0, 106, 113, 0.15);
    border-bottom: 1px solid rgba(0, 106, 113, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 219, 231, 0.4);
    box-shadow: 0 20px 40px rgba(0, 106, 113, 0.08);
    transform: translateY(-6px);
}

.deep-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-right: 1px solid rgba(0, 163, 255, 0.1);
    border-bottom: 1px solid rgba(0, 163, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 45, 91, 0.04);
}

/* Glow & Gradients */
.glow-cyan {
    box-shadow: 0 0 40px rgba(0, 219, 231, 0.15);
}

.electric-glow {
    box-shadow: 0 0 20px rgba(0, 163, 255, 0.25);
    transition: all 0.3s ease;
}

.electric-glow:hover {
    box-shadow: 0 0 35px rgba(0, 163, 255, 0.45);
    transform: translateY(-2px);
}

.gradient-text {
    background: linear-gradient(135deg, #006a71 0%, #00dbe7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-glow {
    text-shadow: 0 0 15px rgba(0, 219, 231, 0.25);
}

.primary-gradient {
    background: linear-gradient(135deg, #00dbe7 0%, #006a71 100%);
}

.btn-primary {
    background: linear-gradient(135deg, #00dbe7 0%, #006a71 100%);
    box-shadow: 0 4px 15px rgba(0, 219, 231, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 219, 231, 0.35);
    transform: translateY(-2px);
}

/* Background Gradients & Mesh */
.hero-gradient {
    background: radial-gradient(circle at 50% 50%, rgba(0, 219, 231, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.bg-geometric {
    background-color: #f8fbff;
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 219, 231, 0.04) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(112, 0, 255, 0.04) 0px, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(0, 219, 231, 0.03) 49%, rgba(0, 219, 231, 0.03) 51%, transparent 52%);
    background-size: 100% 100%, 100% 100%, 60px 60px;
}

.bg-light-mesh {
    background-color: #f0f7f8;
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 219, 231, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(116, 245, 255, 0.08) 0px, transparent 50%);
}

.soft-glow-bg {
    background: radial-gradient(circle at 50% 50%, rgba(0, 219, 231, 0.06) 0%, transparent 70%);
}

/* Shards & Vectors */
.vector-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.12;
    pointer-events: none;
}

.geometric-shape {
    position: absolute;
    z-index: -1;
    opacity: 0.08;
    pointer-events: none;
}

.vector-shard {
    position: absolute;
    z-index: -1;
    opacity: 0.12;
    pointer-events: none;
}

.shard-tr {
    top: -10%;
    right: -5%;
    width: 40vw;
    height: 40vw;
    background: linear-gradient(225deg, #00dbe7 0%, transparent 70%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.shard-bl {
    bottom: -10%;
    left: -5%;
    width: 35vw;
    height: 35vw;
    background: linear-gradient(45deg, #00dbe7 0%, transparent 70%);
    clip-path: polygon(0 100%, 0 0, 100% 100%);
}

/* Chevron Chip */
.chevron-chip {
    clip-path: polygon(10px 0%, 100% 0%, 100% 100%, 0% 100%);
    border-radius: 0 8px 8px 0;
}

/* Input Focus Overrides */
input:focus, textarea:focus, select:focus {
    outline: none !important;
    border-bottom-color: #006a71 !important;
    box-shadow: 0 4px 12px -4px rgba(0, 106, 113, 0.2) !important;
}

/* Animations */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

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

.animate-bounce-slow {
    animation: bounceSlow 3s ease-in-out infinite;
}

@keyframes bounceSlow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.scanline {
    background: linear-gradient(to bottom, transparent, rgba(0, 219, 231, 0.1), transparent);
    height: 10px;
    width: 100%;
    position: absolute;
    animation: scanline 4s linear infinite;
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Material Symbols alignment */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* Solutions Dropdown Menu Hover */
#solutions-dropdown-btn:hover #solutions-dropdown-menu {
    display: block !important;
}

