/*

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: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
            position: relative;
            font-weight: 400;
        }

        /* Animated background with hexagon pattern */
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, transparent 2%, rgba(255, 94, 0, 0.03) 2%, rgba(255, 94, 0, 0.03) 3%, transparent 3%),
                radial-gradient(circle at 75% 75%, transparent 2%, rgba(0, 178, 255, 0.03) 2%, rgba(0, 178, 255, 0.03) 3%, transparent 3%);
            background-size: 80px 80px;
            animation: grid-move 30s linear infinite;
            z-index: -2;
        }

        /* Animated shapes */
        .shapes-container {
            position: fixed;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
        }

        .shape-circle {
            width: 300px;
            height: 300px;
            border: 2px solid #FF5E00;
            border-radius: 50%;
            top: 10%;
            left: 10%;
            animation: float-rotate 20s ease-in-out infinite;
        }

        .shape-triangle {
            width: 0;
            height: 0;
            border-left: 100px solid transparent;
            border-right: 100px solid transparent;
            border-bottom: 173px solid rgba(0, 178, 255, 0.2);
            top: 60%;
            right: 15%;
            animation: float-rotate 25s ease-in-out infinite reverse;
        }

        .shape-square {
            width: 150px;
            height: 150px;
            border: 2px solid #00B2FF;
            transform: rotate(45deg);
            bottom: 20%;
            left: 20%;
            animation: float-rotate 22s ease-in-out infinite;
        }

        @keyframes float-rotate {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            25% {
                transform: translateY(-30px) rotate(90deg) scale(1.1);
            }
            50% {
                transform: translateY(20px) rotate(180deg) scale(0.9);
            }
            75% {
                transform: translateY(-10px) rotate(270deg) scale(1.05);
            }
        }

        /* Gradient overlay */
        .gradient-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(255, 94, 0, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(0, 178, 255, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            z-index: -1;
            animation: gradient-shift 10s ease-in-out infinite;
        }

        @keyframes gradient-shift {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(180deg); }
        }

        @keyframes grid-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(80px, 80px); }
        }

        /* Floating particles */
        .particle {
            position: fixed;
            pointer-events: none;
            opacity: 0;
            z-index: 1;
        }

        .particle::before {
            content: '';
            position: absolute;
            width: 2px;
            height: 2px;
            background: #FF5E00;
            box-shadow: 0 0 10px #FF5E00, 0 0 20px #FF5E00;
            animation: float-up 15s linear infinite;
        }

        @keyframes float-up {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(720deg);
                opacity: 0;
            }
        }

 /* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: rgba(10, 10, 30, 0.9); /* Dark blue background */
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 139, 0.2); /* Dark blue border */
}

nav.scrolled {
    padding: 15px 50px;
    background: rgba(10, 10, 30, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 139, 0.3);
}

.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 Image - normal size, square */
.logo-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 0%;
    box-shadow: 0 0 5px rgba(0, 0, 139, 0.6);
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(75, 0, 130, 0.8); /* Dark purple glow */
}

/* Logo Text */
.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(45deg, #0000FF, #4B0082); /* Blue to dark purple gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(75, 0, 130, 0.5);
}

@keyframes glow {
    0%, 100% { 
        filter: brightness(1);
        text-shadow: 0 0 30px rgba(75, 0, 130, 0.5);
    }
    50% { 
        filter: brightness(1.5);
        text-shadow: 0 0 40px rgba(0, 0, 255, 0.8);
    }
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff; /* White text */
    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.8;
}

.nav-links a.active {
    opacity: 1;
    color: #00BFFF; /* Light blue active */
}

.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: #4B0082; /* Dark purple border */
    box-shadow: inset 0 0 10px rgba(75, 0, 130, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0000FF, #4B0082);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(75, 0, 130, 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: #0000FF; /* Blue hamburger */
    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;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    animation: fade-in-up 1s ease-out;
    z-index: 10;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Text Rotator Styles */
.text-rotator {
    position: relative;
    min-height: 100px;
    margin-bottom: 20px;
    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 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(0.98rem, 2.94vw, 2.4rem);
    font-weight: 900;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(0, 0, 255, 0.5); /* Blue glow */
    overflow: hidden;
}

.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: charFlyIn 0.5s ease-out forwards;
}

@keyframes charFlyIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.char.out {
    animation: charFlyOut 0.3s ease-in forwards;
}

@keyframes charFlyOut {
    to {
        opacity: 0;
        transform: translateY(-30px) rotateX(90deg);
    }
}

