/* ==================== GLOBAL STYLES ==================== */
:root {
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --accent: #ff2d92;
    --accent-dark: #cc2476;
    --bg-dark: #030014;
    --bg-darker: #010108;
    --bg-card: rgba(10, 15, 30, 0.8);
    --text: #ffffff;
    --text-muted: #8892b0;
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
    --glow-primary: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.3), 0 0 60px rgba(0, 212, 255, 0.1);
    --glow-accent: 0 0 20px rgba(255, 45, 146, 0.5), 0 0 40px rgba(255, 45, 146, 0.3), 0 0 60px rgba(255, 45, 146, 0.1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

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

/* ==================== LOADER ==================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-lightning {
    font-size: 4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    padding: 1rem 5%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(3, 0, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    box-shadow: 0 5px 30px rgba(0, 212, 255, 0.1);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo-img {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s;
}

.navbar.scrolled .logo-img {
    height: 50px;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu,
.desktop-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.hamburger-icon {
    width: 22px;
    height: 18px;
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.5));
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger-icon {
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.8));
}

.mobile-menu-toggle.active .hamburger-icon {
    opacity: 0;
}

/* Mobile Menu Overlay - Hidden by default */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-overlay.active {
    pointer-events: all;
    opacity: 1;
}

/* Animated Background */
.mobile-menu-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(3, 0, 20, 0.98) 0%,
            rgba(10, 0, 30, 0.98) 50%,
            rgba(3, 0, 20, 0.98) 100%);
    backdrop-filter: blur(20px);
    transform: scale(0);
    transform-origin: top right;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-overlay.active .mobile-menu-background {
    transform: scale(1);
}

/* Menu Container */
.mobile-menu-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    z-index: 2;
}

/* Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.5s ease 0.2s;
}

.mobile-menu-overlay.active .mobile-menu-header {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
}

/* Close Button */
.mobile-menu-close {
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.close-line {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: background 0.3s;
}

.mobile-menu-close:hover .close-line {
    background: var(--bg-dark);
}

.close-line:nth-child(1) {
    transform: rotate(45deg);
}

.close-line:nth-child(2) {
    transform: rotate(-45deg);
}

/* Mobile Navigation */
.mobile-menu-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-nav-item {
    opacity: 0;
    transform: translateX(-50px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: calc(0.1s * var(--item-index));
}

.mobile-menu-overlay.active .mobile-nav-item {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.mobile-nav-item a {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
    color: var(--text);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.mobile-nav-item a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-nav-item a:hover::before,
.mobile-nav-item a.active::before {
    transform: scaleY(1);
}

.mobile-nav-item a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(0, 212, 255, 0.1) 0%,
            transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav-item a:hover::after {
    transform: translateX(0);
}

.nav-number {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    min-width: 60px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.nav-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.mobile-nav-item a:hover .nav-text,
.mobile-nav-item a.active .nav-text {
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    transform: translateX(10px);
}

.mobile-nav-item a:hover .nav-number,
.mobile-nav-item a.active .nav-number {
    transform: scale(1.2);
}

/* Menu Footer */
.mobile-menu-footer {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease 0.4s;
}

.mobile-menu-overlay.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Ripple Effect on Menu Item Click */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.5);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Body class when menu is open - prevents background scroll */
body.mobile-menu-open {
    position: fixed;
    width: 100%;
}

/* Additional glow effects for premium feel */
.mobile-nav-item a {
    position: relative;
}

.mobile-nav-item a::before {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* Animated gradient on active/hover */
.mobile-nav-item a.active,
.mobile-nav-item a:hover {
    background: linear-gradient(90deg,
            rgba(0, 212, 255, 0.05) 0%,
            rgba(255, 45, 146, 0.05) 100%);
}

/* Pulsing glow on hamburger button */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.8),
            0 0 30px rgba(0, 212, 255, 0.4);
    }
}

.mobile-menu-toggle:hover .hamburger-line {
    animation: pulse-glow 1.5s infinite;
}

/* Smooth transitions for all interactive elements */
.mobile-nav-item a {
    will-change: transform;
}

/* Enhanced close button animation */
.mobile-menu-close {
    animation: rotate-in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s both;
}

@keyframes rotate-in {
    from {
        transform: rotate(-90deg) scale(0);
        opacity: 0;
    }

    to {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}

/* Menu background particles effect (optional) */
.mobile-menu-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 45, 146, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.mobile-menu-overlay.active .mobile-menu-background::before {
    opacity: 1;
}

/* Hide mobile menu elements on desktop */
@media (min-width: 769px) {

    .mobile-menu-toggle,
    .mobile-menu-overlay {
        display: none !important;
    }
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* ==================== HERO SECTIONS ==================== */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 2rem 4rem;
    margin-top: 0;
}

.home-hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 120px 2rem 2rem;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 45, 146, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: blur(3px) brightness(0.6);
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/image-0.jpg') center center/cover no-repeat;
    opacity: 0.15;
    filter: blur(2px);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 1rem;
}

.hero-logo {
    width: 180px;
    height: auto;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    line-height: 1.2;
}

.hero-title .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    padding: 0 0.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 1;
    animation: fadeInScroll 1s ease-out 0.5s backwards;
}

@keyframes fadeInScroll {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {

    0%,
    100% {
        opacity: 1;
        top: 8px;
    }

    50% {
        opacity: 0.5;
        top: 20px;
    }
}

/* ==================== UNIQUE HERO ANIMATIONS ==================== */

/* ABOUT Hero - Energy Field */
.hero-energy-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
}

.hero-energy-field::before,
.hero-energy-field::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background:
        radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 70% 50%, rgba(255, 45, 146, 0.15) 0%, transparent 25%);
    animation: energyPulse 8s ease-in-out infinite;
    filter: blur(60px);
}

