/* =========================================
   CSS Variables & Theme Setup
========================================= */
:root {
    /* Brand Colors extracted from logo */
    --neon-blue: #00e5ff;
    --neon-purple: #c026ff;
    --dark-bg: #030305;
    --darker-bg: #010102;
    --text-main: #ffffff;
    --text-muted: #e2e2e2;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    --gradient-glow: linear-gradient(135deg, rgba(0, 229, 255, 0.8), rgba(192, 38, 255, 0.8));
    
    /* Glassmorphism */
    --glass-bg: rgba(10, 10, 15, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   Reset & Base Styles
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor for custom cursor */
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: clamp(14px, 2.5vw, 18px);
}

/* Grid background removed as requested */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-container {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

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

/* =========================================
   Custom Cursor
========================================= */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--neon-blue);
    transition: width 0.2s, height 0.2s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(176, 38, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
}

/* =========================================
   Canvas Background
========================================= */
#galaxy-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* =========================================
   UI Components
========================================= */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2) inset;
}

.glow-effect {
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.4);
    transition: var(--transition-smooth);
}

.glow-effect:hover {
    box-shadow: 0 0 40px rgba(0, 210, 255, 0.6);
    transform: translateY(-3px);
}

.hover-glow {
    transition: var(--transition-smooth);
    box-shadow: 0 0 0 transparent;
}

.hover-glow:hover {
    box-shadow: 0 0 40px rgba(176, 38, 255, 0.7);
    transform: translateY(-3px);
}

/* =========================================
   Navigation
========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.5s, backdrop-filter 0.5s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 160px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 160px; /* Increased size */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links li a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links li a:hover {
    color: white;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.hover-underline:hover::after {
    width: 100%;
}

/* =========================================
   Hero Section
========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 160px;
    text-align: center;
}

/* Spacer for non-hero pages */
.nav-spacer {
    height: 140px;
    width: 100%;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Animation utility classes for JS */

/* =========================================
   Floating shapes (CSS implementation)
========================================= */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 20s infinite alternate cubic-bezier(0.5, 0, 0.5, 1);
    pointer-events: none;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--neon-blue);
    top: 10%;
    left: 10%;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--neon-purple);
    bottom: -10%;
    right: 5%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(0, 210, 255, 0.5);
    top: 40%;
    left: 45%;
    animation-delay: -10s;
    animation-duration: 18s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, 50px) rotate(10deg); }
}