.subtitle {
    font-size: 1.5rem;
    margin: 20px 0;
    opacity: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.subtitle.visible {
    animation: subtitleFade 0.8s ease-out 0.5s forwards;
}

@keyframes subtitleFade {
    to {
        opacity: 0.6;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glitch-text {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.6rem, 10vw, 3.8rem);
    font-weight: 900;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(0, 0, 255, 0.5); /* Blue glow */
}

.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: #0000FF; /* Blue */
    z-index: -1;
    text-shadow: -2px 0 #0000FF;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: #4B0082; /* Dark purple */
    z-index: -1;
    text-shadow: 2px 0 #4B0082;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(33% 0 33% 0); transform: translate(-2px); }
    40% { clip-path: inset(66% 0 0 0); transform: translate(2px); }
    60% { clip-path: inset(0 0 66% 0); transform: translate(1px); }
    80% { clip-path: inset(25% 0 50% 0); transform: translate(-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); }
    40% { clip-path: inset(0 0 75% 0); transform: translate(-2px); }
    60% { clip-path: inset(75% 0 0 0); transform: translate(-1px); }
    80% { clip-path: inset(40% 0 40% 0); transform: translate(1px); }
}

.subtitle {
    font-size: 1.5rem;
    margin: 20px 0;
    opacity: 0.6;
    animation: fade-in 1s ease-out 0.5s both;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

@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, #0000FF, #4B0082); /* Blue to dark purple */
    color: white;
    animation: pulse 2s infinite;
    box-shadow: 0 0 30px rgba(0, 0, 139, 0.5);
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(0, 0, 139, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(75, 0, 130, 0.8);
    }
}

.cta-secondary {
    background: transparent;
    color: #0000FF; /* Blue */
    border: 2px solid #4B0082; /* Dark purple */
    box-shadow: inset 0 0 20px rgba(0, 0, 139, 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(75, 0, 130, 0.1); /* Dark purple hover */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(75, 0, 130, 0.4), inset 0 0 30px rgba(75, 0, 130, 0.2);
    border-color: #ffffff;
}
/* ===========================
   Responsive Media Queries
   =========================== */

/* Large Screens (1200px and up) */
@media (min-width: 1200px) {
  .hero-content {
    max-width: 1100px;
  }
  .glitch-text {
    font-size: clamp(3rem, 5vw, 4.5rem);
  }
  .subtitle {
    font-size: 1.6rem;
  }
  .cta-button {
    font-size: 1.1rem;
    padding: 14px 36px;
  }
}

/* Medium Screens (992px – 1199px) */
@media (max-width: 1199px) {
  .hero {
    padding: 70px 15px 15px;
  }
  .glitch-text {
    font-size: clamp(2.4rem, 6vw, 3.6rem);
  }
  .subtitle {
    font-size: 1.3rem;
  }
  .cta-container {
    bottom: 70px;
    gap: 16px;
  }
}

/* Tablets (768px – 991px) */
@media (max-width: 991px) {
  .hero {
    padding: 60px 15px 15px;
  }
  .glitch-text {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .subtitle {
    font-size: 1.2rem;
    margin: 15px 0;
  }
  .cta-container {
    bottom: 60px;
    flex-wrap: wrap;
  }
  .cta-button {
    font-size: 0.95rem;
    padding: 10px 24px;
  }
}

/* Small Tablets & Large Phones (576px – 767px) */
@media (max-width: 767px) {
  .hero {
    padding: 50px 10px 10px;
  }
  .hero-content {
    text-align: center;
  }
  .glitch-text {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .subtitle {
    font-size: 1.1rem;
  }
  .cta-container {
    bottom: 40px;
    gap: 12px;
  }
  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Mobile Phones (up to 575px) */
@media (max-width: 575px) {
  .hero {
    padding: 40px 10px 10px;
  }
  .glitch-text {
    font-size: clamp(1.4rem, 10vw, 2rem);
    letter-spacing: 0.05em;
  }
  .subtitle {
    font-size: 1rem;
    margin: 12px 0;
  }
  .cta-container {
    position: static;
    transform: none;
    margin-top: 20px;
    flex-direction: column;
    gap: 10px;
  }
  .cta-button {
    width: 100%;
    max-width: 280px;
    font-size: 0.9rem;
    padding: 12px 18px;
  }
}

/* =========================
   FEATURES SECTION
========================= */
.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, #0000FF, #6A0DAD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    text-shadow: 0 0 25px rgba(0, 0, 139, 0.5);
}

.features-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar Tabs */
.feature-tabs {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 0, 139, 0.3);
    border-radius: 14px;
    padding: 20px;
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0, 0, 139, 0.15);
    transition: all 0.3s ease;
}

.tab-item {
    padding: 15px 20px;
    margin-bottom: 14px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.85;
}

.tab-item:hover {
    background: rgba(0, 0, 139, 0.18);
    border-color: rgba(106, 13, 173, 0.6);
    box-shadow: 0 0 18px rgba(0, 0, 255, 0.35);
    opacity: 1;
}

.tab-item.active {
    background: linear-gradient(135deg, rgba(0, 0, 255, 0.25), rgba(106, 13, 173, 0.25));
    border-color: #6A0DAD;
    box-shadow: 0 0 25px rgba(0, 0, 255, 0.4);
    opacity: 1;
}

.tab-icon {
    font-size: 1.5rem;
    color: #00BFFF;
}

/* Content Area - UPDATED FOR SCROLL */
.feature-content {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 0, 139, 0.25);
    border-radius: 14px;
    padding: 40px;
    backdrop-filter: blur(16px);
    min-height: 420px;
    max-height: 650px; /* Added max-height for scrolling */
    overflow-y: auto;  /* Enable vertical scroll */
    box-shadow: 0 10px 30px rgba(0, 0, 139, 0.25);
    transition: all 0.3s ease;
}

/* Scrollbar styling */
.feature-content::-webkit-scrollbar {
    width: 8px;
}

.feature-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.feature-content::-webkit-scrollbar-thumb {
    background: rgba(0, 191, 255, 0.4);
    border-radius: 8px;
}

.content-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.content-panel.active {
    display: block;
}

.content-panel h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #00BFFF, #6A0DAD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 22px rgba(75, 0, 130, 0.4);
}