.hero-energy-field::after {
    animation-delay: -4s;
    animation-direction: reverse;
}

@keyframes energyPulse {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.8;
    }
}

/* CONTACT Hero - Lightning Field */
.hero-lightning-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 45, 146, 0.08) 0%, transparent 40%);
}

.hero-lightning-field::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 212, 255, 0.15) 48%,
            rgba(255, 45, 146, 0.15) 52%,
            transparent 100%);
    animation: lightningSlash 6s ease-in-out infinite;
    filter: blur(40px);
}

.hero-lightning-field::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background:
        linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.05) 50%, transparent 100%);
    animation: verticalSweep 8s linear infinite;
}

@keyframes lightningSlash {

    0%,
    100% {
        transform: translateX(0) skewX(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateX(50%) skewX(-10deg);
        opacity: 0.7;
    }
}

@keyframes verticalSweep {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50%);
    }
}

/* EQUIPMENT Hero - Tech Grid */
.hero-tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: techGridMove 20s linear infinite;
}

.hero-tech-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 45, 146, 0.2) 0%, transparent 50%);
    animation: techGlow 6s ease-in-out infinite alternate;
    filter: blur(50px);
}

.hero-tech-grid::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        repeating-linear-gradient(0deg,
            transparent 0px,
            rgba(0, 212, 255, 0.03) 1px,
            transparent 2px,
            transparent 40px),
        repeating-linear-gradient(90deg,
            transparent 0px,
            rgba(255, 45, 146, 0.03) 1px,
            transparent 2px,
            transparent 40px);
    animation: diagonalScan 15s linear infinite;
}

@keyframes techGridMove {
    0% {
        transform: perspective(800px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(800px) rotateX(60deg) translateY(60px);
    }
}

@keyframes techGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes diagonalScan {
    0% {
        transform: rotate(45deg) translate(0, 0);
    }

    100% {
        transform: rotate(45deg) translate(50px, 50px);
    }
}

/* SERVICES Hero - Radial Waves */
.hero-radial-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-radial-waves::before,
.hero-radial-waves::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.2);
    animation: radialExpand 8s ease-out infinite;
}

.hero-radial-waves::after {
    animation-delay: 4s;
    border-color: rgba(255, 45, 146, 0.2);
}

