/* Global Styles */
:root {
    /* Futuristic color palette */
    --primary-color: #0a192f;
    --secondary-color: #64ffda;
    --accent-color: #8892b0;
    --accent-color-light: #a8b2d1;
    --accent-color-dark: #495670;
    --text-color: #e6f1ff;
    --light-gray: #112240;
    --medium-gray: #233554;
    --dark-gray: #ccd6f6;
    --white: #e6f1ff;
    --neon-glow: 0 0 10px rgba(100, 255, 218, 0.3), 0 0 20px rgba(100, 255, 218, 0.2);
    --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    
    /* Futuristic gradients */
    --gradient-primary: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    --gradient-secondary: linear-gradient(135deg, #64ffda 0%, #00b8a9 100%);
    --gradient-accent: linear-gradient(135deg, #8892b0 0%, #495670 100%);
    --gradient-dark: linear-gradient(to right, #020024 0%, #090979 35%, #00d4ff 100%);
    --gradient-light: linear-gradient(to right, #8e2de2 0%, #4a00e0 100%);
    --gradient-neon: linear-gradient(to right, #12c2e9 0%, #c471ed 50%, #f64f59 100%);
    
    /* Futuristic effects */
    --glass-bg: rgba(10, 25, 47, 0.7);
    --glass-border: 1px solid rgba(100, 255, 218, 0.2);
    --glass-effect: backdrop-filter: blur(10px);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    background-image: radial-gradient(circle at 25% 25%, rgba(100, 255, 218, 0.05) 0%, transparent 50%), 
                      radial-gradient(circle at 75% 75%, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="1" height="1" fill="rgba(100, 255, 218, 0.03)" /></svg>');
    pointer-events: none;
    z-index: -1;
}

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

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: var(--neon-glow);
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: var(--gradient-secondary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--neon-glow);
}

.section-header h2::before {
    content: '<';
    position: absolute;
    left: -40px;
    color: var(--secondary-color);
    opacity: 0.5;
    font-family: monospace;
}

.section-header h2 span::after {
    content: '/>';
    position: absolute;
    right: -50px;
    color: var(--secondary-color);
    opacity: 0.5;
    font-family: monospace;
}

.section-header p {
    color: var(--accent-color-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.section-header h2 .highlight {
    color: var(--secondary-color);
    position: relative;
}

.section-header h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-secondary);
    box-shadow: var(--neon-glow);
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: var(--glass-border);
}

.btn-primary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: var(--neon-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.5), 0 0 30px rgba(100, 255, 218, 0.3);
    color: var(--primary-color);
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-secondary {
    background-color: var(--glass-bg);
    color: var(--accent-color-light);
    border: 1px solid var(--accent-color-light);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(136, 146, 176, 0.3);
}

.btn-secondary:hover::before {
    transform: scaleY(1);
}

.btn-glow {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(100, 255, 218, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.btn-glow:hover {
    color: var(--primary-color);
    box-shadow: var(--neon-glow);
    transform: translateY(-5px);
}

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

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 90%;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
        max-width: 80%;
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .platform-cards,
    .services-grid,
    .features-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 20px 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .header-actions {
        margin: 15px 0;
    }
    
    .mobile-menu {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
    }
    
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .video-link {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links ul,
    .footer-services ul {
        justify-content: center;
    }
}

/* Header Styles */
header {
    background: rgba(10, 25, 47, 0.85);
    color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    text-transform: uppercase;
}

.logo span {
    color: var(--secondary-color);
    font-weight: 800;
    position: relative;
    text-shadow: var(--neon-glow);
}

.logo span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 15px;
    border-radius: 20px;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    box-shadow: var(--neon-glow);
}

.nav-links a:hover {
    background: rgba(100, 255, 218, 0.1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

.nav-links a.active {
    color: var(--secondary-color);
    background: rgba(100, 255, 218, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
}

.video-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(100, 255, 218, 0.1);
    color: var(--secondary-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: var(--transition);
}

.video-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: var(--neon-glow);
    transform: translateY(-3px);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(100, 255, 218, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.video-card {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.3), 0 0 60px rgba(255, 107, 107, 0.1);
    position: relative;
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.video-content {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 36, 61, 0.9), rgba(9, 9, 121, 0.8), rgba(0, 212, 255, 0.9));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.video-hologram {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hologram-rays {
    position: absolute;
    width: 220px;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(100, 255, 218, 0.5) 0%, rgba(0, 0, 0, 0) 70%);
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.video-logo {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 3;
}

.jvx-logo {
    width: 200px;
    height: 80px;
    filter: drop-shadow(0 0 5px rgba(100, 255, 218, 0.7));
}

.logo-text {
    fill: #64ffda;
    font-size: 30px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 2px rgba(100, 255, 218, 0.7)); }
    50% { filter: drop-shadow(0 0 8px rgba(100, 255, 218, 0.9)); }
}

.logo-subtext {
    fill: #ff6b6b;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 3px;
    animation: glow-red 3s ease-in-out infinite;
}

@keyframes glow-red {
    0%, 100% { filter: drop-shadow(0 0 2px rgba(255, 107, 107, 0.7)); }
    50% { filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.9)); }
}

.logo-wing {
    animation: float 2s ease-in-out infinite;
}

.logo-wing.left {
    animation-delay: 0.5s;
}

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

.video-tagline {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(0, 36, 61, 0.9), rgba(0, 212, 255, 0.8));
    padding: 15px 0;
    text-align: center;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.video-tagline h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.video-description {
    position: absolute;
    top: 170px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    z-index: 2;
}

.video-text h3 {
    color: #fff;
    font-size: 3rem;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 2px #fff;
}

.accent-text {
    color: #00d4ff;
    font-size: 3.5rem;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.7);
}

.text-white {
    color: #fff;
}

.dashboard-graphic {
    width: 300px;
    height: 250px;
    background-color: rgba(108, 92, 231, 0.2);
    border-radius: 15px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(100, 255, 218, 0.2) inset;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.dashboard-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.dashboard-item.chart {
    background: linear-gradient(45deg, rgba(46, 204, 113, 0.3), rgba(26, 188, 156, 0.3));
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 100%;
    padding: 5px;
}

.chart-bar {
    width: 15%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 3px 3px 0 0;
    animation: barGrow 2s ease-in-out infinite;
}

.chart-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.chart-bar:nth-child(2) { height: 70%; animation-delay: 0.2s; }
.chart-bar:nth-child(3) { height: 50%; animation-delay: 0.4s; }
.chart-bar:nth-child(4) { height: 80%; animation-delay: 0.6s; }

@keyframes barGrow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.1); }
}

.dashboard-item.table {
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.3), rgba(41, 128, 185, 0.3));
}

.table-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
    gap: 3px;
}