/* =========================================
   Responsive queries
========================================= */
/* =========================================
   Responsive queries
========================================= */
@media (max-width: 991px) {
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .services-grid, .about-grid, .checklist-grid, .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .section {
        padding: 48px 16px;
    }
    .services-grid, .about-grid, .checklist-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    .trust-badges {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Layout Sections
========================================= */
.section {
    padding: 80px 24px;
    position: relative;
    z-index: 2;
}

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

.section-title {
    font-size: clamp(28px, 5vw, 52px);
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

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

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

.margin-auto {
    margin: 0 auto;
}

.glow-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
    margin: 8px auto 1.5rem auto;
    display: block;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.4s;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(0, 229, 255, 0.15), transparent 50%),
                radial-gradient(circle at bottom right, rgba(192, 38, 255, 0.15), transparent 50%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 255, 0.15) inset, 0 8px 32px 0 rgba(192, 38, 255, 0.2);
    transform: translateY(-4px);
}

.glass-card:hover::before {
    opacity: 1;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.glass-card h3 {
    font-size: clamp(16px, 3vw, 22px);
    margin-bottom: 1rem;
}

.glass-card p {
    color: var(--text-muted);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.service-card h3 {
    font-size: clamp(16px, 3vw, 22px);
    margin-bottom: 1rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1.5rem auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
    transform: scale(1.1);
}

.service-link {
    margin-top: auto;
    padding-top: 1.5rem;
    color: var(--neon-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Detailed Sections (Web Dev & Social) */
.detail-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.detail-section.reverse .detail-flex {
    flex-direction: row-reverse;
}

.detail-content, .detail-visual {
    flex: 1;
}

.tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    background: rgba(176, 38, 255, 0.1);
    color: var(--neon-purple);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(176, 38, 255, 0.3);
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

/* Mockups & Visuals */
.mockup-window {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(0, 210, 255, 0.1) inset;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-smooth);
}

.mockup-window:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mockup-body {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
}

.skeleton-anim {
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    animation: loading 2s infinite ease-in-out;
    border-radius: 8px;
}

.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.mockup-dashboard {
    height: 120px;
    margin-bottom: 1rem;
}

.mockup-grid {
    display: flex;
    gap: 1rem;
}

.mockup-card {
    height: 80px;
    flex: 1;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mobile-mockup {
    width: 250px;
    height: 500px;
    border-radius: 40px;
    border: 4px solid #222;
    padding: 1rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(176, 38, 255, 0.2) inset;
}

.mobile-notch {
    width: 120px;
    height: 20px;
    background: #222;
    border-radius: 0 0 15px 15px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-feed {
    margin-top: 2rem;
    height: calc(100% - 2rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feed-header { height: 40px; border-radius: 20px; }
.feed-image { height: 200px; border-radius: 12px; }
.feed-text { height: 60px; border-radius: 8px; }

.float-anim {
    animation: float-y 6s infinite alternate ease-in-out;
}

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

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
    color: white;
}

.icon-1 {
    top: 20%;
    right: 10%;
    color: #E1306C;
    animation: float-y 5s infinite alternate-reverse ease-in-out;
}

.icon-2 {
    bottom: 20%;
    left: 10%;
    color: #0077b5;
    animation: float-y 7s infinite alternate ease-in-out;
}

/* Why Us Section */
.checklist-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.check-item {
    display: flex;
    gap: 1.5rem;
    padding: 2.5rem;
    border-radius: 20px;
    align-items: center;
    transition: var(--transition-smooth);
}

.check-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.02);
    border-color: rgba(0, 210, 255, 0.3);
}

.check-icon {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.check-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.check-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
}

.cta-box {
    text-align: center;
    padding: 5rem 2rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    border-color: rgba(176, 38, 255, 0.3);
    box-shadow: 0 0 50px rgba(176, 38, 255, 0.1) inset;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 4rem;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand .logo {
    margin-bottom: 0.5rem;
}

.footer-brand .brand-logo {
    height: 160px !important;
    width: auto;
    object-fit: contain;
}

.footer-brand .tagline {
    color: var(--text-muted);
    font-size: 1.2rem;
    letter-spacing: 3px;
    font-weight: 500;
    margin-top: 0.5rem;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.2);
}

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

/* Mobile Menu Button */
.menu-btn {
    display: none;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: none; /* using custom cursor */
    z-index: 1001;
    transition: var(--transition-smooth);
}

.menu-btn-burger {
    width: 25px;
    height: 2px;
    background: var(--text-main);
    border-radius: 5px;
    transition: var(--transition-smooth);
    position: relative;
}

.menu-btn-burger::before,
.menu-btn-burger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--text-main);
    border-radius: 5px;
    transition: var(--transition-smooth);
}

.menu-btn-burger::before {
    transform: translateY(-8px);
}

.menu-btn-burger::after {
    transform: translateY(8px);
}

.menu-btn.open .menu-btn-burger {
    background: transparent;
}

.menu-btn.open .menu-btn-burger::before {
    transform: rotate(45deg);
}

.menu-btn.open .menu-btn-burger::after {
    transform: rotate(-45deg);
}

/* Base utilities for animations */

/* Responsive updates */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }
    .nav-content .btn {
        display: none;
    }
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 8, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        gap: 2rem;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li a {
        font-size: 1.5rem;
    }
    .hero-title { font-size: 2.8rem; }
    .hero-cta { flex-direction: column; gap: 1rem; }
    .btn { width: 100%; text-align: center; }
    
    .nav-content { height: 80px; }
    .brand-logo { height: 60px; }
    .footer-brand .brand-logo { height: 80px !important; }
    .hero { padding-top: 110px; }
    .nav-spacer { height: 90px; }
    .graphics-mockup { width: 260px; height: 260px; }
    
    .detail-flex { flex-direction: column !important; gap: 3rem; }
    .section-title { font-size: 2.2rem; }
    .cta-box h2 { font-size: 2.2rem; }
    .footer-content { flex-direction: column; align-items: center; text-align: center; }
    .footer-links { flex-direction: column; width: 100%; }
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
}

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

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* =========================================
   New Enhancements
========================================= */
/* Feature Boxes */
.feature-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem 1rem;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}
.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.1);
}
.feature-box h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.feature-popup {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    z-index: 100;
}
.feature-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: var(--neon-purple) transparent transparent transparent;
}
.feature-box:hover .feature-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}
.trust-badges:hover {
    opacity: 1;
    filter: grayscale(0%);
}
.trust-badge-item {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.trust-badge-item span:first-child {
    font-size: 2rem;
}
.trust-badges img {
    height: 40px;
}

/* Typing Effect */
.typing-text::after {
    content: '|';
    animation: blink 1s step-end infinite;
}
@keyframes blink {
    50% { opacity: 0; }
}

/* Marquee Section */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}
.marquee-content:hover {
    animation-play-state: paused;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0 3rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-muted);
}
.marquee-item i {
    color: var(--neon-purple);
}
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Accordion FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}
.faq-question {
    padding: 1.5rem;
    cursor: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}
