/*

TemplateMo 596 Electric Xtra

https://templatemo.com/tm-596-electric-xtra

*/

@charset "utf-8";

/* CSS Document */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background: #0A1F44; /* black base */
            color: #ffffff;
            overflow-x: hidden;
            position: relative;
            font-weight: 400;
        }

        /* Animated background with hexagon pattern */
/* ⚡ POWER THE WORLD – Electric Animated Background ⚡ */

/* ⚡ FUTURISTIC NEON ENERGY BACKGROUND ⚡ */

/* ============================= */
/* ⚡ FUTURISTIC NEON ENERGY BG ⚡ */
/* ============================= */

.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;

    background-color: #0A1F44;

    background-image:
        radial-gradient(circle at 50% 50%, rgba(41, 182, 255, 0.15) 0%, transparent 40%),
        repeating-linear-gradient(
            0deg,
            rgba(41, 182, 255, 0.06) 0px,
            rgba(41, 182, 255, 0.06) 1px,
            transparent 1px,
            transparent 80px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 212, 0, 0.06) 0px,
            rgba(255, 212, 0, 0.06) 1px,
            transparent 1px,
            transparent 80px
        );

    animation: energyMove 20s linear infinite;
}

/* Moving grid animation */
@keyframes energyMove {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 400px 400px, -400px -400px;
    }
}

/* Neon pulse glow overlay */
.grid-bg::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    pointer-events: none;

    background: radial-gradient(circle, rgba(41, 182, 255, 0.2) 0%, transparent 60%);
    animation: neonPulseBg 6s ease-in-out infinite;
}

@keyframes neonPulseBg {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}


 /* ============================= */
/* ⚡ FUTURISTIC NEON ELECTRIC BULBS ⚡ */
/* ============================= */






        /* Navigation */
       
	   nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(41, 182, 255, 0.3);
}

nav.scrolled {
    padding: 15px 50px;
    background: rgba(10, 10, 25, 0.95);
    box-shadow: 0 5px 30px rgba(0, 255, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-svg {
    width: 40px;
    height: 40px;
}

.logo-img {
    display: block;
    width: 40px;   /* smaller, fits nav perfectly */
    height: 40px;  /* keeps aspect ratio */
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.1); /* slight hover pop */
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.9));
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(45deg, #29B6FF, #FFD400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neonGlow 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0,178,255,0.6), 0 0 20px rgba(255,214,51,0.5);
}

@keyframes neonGlow {
    0%, 100% { 
        filter: brightness(1);
        text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    }
    50% { 
        filter: brightness(1.5);
        text-shadow: 0 0 50px rgba(0, 255, 255, 0.8);
    }
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 16px;
    font-family: 'Orbitron', monospace;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.nav-links a.active {
    opacity: 1;
    color: #29B6FF;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    border-color: #29B6FF;
    box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #29B6FF, #FFD400);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
	   
	   

        /* Mobile menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: #FFD400;
            transition: all 0.3s ease;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Hero Section */
        .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 20px 20px;
    z-index: 5;
    overflow: hidden;
    background: transparent; /* will blend with grid + overlay */
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
    animation: fadeInUpNeon 1.2s ease-out forwards;
}

/* Neon Fade-In + Slight Pulse */
@keyframes fadeInUpNeon {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: brightness(0.8);
        text-shadow: 0 0 0px rgba(0,255,255,0.2);
    }
    50% {
        opacity: 1;
        transform: translateY(0px);
        filter: brightness(1.2);
        text-shadow: 0 0 20px rgba(0,255,255,0.5);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
        filter: brightness(1);
        text-shadow: 0 0 10px rgba(0,255,255,0.4);
    }
}