.table-cell {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    animation: pulse 3s infinite;
}

.table-cell:nth-child(1) { animation-delay: 0s; }
.table-cell:nth-child(2) { animation-delay: 0.5s; }
.table-cell:nth-child(3) { animation-delay: 1s; }
.table-cell:nth-child(4) { animation-delay: 1.5s; }

.dashboard-item.graph {
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.3), rgba(192, 57, 43, 0.3));
    position: relative;
}

.graph-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-50%);
}

.graph-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    animation: lineScan 3s linear infinite;
}

@keyframes lineScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.dashboard-item.calculator {
    background: linear-gradient(45deg, rgba(243, 156, 18, 0.3), rgba(211, 84, 0, 0.3));
}

.calculator-dots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
    gap: 5px;
    padding: 10px;
}

.calculator-dot {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: blink 2s infinite;
}

.calculator-dot:nth-child(1) { animation-delay: 0s; }
.calculator-dot:nth-child(2) { animation-delay: 0.5s; }
.calculator-dot:nth-child(3) { animation-delay: 1s; }
.calculator-dot:nth-child(4) { animation-delay: 1.5s; }

@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.dashboard-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.play-btn-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 2s infinite;
}

.play-btn-ring::before, .play-btn-ring::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    top: 0;
    left: 0;
    animation: ringPulse 2s infinite;
}

.play-btn-ring::before {
    animation-delay: 0.5s;
}

.play-btn-ring::after {
    animation-delay: 1s;
}

@keyframes ringPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(100, 255, 218, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3), 0 0 40px rgba(100, 255, 218, 0.1);
    position: relative;
    overflow: hidden;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.3), transparent 30%);
    animation: rotate 4s linear infinite;
}

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

.play-btn:hover {
    background-color: rgba(100, 255, 218, 0.4);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.7), 0 0 60px rgba(100, 255, 218, 0.3);
}

.play-btn:hover i {
    animation: pulse 1s infinite;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.05;
    z-index: 0;
    filter: blur(50px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    opacity: 0.05;
    z-index: 0;
    filter: blur(60px);
}

/* Animated grid background */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(100, 255, 218, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(100, 255, 218, 0.05) 1px, transparent 1px);
    z-index: 0;
    transform: perspective(1000px) rotateX(60deg) scale(2, 1.5);
    transform-origin: center center;
    opacity: 0.2;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative;
    display: inline-block;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: var(--neon-glow);
}