/* Card Grid inside scrollable area */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding-right: 10px; /* To avoid scrollbar overlap */
}

.feature-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(0, 0, 139, 0.25);
    border-radius: 14px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 139, 0.2);
}

.feature-card img {
    width: 65px;
    height: 65px;
    margin-bottom: 18px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 0, 139, 0.45));
    transition: transform 0.3s ease;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #f0f0f0;
    opacity: 0.85;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #00BFFF;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.45);
}

/* Fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================
   RESPONSIVE / MEDIA QUERIES
========================= */

/* Large Tablets / iPad Landscape (1024px) */
@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-tabs {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 25px;
        padding: 15px 10px;
    }

    .tab-item {
        margin-bottom: 0;
        flex: 1;
        justify-content: center;
        font-size: 1rem;
        padding: 12px 10px;
    }

    .feature-content {
        padding: 35px 25px;
        min-height: 400px;
    }

    .card-grid {
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Tablets / Medium Screens (768px) */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.4rem;
        margin-bottom: 40px;
    }

    .feature-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .tab-item {
        font-size: 0.95rem;
        padding: 10px 12px;
        flex: unset;
        width: auto;
    }

    .feature-content {
        padding: 30px 20px;
        min-height: 380px;
        border-radius: 12px;
    }

    .content-panel h3 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .card-grid {
        gap: 18px;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .feature-card {
        padding: 18px 15px;
    }

    .feature-card img {
        width: 55px;
        height: 55px;
    }
}
/* === Client Images - Slightly Bigger === */
.client-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0, 195, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 195, 255, 0.6);
}

/* === Review Link Styling (unchanged) === */
.review-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: #00c3ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.review-link:hover {
    color: #6A0DAD;
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(106, 13, 173, 0.6);
}


/* Tablets / Medium screens */
@media (max-width: 1024px) {
    .client-img {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .review-link {
        font-size: 0.95rem;
        margin-top: 8px;
    }

    .feature-card p {
        font-size: 0.95rem;
    }
}

/* Small screens / Mobile */
@media (max-width: 768px) {
    .client-img {
        width: 55px;
        height: 55px;
        margin-bottom: 8px;
    }

    .review-link {
        font-size: 0.9rem;
        margin-top: 6px;
    }

    .feature-card h4 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}

/* Extra small screens / Mobile Portrait */
@media (max-width: 480px) {
    .client-img {
        width: 50px;
        height: 50px;
        margin-bottom: 6px;
    }

    .review-link {
        font-size: 0.85rem;
        margin-top: 5px;
    }

    .feature-card h4 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .card-grid {
        gap: 15px;
    }
}

/* Small Tablets / Large Phones (600px) */
@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .feature-tabs {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .tab-item {
        width: 90%;
        font-size: 0.9rem;
        padding: 10px 8px;
    }

    .feature-content {
        padding: 25px 15px;
        min-height: auto;
    }

    .content-panel h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 15px 12px;
    }

    .feature-card img {
        width: 50px;
        height: 50px;
    }
}