/* Neon Headings inside hero */
.hero-content h1, 
.hero-content h2 {
    font-family: 'Orbitron', monospace;
    color: #29B6FF;
    background: linear-gradient(45deg, #29B6FF, #29B6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    margin: 10px 0;
    animation: neonPulse 2s ease-in-out infinite;
}

/* Neon Pulse animation reused */
@keyframes neonPulse {
    0%, 100% {
        filter: brightness(1);
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    }
    50% {
        filter: brightness(1.5);
        text-shadow: 0 0 40px rgba(0, 255, 255, 0.9);
    }
}


      /* ============================= */
/* Hero Paragraph */
.hero-content p {
    font-family: 'Orbitron', monospace;
    color: #ffffff;
    opacity: 0.85;
    font-size: clamp(14px, 1.2vw, 18px); /* scales with screen */
    line-height: 1.5;
    margin-top: 12px;
    text-align: center;
}

/* ============================= */
/* Text Rotator & Glitch Styles */
.text-rotator {
    position: relative;
    min-height: 80px; /* smaller for tighter layout */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.text-set {
    position: absolute;
    width: 100%;
    opacity: 0;
    display: none;
}

.text-set.active {
    opacity: 1;
    display: block;
}

/* ============================= */
/* Glitch Text - Responsive */
.glitch-text {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 8vw, 3rem); /* scales with screen width */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    text-align: center;
    text-shadow: 0 0 15px rgba(41, 182, 255, 0.6), 0 0 10px rgba(255, 220, 50, 0.5); /* ocean blue + warm yellow */
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: #FFD400; /* warm yellow */
    z-index: -1;
    text-shadow: -2px 0 #FFD400, 0 0 10px rgba(255, 220, 50, 0.3);
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: #29B6FF; /* ocean blue */
    z-index: -1;
    text-shadow: 2px 0 #29B6FF, 0 0 10px rgba(41, 182, 255, 0.3);
}

/* ============================= */
/* Glitch Keyframes */
@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(30% 0 30% 0); transform: translate(-2px, 0); }
    40% { clip-path: inset(60% 0 0 0); transform: translate(2px, -1px); }
    60% { clip-path: inset(0 0 60% 0); transform: translate(1px, 1px); }
    80% { clip-path: inset(25% 0 50% 0); transform: translate(-1px, -1px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(50% 0 25% 0); transform: translate(2px, 1px); }
    40% { clip-path: inset(0 0 75% 0); transform: translate(-2px, 0); }
    60% { clip-path: inset(75% 0 0 0); transform: translate(-1px, -1px); }
    80% { clip-path: inset(40% 0 40% 0); transform: translate(1px, 1px); }
}

/* ============================= */
/* Individual Character Animations */
.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: charFlyIn 0.5s ease-out forwards;
}

.char.out {
    animation: charFlyOut 0.3s ease-in forwards;
}