.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
    box-shadow: var(--neon-glow);
}

.hero-text h2 {
    font-size: 2rem;
    color: var(--accent-color-light);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-left: 20px;
}

.hero-text h2::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    opacity: 0.8;
    font-family: monospace;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 40px;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(100, 255, 218, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

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

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(100, 255, 218, 0.05);
    border-radius: 50%;
    filter: blur(70px);
    z-index: -1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    border: var(--glass-border);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Platforms Section */
.platforms {
    padding: 150px 0 100px;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.platforms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(100, 255, 218, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.platforms::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 80%, rgba(100, 255, 218, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.platform-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.platform-card {
    background-color: var(--glass-bg);
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    border: var(--glass-border);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 1;
}

.platform-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 20px rgba(100, 255, 218, 0.3);
}

.platform-card:hover::before {
    transform: scaleX(1);
}

.platform-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 10px;
}

.platform-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.platform-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid transparent;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.platform-card:hover .platform-icon::before {
    border-color: var(--secondary-color);
    box-shadow: var(--neon-glow);
    animation: rotate 4s linear infinite;
}

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

.platform-icon.amazon {
    background: linear-gradient(135deg, #ff9900 0%, #ff8000 100%);
    box-shadow: 0 10px 20px rgba(255, 153, 0, 0.3);
}

.platform-icon.flipkart {
    background: linear-gradient(135deg, #2874f0 0%, #1a56c4 100%);
    box-shadow: 0 10px 20px rgba(40, 116, 240, 0.3);
}

.platform-icon.myntra {
    background: linear-gradient(135deg, #ff3f6c 0%, #ff1744 100%);
    box-shadow: 0 10px 20px rgba(255, 63, 108, 0.3);
}

.platform-icon.meesho {
    background: linear-gradient(135deg, #f43397 0%, #e6007e 100%);
    box-shadow: 0 10px 20px rgba(244, 51, 151, 0.3);
}

.platform-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.platform-card p {
    color: var(--accent-color-light);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.platform-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(100, 255, 218, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.platform-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.platform-link:hover {
    color: var(--secondary-color);
    background: rgba(100, 255, 218, 0.2);
    box-shadow: var(--neon-glow);
    transform: translateY(-3px);
}

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

/* Services Section */
.services {
    padding: 150px 0 100px;
    background-color: var(--medium-gray);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(100, 255, 218, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: var(--glass-bg);
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border: var(--glass-border);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 20px rgba(100, 255, 218, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
    border: 2px solid var(--secondary-color);
    box-shadow: var(--neon-glow);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.3;
    }
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-card p {
    color: var(--accent-color-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.service-features li {
    margin-bottom: 15px;
    color: var(--accent-color-light);
    display: flex;
    align-items: center;
    font-size: 1rem;
    transition: var(--transition);
}

.service-features li:hover {
    transform: translateX(5px);
    color: var(--text-color);
}

.service-features li i {
    color: var(--secondary-color);
    margin-right: 12px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.service-features li:hover i {
    transform: scale(1.2);
    box-shadow: var(--neon-glow);
}

.service-link {
    color: var(--secondary-color);
    font-weight: 500;
    display: inline-block;
    margin-top: 20px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 150px 0 100px;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(100, 255, 218, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.feature {
    background-color: var(--glass-bg);
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    border: var(--glass-border);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.feature:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 20px rgba(100, 255, 218, 0.3);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 1;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    font-size: 2.2rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
    border: 2px solid var(--secondary-color);
    box-shadow: var(--neon-glow);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 3s infinite;
}

.feature:hover .feature-icon {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.feature h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature p {
    color: var(--accent-color-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Team Section */
.team {
    padding: 150px 0 100px;
    background-color: var(--medium-gray);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.team::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(100, 255, 218, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.team-member {
    background-color: var(--glass-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: var(--glass-border);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 20px rgba(100, 255, 218, 0.3);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 2;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.member-image {
    height: 200px;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.member-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
    border: 2px solid var(--secondary-color);
    box-shadow: var(--neon-glow);
    transition: var(--transition);
}

.member-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 3s infinite;
}

.team-member:hover .member-icon {
    transform: scale(1.1);
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.member-position {
    color: var(--accent-color-light);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.member-position::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gradient-secondary);
    box-shadow: var(--neon-glow);
}

.member-bio {
    color: var(--accent-color-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.member-social a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--secondary-color);
    opacity: 0.1;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0.1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.newsletter-content p {
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-logo p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-links h3,
.footer-services h3,
.footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-social p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}