/* Extra Small / Mobile Portrait (480px) */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .feature-tabs {
        width: 100%;
    }

    .tab-item {
        font-size: 0.85rem;
        padding: 8px 6px;
    }

    .feature-content {
        padding: 20px 12px;
    }

    .content-panel h3 {
        font-size: 1.5rem;
    }

    .card-grid {
        gap: 14px;
    }

    .feature-card {
        padding: 12px 10px;
    }

    .feature-card img {
        width: 45px;
        height: 45px;
    }
}

/* Ultra Small / Tiny Phones (360px) */
@media (max-width: 360px) {
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .tab-item {
        font-size: 0.8rem;
        padding: 6px 5px;
    }

    .feature-content {
        padding: 18px 10px;
    }

    .content-panel h3 {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

    .card-grid {
        gap: 12px;
    }

    .feature-card {
        padding: 10px 8px;
    }

    .feature-card img {
        width: 40px;
        height: 40px;
    }
}

       /* 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, #0f1d6d, #00B2FF);
    -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;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-graphic img.profile-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    object-fit: cover;
    z-index: 2;
}

.about-graphic::before,
.about-graphic::after {
    content: '';
    position: absolute;
    border: 2px solid #008987;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 64, 255, 0.5);
    top: 0;
    left: 0;
}

.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: #002fff;
    animation: rotate 15s linear infinite reverse;
    box-shadow: 0 0 30px rgba(0, 178, 255, 0.5);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

        /* 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, #013cba, #00B2FF);
            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); }
        }
/* =========================
   ABOUT SECTION - MEDIA CSS
========================= */

/* Tablet Screens */
@media (max-width: 991px) {
    .about-content {
        grid-template-columns: 1fr; /* Single column */
        gap: 40px;
        text-align: center;
    }

    .about-visual {
        height: 350px;
    }

    .about-graphic,
    .about-graphic-alt {
        width: 250px;
        height: 250px;
    }

    .about-graphic img.profile-img {
        width: 200px;
        height: 200px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}

/* Mobile Screens */
@media (max-width: 600px) {
    .about {
        padding: 60px 15px;
    }

    .about-content {
        gap: 30px;
    }

    .about-text h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .about-visual {
        height: 280px;
    }

    .about-graphic,
    .about-graphic-alt {
        width: 200px;
        height: 200px;
    }

    .about-graphic img.profile-img {
        width: 160px;
        height: 160px;
        border: 3px solid #ffffff;
    }

    .hexagon:nth-child(1) {
        width: 120px;
        height: 120px;
    }

    .hexagon:nth-child(2) {
        width: 80px;
        height: 80px;
    }

    .hexagon:nth-child(3) {
        width: 150px;
        height: 150px;
    }
}

        /* 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, 94, 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: #032f8e;
            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(6, 2, 61, 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: #0059ff;
            box-shadow: 0 0 20px rgba(5, 77, 154, 0.3);
            background: rgba(237, 235, 235, 0.08);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, #006aff, #430755);
            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(4, 107, 175, 0.5);
        }

        .contact-info {
            padding: 40px;
        }

        .contact-info h3 {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #ffffff, #032cb369);
            -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, #0544c2bf, #aa00ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .info-details h4 {
            color: #3300ff;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .info-details p {
            opacity: 0.8;
        }

       /* Map Container */
.map-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 139, 0.2);
    transition: all 0.3s ease;
}

/* Embedded Google Map */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    transition: transform 0.3s ease;
}

/* Glass overlay */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 139, 0.08);
    pointer-events: none;
}

/* Location label */
.map-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 139, 0.25);
    padding: 10px 15px;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-size: 0.95rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.map-label p:first-child {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1rem;
}

.map-label p:last-child {
    font-size: 0.85rem;
    margin: 0;
}

/* Hover effect */
.map-container:hover iframe {
    transform: scale(1.02);
}

/* =========================
   MEDIA QUERIES
========================= */

/* Large Tablets / iPad */
@media (max-width: 1024px) {
    .map-container {
        height: 350px;
    }
    .map-label {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

/* Tablets / Small screens */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
    .map-label {
        font-size: 0.85rem;
        padding: 7px 10px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .map-container {
        height: 250px;
        border-radius: 12px;
    }
    .map-label {
        font-size: 0.8rem;
        padding: 6px 8px;
    }
}


        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.8);
            border-top: 1px solid rgba(255, 94, 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: #0084ff;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .footer-links a:hover {
            color: #00B2FF;
            text-shadow: 0 0 10px currentColor;
        }

        .copyright {
            opacity: 0.6;
            font-size: 0.9rem;
        }

        .copyright a {
            color: #b909ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .copyright a:hover {
            color: #00B2FF;
            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, 94, 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, 94, 0, 0.5);
            }
            50% { 
                transform: translateY(-10px);
                box-shadow: 0 10px 40px rgba(255, 94, 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);
            }
        }