@keyframes charFlyIn {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes charFlyOut {
    to { opacity: 0; transform: translateY(-20px) rotateX(90deg); }
}

/* ============================= */
/* Subtitle */
.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem); /* responsive */
    margin: 15px 0;
    opacity: 0.6;
    animation: fade-in 1s ease-out 0.5s both;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    font-weight: 300;
    text-align: center;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 0.6; }
}

        .cta-container {
            position: absolute;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            z-index: 100;
        }

        .cta-button {
            padding: 12px 30px;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-family: 'Orbitron', monospace;
            font-weight: 700;
        }

        .cta-primary {
            background: linear-gradient(45deg, #FFD400, #29B6FF);
            color: white;
            animation: pulse 2s infinite;
            box-shadow: 0 0 30px rgba(255, 212, 0, 0.5);
        }

        @keyframes pulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 30px rgba(255, 212, 0, 0.5);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 0 40px rgba(255, 212, 0, 0.8);
            }
        }

        .cta-secondary {
            background: transparent;
            color: #FFD400;
            border: 2px solid #FFD400;
            box-shadow: inset 0 0 20px rgba(255, 212, 0, 0.1);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-secondary:hover {
            background: rgba(255, 212, 0, 0.1);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(255, 212, 0, 0.4), inset 0 0 30px rgba(255, 212, 0, 0.2);
            border-color: #ffffff;
        }

        /* Features Section with Tabs */
        .features {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .section-title {
            font-family: 'Orbitron', monospace;
            font-size: 3rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #FFD400, #29B6FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
        }

        .features-container {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 40px;
            align-items: start;
        }

        .feature-tabs {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 212, 0, 0.2);
            border-radius: 10px;
            padding: 20px;
            backdrop-filter: blur(10px);
        }

        .tab-item {
            padding: 15px 20px;
            margin-bottom: 10px;
            cursor: pointer;
            border: 1px solid transparent;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1rem;
        }

        .tab-item:hover {
            background: rgba(255, 212, 0, 0.1);
            border-color: rgba(255, 212, 0, 0.3);
        }

        .tab-item.active {
            background: linear-gradient(45deg, rgba(255, 212, 0, 0.2), rgba(41, 182, 255, 0.2));
            border-color: #FFD400;
            box-shadow: 0 0 20px rgba(255, 212, 0, 0.3);
        }

        .tab-icon {
            font-size: 1.5rem;
        }

        .feature-content {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 212, 0, 0.2);
            border-radius: 10px;
            padding: 40px;
            backdrop-filter: blur(10px);
            min-height: 220px;
			height: Auto;
        }

        .content-panel {
            display: none;
            animation: fadeIn 0.5s ease;
			 height: auto;
    overflow: visible;
    line-height: 1.6;
        }

        .content-panel.active {
            display: block;
        }

        .content-panel h3 {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ffffff, #FFD400);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .content-panel p {
            line-height: 1.8;
            opacity: 0.8;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .feature-list {
            list-style: none;
            margin-top: 20px;
        }

        .feature-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            opacity: 0.8;
        }

        .feature-list li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #FFD400;
            font-size: 1.2rem;
        }

        /* About Section */
        .about {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #FFD400, #29B6FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-text p {
            line-height: 1.8;
            opacity: 0.8;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .about-visual {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-graphic {
            width: 300px;
            height: 300px;
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        .about-graphic::before,
        .about-graphic::after {
            content: '';
            position: absolute;
            border: 2px solid #FFD400;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(255, 212, 0, 0.5);
        }

        .about-graphic::before {
            width: 100%;
            height: 100%;
            animation: rotate 20s linear infinite;
        }

        .about-graphic::after {
            width: 80%;
            height: 80%;
            top: 10%;
            left: 10%;
            border-color: #29B6FF;
            animation: rotate 15s linear infinite reverse;
            box-shadow: 0 0 30px rgba(41, 182, 255, 0.5);
        }

        /* Alternative graphic for second row */
        .about-graphic-alt {
            width: 300px;
            height: 300px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
        }

        .hexagon {
            position: absolute;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #FFD400, #29B6FF);
            opacity: 0.3;
            clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
        }

        .hexagon:nth-child(1) {
            width: 150px;
            height: 150px;
            animation: hexagon-rotate 8s linear infinite;
        }

        .hexagon:nth-child(2) {
            width: 100px;
            height: 100px;
            animation: hexagon-rotate 12s linear infinite reverse;
            opacity: 0.5;
        }

        .hexagon:nth-child(3) {
            width: 200px;
            height: 200px;
            animation: hexagon-rotate 15s linear infinite;
            opacity: 0.2;
        }

        @keyframes hexagon-rotate {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
            100% { transform: rotate(360deg) scale(1); }
        }

        /* Contact Section */
        .contact {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 212, 0, 0.2);
            border-radius: 10px;
            padding: 40px;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: #FFD400;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 212, 0, 0.3);
            color: white;
            font-size: 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-family: 'Rajdhani', sans-serif;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #FFD400;
            box-shadow: 0 0 20px rgba(255, 212, 0, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, #FFD400, #29B6FF);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Orbitron', monospace;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 212, 0, 0.5);
        }

        .contact-info {
            padding: 40px;
        }

        .contact-info h3 {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #ffffff, #FFD400);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .info-item {
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #FFD400, #29B6FF);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .info-details h4 {
            color: #FFD400;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .info-details p {
            opacity: 0.8;
        }

/* ================= Map Section ================= */
.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 12px;
    overflow: hidden;
    height: 400px; /* bigger height for better view */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 212, 0, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(41, 182, 255, 0.3);
}

/* iframe map styling */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(41, 182, 255, 0.4);
}

/* Neon Overlay with Address */
.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 18px;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.95rem;
    color: #FFD400; /* warm yellow */
    text-shadow: 0 0 10px #29B6FF, 0 0 20px #FFD400;
    box-shadow: 0 0 15px rgba(41, 182, 255, 0.5);
    z-index: 2;
}

/* Optional scan animation for neon vibe */
.map-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: scan 3s linear infinite;
    border-radius: 8px;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}


        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.8);
            border-top: 1px solid rgba(255, 212, 0, 0.2);
            padding: 40px 20px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #FFD400;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .footer-links a:hover {
            color: #29B6FF;
            text-shadow: 0 0 10px currentColor;
        }

        .copyright {
            opacity: 0.6;
            font-size: 0.9rem;
        }

        .copyright a {
            color: #FFD400;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .copyright a:hover {
            color: #29B6FF;
            text-shadow: 0 0 10px currentColor;
        }

        /* Scanlines effect */
        .scanlines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            background: linear-gradient(
                transparent 50%,
                rgba(255, 212, 0, 0.01) 50%
            );
            background-size: 100% 4px;
            animation: scanlines 8s linear infinite;
            z-index: 2;
            pointer-events: none;
        }

        @keyframes scanlines {
            0% { transform: translateY(0); }
            100% { transform: translateY(10px); }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0);
                box-shadow: 0 0 30px rgba(255, 212, 0, 0.5);
            }
            50% { 
                transform: translateY(-10px);
                box-shadow: 0 10px 40px rgba(255, 212, 0, 0.7);
            }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(10, 10, 10, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-content {
                padding: 0 20px;
            }

            .glitch-text {
                font-size: clamp(1.2rem, 4.9vw, 2.4rem);
            }

            .text-rotator {
                min-height: 150px;
            }

            .subtitle {
                font-size: 1.2rem;
            }

            .cta-container {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
            }

            .features-container {
                grid-template-columns: 1fr;
            }

            .feature-tabs {
                display: block;
                padding: 20px;
                max-width: 100%;
            }

            .tab-item {
                width: 100%;
                margin-bottom: 10px;
            }

            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .about-graphic {
                width: 200px;
                height: 200px;
            }

            .shape-circle,
            .shape-triangle,
            .shape-square {
                transform: scale(0.6);
            }
        }
		
		
		/* ================= SLIDER ================= */