@keyframes radialExpand {
    0% {
        transform: scale(0.3);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ==================== COMMON SECTIONS ==================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== HOME PAGE STYLES ==================== */
.stats-section {
    background: var(--bg-darker);
    text-align: center;
}

.stat-item {
    padding: 3rem;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: var(--text-muted);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

/* Equipment Preview */
.equipment-preview {
    background: var(--bg-dark);
}

.equipment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.equipment-image {
    position: relative;
}

.equipment-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.equipment-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: var(--text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: var(--glow-primary);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(0, 212, 255, 0.4);
}

/* Studios Grid */
.studios-section {
    background: var(--bg-darker);
}

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

.studio-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.4s;
}

.studio-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.studio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.studio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.studio-card:hover .studio-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(3, 0, 20, 0.8) 0%, transparent 60%);
}

.studio-content {
    padding: 2rem;
}

.studio-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.studio-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Why North Carolina */
.why-nc-section {
    background: var(--bg-dark);
}

.why-nc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-nc-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.why-nc-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.nc-video-animation {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s;
}

.why-nc-video:hover .nc-video-animation {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
    transform: scale(1.02);
}

.why-nc-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 45, 146, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 20px;
}

.why-nc-video::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
}

/* Recruitment Section */
.recruitment-section {
    background: var(--bg-darker);
    text-align: center;
}

.recruitment-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Newsletter */
.newsletter-section {
    background: var(--bg-dark);
    text-align: center;
}