.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--neon-blue);
}
.faq-question i {
    transition: transform 0.3s;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    padding: 0 1.5rem;
    color: var(--text-muted);
}
.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    padding-right: 3rem;
    left: 0;
}
.timeline-item:nth-child(even) {
    left: 50%;
    padding-right: 0;
    padding-left: 3rem;
}
.timeline-dot {
    position: absolute;
    right: -10px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}
.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}
.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}
.timeline-content h4 {
    color: var(--neon-purple);
    margin-bottom: 0.5rem;
}

/* Counters */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

/* Floating Labels */
.form-group.floating {
    position: relative;
}
.form-group.floating .form-control {
    padding: 1.5rem 1.5rem 0.5rem;
}
.form-group.floating label {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    color: var(--text-muted);
    transition: 0.2s ease-out;
    pointer-events: none;
}
.form-group.floating .form-control:focus + label,
.form-group.floating .form-control:not(:placeholder-shown) + label {
    top: 0.3rem;
    font-size: 0.8rem;
    color: var(--neon-blue);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-item, .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        padding-left: 60px;
        padding-right: 0;
    }
    .timeline-dot, .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
        right: auto;
    }
}

/* Additional Services CSS mockups */
.poster-mockup {
    width: 280px;
    height: 400px;
    background: linear-gradient(135deg, #FF007A, #7000FF);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(255, 0, 122, 0.4);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    animation: float-y 6s infinite alternate ease-in-out;
}
.poster-text {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.poster-element {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    top: -20px;
    right: -20px;
}
.video-mockup {
    width: 100%;
    max-width: 500px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    transform: perspective(1000px) rotateY(10deg) rotateX(5deg);
    animation: float-y 7s infinite alternate ease-in-out;
}
.video-screen {
    width: 100%;
    height: 200px;
    background: #000;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-btn-css {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}
.video-timeline-container {
    height: 60px;
    background: rgba(0,0,0,0.5);
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
}
.timeline-track {
    flex: 1;
    height: 30px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    border-radius: 4px;
    opacity: 0.6;
}
.playhead {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: white;
    left: 10%;
    animation: move-playhead 4s infinite linear;
}
.playhead::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -4px;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}
@keyframes move-playhead {
    0% { left: 10%; }
    100% { left: 90%; }
}
.graphics-mockup {
    position: relative;
    width: 300px;
    height: 300px;
    animation: float-y 5s infinite alternate ease-in-out;
}
.graphics-tablet {
    width: 100%;
    height: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transform: rotate(-10deg) perspective(1000px) rotateX(10deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.graphics-shape-1 {
    width: 100px;
    height: 100px;
    background: var(--neon-purple);
    border-radius: 50%;
    position: absolute;
    top: 20%;
    left: 20%;
    mix-blend-mode: screen;
    animation: float 4s infinite alternate;
}
.graphics-shape-2 {
    width: 120px;
    height: 120px;
    background: var(--neon-blue);
    position: absolute;
    bottom: 20%;
    right: 20%;
    border-radius: 10px;
    mix-blend-mode: screen;
    animation: float 5s infinite alternate-reverse;
}
.graphics-pen {
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 3.5rem;
    color: #fff;
    transform-origin: bottom center;
    animation: draw 3s infinite ease-in-out;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
    z-index: 10;
}
@keyframes draw {
    0% { transform: translate(0,0) rotate(0deg); }
    50% { transform: translate(-40px, 60px) rotate(15deg); }
    100% { transform: translate(0,0) rotate(0deg); }
}
.logo-mockup {
    width: 250px;
    height: 250px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-3d 6s infinite linear;
}
.logo-ring {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 12px solid var(--neon-blue);
    border-radius: 50%;
    transform: rotateX(60deg);
}
.logo-ring-2 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 12px solid var(--neon-purple);
    border-radius: 50%;
    transform: rotateY(60deg) rotateX(30deg);
}
.logo-center {
    position: absolute;
    top: 50%; left: 50%;
    width: 60px; height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px var(--neon-blue);
}
@keyframes rotate-3d {
    0% { transform: rotateY(0) rotateX(0); }
    100% { transform: rotateY(360deg) rotateX(360deg); }
}

@keyframes fadeText {
    0% { opacity: 0; transform: scale(0.9); }
    30% { opacity: 1; transform: scale(1.1); }
    70% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.9); }
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.5) rotate(-10deg); filter: blur(10px); }
    40% { opacity: 1; transform: scale(1.1) rotate(0deg); filter: blur(0px); }
    80% { opacity: 1; transform: scale(1) rotate(0deg); filter: blur(0px); }
    100% { opacity: 0; transform: scale(1.2) rotate(10deg); filter: blur(5px); }
}