.image-slider {
    padding: 80px 20px;
    background: linear-gradient(180deg, #0A1F44, #0D3C78);
}

.slider-container {
    max-width: 1100px;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(41,182,255,0.4);
}

.slide {
    display: none;
    position: relative;
}

.slide.active {
    display: block;
}

/* Make video fill the slider and keep same size as previous images */
.slide video {
    width: 100%;
    height: 500px;           /* same height as your images */
    object-fit: cover;       /* crop to fill nicely */
    border-radius: 15px;     /* match your slider rounded corners */
}

/* Optional: captions on top of video */
.slide-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #FFD400;
    text-shadow: 0 0 20px rgba(255,212,0,0.7);
    z-index: 5; /* make sure caption is above video */
}

/* Navigation buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(41,182,255,0.7);
    border: none;
    padding: 15px;
    cursor: pointer;
    color: white;
    font-size: 20px;
    border-radius: 50%;
    z-index: 10; /* make sure buttons are on top */
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover {
    background: #FFD400;
}


/* ================= GALLERY ================= */

.gallery {
    padding: 100px 20px;
    background: #0A1F44;
    text-align: center;
}

.gallery-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.4s ease;
    box-shadow: 0 0 25px rgba(41,182,255,0.3);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255,212,0,0.6);
}

/* ================= TESTIMONIALS ================= */

.testimonials {
    padding: 100px 20px;
    background: linear-gradient(180deg,#0D3C78,#0A1F44);
    text-align: center;
}

.testimonial-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(41,182,255,0.08);
    border: 1px solid rgba(41,182,255,0.3);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
}

.testimonial-card:hover {
    border-color: #FFD400;
    box-shadow: 0 0 30px rgba(255,212,0,0.5);
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.testimonial-card h4 {
    color: #FFD400;
}


/* Gallery Section */
.video-gallery {
    padding: 80px 20px;
    background: linear-gradient(180deg, #0A1F44, #0D3C78);
}

/* Gallery Container */
.gallery-container {
    max-width: 900px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

/* Main Feature Video */
.video-item.featured {
    width: 260px;
    height: 460px;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255,212,0,0.5);
}

/* Side Videos */
.video-item {
    width: 200px;
    height: 355px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(41,182,255,0.4);
    transition: 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255,212,0,0.6);
}
.tiktok-cta {
    text-align: center;
    margin-top: 40px;
}
/* ================= VIDEO STYLING ================= */
.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes video fill container while keeping aspect ratio */
    border-radius: 15px;
    display: block;
}

/* ================= MOBILE VIDEO RESPONSIVENESS ================= */
@media (max-width: 768px) {
    .gallery-container {
        flex-direction: column; /* Stack videos vertically */
        align-items: center;
        gap: 20px;
    }

    .video-item,
    .video-item.featured {
        width: 90%; /* Almost full width */
        height: auto; /* Let height adjust automatically */
    }

    .video-item video {
        height: auto; /* Adjust height to maintain aspect ratio */
    }
}
/*socials
.social-handles {
    padding: 15px 0;
    background: linear-gradient(180deg, #0A1F44, #0D3C78);
    text-align: center;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    align-items: center;
}

.social-icon svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease, filter 0.3s ease;
    animation: float 2.5s ease-in-out infinite;
}

.social-icon:hover svg {
    transform: scale(1.3) rotate(10deg);
    filter: brightness(1.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.social-icons {
    display: flex;
    justify-content: center; /* center them horizontally */
    gap: 20px; /* space between icons */
    margin-top: 30px;
}

.social-icons img {
    width: 50px;  /* adjust as needed */
    height: 50px;
    display: block; /* remove inline spacing issues */
}


/* ================= FLYER SECTION ================= */
.flyer-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.flyer-container {
    width: 100%;
    max-width: 500px; /* keeps it nice on big screens */
    text-align: center;
}

.flyer-container img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0, 178, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flyer-container img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(0, 178, 255, 0.7);
}