.newsletter-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    color: var(--text);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.newsletter-input:focus {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.newsletter-button {
    padding: 1rem 2rem;
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    color: var(--text);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

/* ==================== PREMIUM NEWSLETTER NOTIFICATIONS ==================== */
.newsletter-notification {
    margin-top: 1.5rem;
    padding: 1.2rem 1.8rem;
    border-radius: 15px;
    font-size: 1rem;
    text-align: center;
    animation: notificationSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@keyframes notificationSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes notificationSlideOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

.newsletter-notification.hiding {
    animation: notificationSlideOut 0.4s ease-in forwards;
}

/* Success Notification */
.newsletter-notification.success {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(34, 197, 94, 0.15) 100%);
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: #00d4ff;
    box-shadow:
        0 0 30px rgba(0, 212, 255, 0.2),
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.newsletter-notification.success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

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

    100% {
        left: 100%;
    }
}

/* Error Notification */
.newsletter-notification.error {
    background: linear-gradient(135deg, rgba(255, 45, 146, 0.15) 0%, rgba(239, 68, 68, 0.15) 100%);
    border: 1px solid rgba(255, 45, 146, 0.4);
    color: #ff2d92;
    box-shadow:
        0 0 30px rgba(255, 45, 146, 0.2),
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.newsletter-notification.error::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 45, 146, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

/* Notification Icon */
.notification-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes iconPop {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.newsletter-notification.success .notification-icon {
    background: linear-gradient(135deg, #00d4ff, #22c55e);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.newsletter-notification.error .notification-icon {
    background: linear-gradient(135deg, #ff2d92, #ef4444);
    box-shadow: 0 0 15px rgba(255, 45, 146, 0.5);
}

.notification-message {
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ==================== PREMIUM CONTACT FORM NOTIFICATIONS ==================== */
.contact-notification {
    margin-top: 1.5rem;
    padding: 1.2rem 1.8rem;
    border-radius: 15px;
    font-size: 1rem;
    text-align: center;
    animation: notificationSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-notification.hiding {
    animation: notificationSlideOut 0.4s ease-in forwards;
}

.contact-notification.success {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(34, 197, 94, 0.15) 100%);
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: #00d4ff;
    box-shadow:
        0 0 30px rgba(0, 212, 255, 0.2),
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-notification.success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.contact-notification.error {
    background: linear-gradient(135deg, rgba(255, 45, 146, 0.15) 0%, rgba(239, 68, 68, 0.15) 100%);
    border: 1px solid rgba(255, 45, 146, 0.4);
    color: #ff2d92;
    box-shadow:
        0 0 30px rgba(255, 45, 146, 0.2),
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-notification.error::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 45, 146, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.contact-notification .notification-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.contact-notification.success .notification-icon {
    background: linear-gradient(135deg, #00d4ff, #22c55e);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.contact-notification.error .notification-icon {
    background: linear-gradient(135deg, #ff2d92, #ef4444);
    box-shadow: 0 0 15px rgba(255, 45, 146, 0.5);
}

.contact-notification .notification-message {
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ==================== ABOUT PAGE STYLES ==================== */
.team-section {
    background: var(--bg-dark);
}

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

.team-member {
    text-align: center;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.4s;
    cursor: pointer;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.member-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.member-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Board of Directors */
.board-section {
    background: var(--bg-darker);
}

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

.board-member {
    text-align: center;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 45, 146, 0.1);
    transition: all 0.4s;
    cursor: pointer;
}

.board-member:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--glow-accent);
}

/* ==================== CONTACT PAGE STYLES ==================== */
.contact-form-section {
    background: var(--bg-dark);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

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

/* Form Messages */
.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Submit Button Loading State */
.cta-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.cta-button.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 20px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Turnstile Widget Styling */
.cf-turnstile {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

/* ==================== EQUIPMENT PAGE STYLES ==================== */
.equipment-category-section {
    background: var(--bg-dark);
}

.equipment-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.equipment-showcase:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.equipment-image-large img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.equipment-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.equipment-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.feature-column ul {
    list-style: none;
}

.feature-column li {
    color: var(--text-muted);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-column li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Lens Section */
.lens-section {
    background: var(--bg-darker);
}

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

.lens-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.4s;
}

.lens-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.lens-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lens-images img {
    width: 100%;
    border-radius: 10px;
}

.lens-images-single img,
.lens-images-row img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.lens-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.lens-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.lens-specs {
    list-style: none;
}

.lens-specs li {
    color: var(--text-muted);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.lens-specs li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Support Section */
.support-section {
    background: var(--bg-dark);
}

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

.support-item {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.4s;
}

.support-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.support-icon {
    margin-bottom: 1.5rem;
}

.support-icon img {
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
}

.support-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.support-list {
    list-style: none;
}

.support-list li {
    color: var(--text-muted);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.support-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-darker);
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-muted);
}

.footer-logo {
    width: 150px;
    height: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==================== ANIMATIONS ==================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* ==================== BIO MODAL ==================== */
.bio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.bio-modal.active {
    opacity: 1;
    visibility: visible;
}

.bio-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.bio-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.95) 0%, rgba(3, 0, 20, 0.98) 100%);
    border-radius: 30px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.8),
        0 0 80px rgba(0, 212, 255, 0.2),
        inset 0 0 80px rgba(0, 212, 255, 0.05);
    overflow: hidden;
    transform: scale(0.9) translateY(50px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: modalSlideIn 0.5s ease-out forwards;
}

.bio-modal.active .bio-modal-content {
    transform: scale(1) translateY(0);
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(50px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.bio-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 45, 146, 0.1);
    border: 2px solid rgba(255, 45, 146, 0.3);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bio-modal-close:hover {
    background: rgba(255, 45, 146, 0.2);
    border-color: var(--accent);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 45, 146, 0.5);
}

.bio-modal-header {
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(255, 45, 146, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.bio-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.1) 50%, transparent 100%);
    animation: headerShine 3s ease-in-out infinite;
}

@keyframes headerShine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

.bio-modal-image-container {
    position: relative;
    flex-shrink: 0;
}

.bio-modal-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.bio-modal-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.bio-modal-title-section {
    flex: 1;
}

.bio-modal-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.bio-modal-role {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.5;
}

.bio-modal-body {
    padding: 40px;
    max-height: calc(85vh - 280px);
    overflow-y: auto;
}

.bio-modal-body::-webkit-scrollbar {
    width: 8px;
}

.bio-modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.bio-modal-body::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 10px;
}

.bio-content-wrapper {
    position: relative;
}

.bio-modal-text {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
    white-space: pre-line;
    text-align: justify;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .bio-modal-content {
        width: 95%;
        max-height: 90vh;
        border-radius: 20px;
    }

    .bio-modal-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .bio-modal-image {
        width: 120px;
        height: 120px;
    }

    .bio-modal-glow {
        width: 150px;
        height: 150px;
    }

    .bio-modal-name {
        font-size: 1.8rem;
    }

    .bio-modal-role {
        font-size: 1rem;
    }

    .bio-modal-body {
        padding: 25px 20px;
        max-height: calc(90vh - 300px);
    }

    .bio-modal-text {
        font-size: 0.95rem;
        text-align: left;
    }

    .bio-modal-close {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
        font-size: 1.2rem;
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {

    .equipment-content,
    .equipment-showcase,
    .why-nc-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 3%;
        background: transparent;
        backdrop-filter: none;
        border-bottom: 1px solid transparent;
    }

    .navbar.scrolled {
        background: rgba(3, 0, 20, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
        box-shadow: 0 5px 30px rgba(0, 212, 255, 0.1);
        animation: slideDown 0.4s ease-out;
    }

    .logo-img {
        height: 50px;
    }

    .navbar.scrolled .logo-img {
        height: 40px;
    }

    /* Hide desktop menu, show mobile toggle */
    .desktop-menu {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 1.5rem 2rem;
        margin-top: 0;
    }

    .hero-logo {
        width: 140px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 3rem 0rem;
    }

    .studios-grid,
    .team-grid,
    .board-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 10px;
    }

    .newsletter-form button {
        border-radius: 10px;
        width: 100%;
    }

    .equipment-features {
        grid-template-columns: 1fr;
    }

    .equipment-preview {
        padding: 3rem 0rem;
    }

    .equipment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .equipment-showcase {
        padding: 1.5rem;
    }

    .logo-img {
        height: 60px;
    }

    .navbar.scrolled .logo-img {
        height: 40px;
    }

    /* Adjust mobile menu for smaller screens */
    .mobile-nav-item a {
        font-size: 1.5rem;
        padding: 1.2rem 0.8rem;
        padding-left: 25px;
    }

    .nav-number {
        font-size: 1.2rem;
        min-width: 50px;
    }

    .mobile-menu-logo {
        height: 50px;
    }

    .mobile-menu-container {
        padding: 1.5rem;
    }

    .hero {
        margin-top: 0px;
    }

    .hero-logo {
        width: 120px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

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

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

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* ==================== MOBILE TOUCH OPTIMIZATIONS ==================== */
@media (max-width: 768px) {

    /* Larger touch targets for mobile */
    .nav-menu a,
    .cta-button,
    .social-links a,
    button,
    input[type="submit"] {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Better spacing for touch */
    .nav-menu li {
        padding: 0.5rem 0;
    }

    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }

    /* Smoother scrolling on mobile */
    * {
        -webkit-overflow-scrolling: touch;
    }

    /* Better tap highlights */
    a,
    button,
    .cta-button {
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.2);
    }

    /* Prevent text selection on buttons */
    .cta-button,
    button {
        -webkit-user-select: none;
        user-select: none;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .logo-img {
        height: 50px;
    }

    .navbar.scrolled .logo-img {
        height: 35px;
    }

    .nav-menu {
        font-size: 0.65rem;
        gap: 0.3rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 1rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 1rem;
    }

    .navbar {
        padding: 0.5rem 3%;
    }

    .logo-img {
        height: 50px;
    }

    .navbar.scrolled .logo-img {
        height: 40px;
    }
}

/* ==================== SERVICES PAGE STYLES ==================== */
.services-hero {
    background: linear-gradient(135deg, rgba(3, 0, 20, 0.9), rgba(10, 0, 30, 0.9)),
        url('images/services-bg.jpg') center/cover;
}

.services-content {
    background: var(--bg-dark);
    padding: 5rem 0;
}

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

.service-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    text-align: center;
    transition: all 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-muted);
    line-height: 1.8;
}

.campus-showcase {
    width: 100%;
    max-width: 1200px;
    margin: 5rem auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.campus-showcase img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}

.campus-showcase:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 45, 146, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
}

.campus-showcase:hover .image-overlay {
    opacity: 1;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.services-cta {
    text-align: center;
    padding: 4rem 2rem;
    margin: 5rem auto;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.services-cta h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.services-cta p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Services Page Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .services-cta h2 {
        font-size: 1.8rem;
    }

    .services-cta p {
        font-size: 1rem;
    }
}