/* ===========================
   ULTRA SMOOTH CUSTOM CURSOR START
   =========================== */

/* Hide default cursor */
body,
a,
button,
input,p
textarea,
select {
    cursor: none !important;
}

/* Cursor Dot (Main Cursor) */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--quantum-cyan);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    box-shadow: 0 0 20px var(--quantum-cyan);
    transform: translate(-50%, -50%);
    will-change: transform;
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

/* Cursor Ring (Outer Circle) */
.cursor-ring {
    width: 40px;
    height: 40px;
    border: 2px solid var(--quantum-cyan);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    will-change: transform;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    opacity: 0.6;
}

/* Hover States */
a:hover~.cursor-dot,
button:hover~.cursor-dot,
.clickable:hover~.cursor-dot {
    width: 16px;
    height: 16px;
    background: var(--quantum-purple);
    box-shadow: 0 0 30px var(--quantum-purple);
}

a:hover~.cursor-ring,
button:hover~.cursor-ring,
.clickable:hover~.cursor-ring {
    width: 60px;
    height: 60px;
    border-color: var(--quantum-purple);
    opacity: 1;
}

/* Active/Click State */
.cursor-dot.active {
    width: 12px;
    height: 12px;
    background: var(--quantum-pink);
    box-shadow: 0 0 25px var(--quantum-pink);
}

.cursor-ring.active {
    width: 50px;
    height: 50px;
    border-color: var(--quantum-pink);
}

/* Hide on Mobile/Tablet */
@media (max-width: 1024px) {

    body,
    a,
    button,
    input,
    textarea,
    select {
        cursor: auto !important;
    }

    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }
}

/* ===========================
   ULTRA SMOOTH CUSTOM CURSOR END
   =========================== */

/* ===========================
   PREMIUM RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Quantum Theme Colors */
    --quantum-cyan: #00f5ff;
    --quantum-blue: #0095ff;
    --quantum-purple: #7c3aed;
    --quantum-pink: #ff006e;
    --quantum-gold: #ffd700;

    /* Background Colors */
    --bg-primary: #030014;
    --bg-secondary: #0a0420;
    --bg-tertiary: #150a2e;

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: rgba(0, 245, 255, 0.1);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b4c1d8;
    --text-muted: #7a8ba3;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00f5ff 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #ff006e 0%, #7c3aed 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    --gradient-partner: linear-gradient(135deg, #ff006e 0%, #ff4d00 100%);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

/* ===========================
   ANIMATED BACKGROUND PARTICLES
   =========================== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at top, #0a0420 0%, #030014 100%);
}

/* ===========================
   QUANTUM HEADER STYLES
   =========================== */
.quantum-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(3, 0, 20, 0.95) 0%,
            rgba(10, 4, 32, 0.9) 50%,
            rgba(21, 10, 46, 0.85) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 245, 255, 0.05);
}

.quantum-header.scrolled .header-gradient-bg {
    background: linear-gradient(180deg,
            rgba(3, 0, 20, 0.98) 0%,
            rgba(10, 4, 32, 0.95) 100%);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.15);
}

/* Cyber Grid Background */
.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

/* ===========================
   PREMIUM NAVBAR
   =========================== */
.premium-navbar {
    position: relative;
    padding: 20px 0;
    z-index: 10;
}

.nav-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===========================
   QUANTUM LOGO STYLES
   =========================== */
.quantum-logo {
    position: relative;
    display: inline-block;
    z-index: 100;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quantum-logo:hover .logo-glow {
    opacity: 1;
    animation: pulse-glow 2s ease-in-out infinite;
}

.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(0, 245, 255, 0.5));
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.quantum-logo:hover .logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(0, 245, 255, 0.8));
    transform: scale(1.05);
}

.logo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--quantum-cyan);
    border-radius: 50%;
    opacity: 0;
}

.quantum-logo:hover .logo-pulse {
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes pulse-ring {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* ===========================
   DESKTOP NAVIGATION
   =========================== */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.quantum-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.menu-item {
    position: relative;
}

.quantum-link {
    position: relative;
    display: inline-block;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.link-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.link-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--quantum-cyan);
}

.quantum-link:hover .link-hover-effect {
    width: 100%;
}

.quantum-link:hover .link-text {
    color: var(--quantum-cyan);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

/* ===========================
   BECOME A PARTNER BUTTON (NEW)
   =========================== */
.partner-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-primary);
    overflow: hidden;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
        var(--gradient-partner) border-box;
    transition: all 0.4s ease;
}

.partner-btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-partner);
    opacity: 0.25;
    transition: opacity 0.4s ease;
}

.partner-btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.5) 0%, transparent 70%);
    transition: all 0.4s ease;
}

.partner-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.5);
}

.partner-cta-btn:hover .partner-btn-bg {
    opacity: 1;
}

.partner-cta-btn:hover .partner-btn-glow {
    width: 200%;
    height: 200%;
}

.partner-cta-btn:hover .partner-btn-content {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* ===========================
   PREMIUM CTA BUTTON
   =========================== */
.quantum-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-primary);
    overflow: hidden;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
        var(--gradient-primary) border-box;
    transition: all 0.4s ease;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.2;
    transition: opacity 0.4s ease;
}

.cta-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.4) 0%, transparent 70%);
    transition: all 0.4s ease;
}

.quantum-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.4);
}

.quantum-cta:hover .cta-bg {
    opacity: 1;
}

.quantum-cta:hover .cta-glow {
    width: 200%;
    height: 200%;
}

.quantum-cta:hover .cta-text {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* ===========================
   PREMIUM HAMBURGER MENU
   =========================== */
.quantum-hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
}

.hamburger-box {
    width: 35px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 35px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    position: absolute;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    content: '';
    top: -10px;
}

.hamburger-inner::after {
    content: '';
    top: 10px;
}

.quantum-hamburger.active .hamburger-inner {
    background: transparent;
    box-shadow: none;
}

.quantum-hamburger.active .hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
}

.quantum-hamburger.active .hamburger-inner::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ===========================
   PREMIUM SIDEBAR
   =========================== */
.quantum-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 999;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.quantum-sidebar.active {
    right: 0;
}

.sidebar-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 0, 20, 0.9);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.quantum-sidebar.active .sidebar-backdrop {
    opacity: 1;
}

.sidebar-panel {
    position: absolute;
    top: 120px;
    right: 0;
    width: 400px;
    max-width: 90%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(10, 4, 32, 0.98) 0%,
            rgba(3, 0, 20, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 50px rgba(0, 245, 255, 0.1);
    overflow-y: auto;
    padding: 30px;
}

/* Sidebar Header */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--glass-border);
}

.sidebar-logo {
    position: relative;
}

.sidebar-logo img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(0, 245, 255, 0.9));
}

.sidebar-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(15px);
    animation: pulse-glow 3s ease-in-out infinite;
}

.sidebar-close {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.sidebar-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--gradient-primary);
    transform: translate(-50%, -50%) rotate(45deg);
}

.sidebar-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.sidebar-close:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.sidebar-close:hover span {
    background: var(--text-primary);
}

/* Sidebar Navigation */
.sidebar-nav {
    margin-bottom: 40px;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-item {
    margin-bottom: 8px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: left 0.4s ease;
}

.sidebar-link:hover::before {
    left: 0;
}

.sidebar-link:hover {
    border-color: var(--glass-border);
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.2);
}

.link-icon {
    font-size: 20px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--quantum-cyan);
}

.link-label {
    flex: 1;
}

.link-arrow {
    font-size: 14px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--quantum-cyan);
}

.sidebar-link:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Partner Link Special Style (NEW) */
.partner-item {
    margin-top: 20px;
}

.partner-link {
    background: var(--gradient-partner);
    border: 1px solid var(--quantum-pink);
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.3);
}

.partner-link:hover {
    transform: translateX(-5px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 0, 110, 0.5);
}

.partner-link .link-icon,
.partner-link .link-arrow {
    color: var(--text-primary);
}

/* Ticket Link Special Style */
.ticket-item {
    margin-top: 10px;
}

.ticket-link {
    background: var(--gradient-primary);
    border: 1px solid var(--quantum-cyan);
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.3);
}

.ticket-link:hover {
    transform: translateX(-5px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 245, 255, 0.5);
}

.ticket-link .link-icon,
.ticket-link .link-arrow {
    color: var(--text-primary);
}

/* Sidebar Social */
.sidebar-social {
    padding: 30px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 30px;
}

.social-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 20px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.social-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.4);
}

.social-link:hover .social-glow {
    width: 200%;
    height: 200%;
}

/* Sidebar Footer */
.sidebar-footer {
    margin-top: auto;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
    margin-bottom: 20px;
    opacity: 0.3;
}

.footer-credit {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-credit strong {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 5px;
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    opacity: 0.7;
}

/* ===========================
   RESPONSIVE DESIGN - HEADER
   =========================== */
@media (max-width: 1200px) {
    .quantum-menu {
        gap: 30px;
    }

    .desktop-nav {
        gap: 20px;
    }
    
    .partner-cta-btn {
        padding: 12px 26px;
        font-size: 14px;
    }
    
    .quantum-cta {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .quantum-hamburger {
        display: block;
    }

    .nav-container {
        padding: 0 25px;
    }

    .logo-img {
        height: 100px;
    }
}

@media (max-width: 576px) {
    .premium-navbar {
        padding: 15px 0;
    }

    .nav-container {
        padding: 0 20px;
    }

    .logo-img {
        height: 100px;
    }

    .sidebar-panel {
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
    }

    .sidebar-header {
        margin-bottom: 40px;
    }

    .sidebar-logo img {
        height: 100px;
    }
}

/* Custom Scrollbar */
.sidebar-panel::-webkit-scrollbar {
    width: 6px;
}

.sidebar-panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.sidebar-panel::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

.sidebar-panel::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* ===========================
   PREMIUM HERO BANNER START - UPDATED WITH REDUCED OVERLAY
   =========================== */
.premium-hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: #000;
}

/* Hero Background - UPDATED */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.5; /* INCREASED from 0.25 to 0.5 - image is now more visible */
}

/* UPDATED OVERLAY - Much lighter now */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(3, 0, 20, 0.3) 0%, rgba(3, 0, 20, 0.6) 100%);
    /* REDUCED from 0.7 and 0.95 to 0.3 and 0.6 - much lighter overlay */
}

/* UPDATED GRADIENT - More subtle */
.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 245, 255, 0.03) 0%,
            transparent 30%,
            transparent 70%,
            rgba(124, 58, 237, 0.03) 100%);
    /* REDUCED from 0.08 to 0.03 - more subtle gradient */
}

/* Animated Grid - REDUCED opacity */
.animated-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08; /* REDUCED from 0.15 to 0.08 */
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg,
            transparent,
            var(--quantum-cyan) 50%,
            transparent);
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
    left: 0;
}

.grid-line.horizontal:nth-child(1) {
    top: 25%;
    animation: grid-slide-h 8s infinite ease-in-out;
}

.grid-line.horizontal:nth-child(2) {
    top: 50%;
    animation: grid-slide-h 10s infinite ease-in-out 2s;
}

.grid-line.horizontal:nth-child(3) {
    top: 75%;
    animation: grid-slide-h 12s infinite ease-in-out 4s;
}

.grid-line.vertical {
    width: 1px;
    height: 100%;
    top: 0;
    background: linear-gradient(180deg,
            transparent,
            var(--quantum-cyan) 50%,
            transparent);
}

.grid-line.vertical:nth-child(4) {
    left: 20%;
    animation: grid-slide-v 9s infinite ease-in-out 1s;
}

.grid-line.vertical:nth-child(5) {
    left: 50%;
    animation: grid-slide-v 11s infinite ease-in-out 3s;
}

.grid-line.vertical:nth-child(6) {
    left: 80%;
    animation: grid-slide-v 13s infinite ease-in-out 5s;
}

@keyframes grid-slide-h {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.3;
    }
    50% {
        transform: translateX(0);
    }
}

@keyframes grid-slide-v {
    0%, 100% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.3;
    }
    50% {
        transform: translateY(0);
    }
}

/* Floating Orbs - REDUCED opacity */
.floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15; /* REDUCED from 0.3 to 0.15 */
    animation: float-orb 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--quantum-cyan), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--quantum-purple), transparent);
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--quantum-pink), transparent);
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

/* Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--quantum-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--quantum-cyan);
    animation: particle-float 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4.5s; }
.particle:nth-child(9) { left: 85%; animation-delay: 1.5s; }
.particle:nth-child(10) { left: 95%; animation-delay: 3.5s; }

@keyframes particle-float {
    0% {
        bottom: -10%;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateX(30px) scale(1);
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(-30px) scale(0.5);
    }
}

/* Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 50px 40px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: rgba(0, 245, 255, 0.08);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 35px;
    position: relative;
    backdrop-filter: blur(10px);
    animation: slideDown 0.8s ease-out;
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--quantum-cyan);
    border-radius: 50px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0;
    }
}

.hero-badge i {
    color: var(--quantum-gold);
    font-size: 18px;
    filter: drop-shadow(0 0 8px var(--quantum-gold));
}

.badge-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: var(--text-primary);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Title Section */
.hero-title-section {
    margin-bottom: 50px;
    animation: slideUp 1s ease-out 0.3s both;
}

.hero-main-title {
    font-family: 'Orbitron', sans-serif;
    margin: 0 0 30px;
    line-height: 1.1;
}

.title-line-1,
.title-line-2 {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* INCREASED shadow for better readability */
    position: relative;
}

.title-line-1::after,
.title-line-2::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    filter: blur(8px);
}

.title-highlight {
    display: block;
    font-size: 80px;
    font-weight: 900;
    margin: 15px 0;
    background: linear-gradient(135deg,
            #ffd700 0%,
            #ff8c00 25%,
            #00f5ff 50%,
            #7c3aed 75%,
            #ffd700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: gradient-shift 5s ease infinite;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.highlight-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.2), transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: glow-expand 3s ease-in-out infinite;
}

@keyframes glow-expand {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.deco-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--quantum-cyan), transparent);
}

.deco-icon {
    font-size: 20px;
    color: var(--quantum-gold);
    animation: rotate-icon 4s linear infinite;
}

@keyframes rotate-icon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   EVENT DETAILS GRID WITH COUNTDOWN
   =========================== */
.event-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    animation: slideUp 1s ease-out 0.6s both;
}

.detail-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(10, 4, 32, 0.7); /* INCREASED from 0.6 to 0.7 for better text readability */
    border: 1px solid rgba(255, 255, 255, 0.12); /* INCREASED border visibility */
    border-radius: 16px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.detail-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.detail-box:hover::before {
    left: 100%;
}

.detail-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.2);
}

.detail-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.detail-box:hover .detail-glow {
    transform: scaleX(1);
}

.detail-icon-wrap {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 14px;
    opacity: 0.2;
    transition: all 0.4s ease;
}

.detail-box:hover .icon-bg {
    opacity: 1;
    transform: rotate(10deg) scale(1.1);
}

.detail-icon-wrap i {
    font-size: 28px;
    color: var(--quantum-cyan);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.detail-box:hover .detail-icon-wrap i {
    color: var(--text-primary);
    transform: scale(1.1);
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.detail-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.detail-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
}

/* ===========================
   COUNTDOWN TIMER STYLES
   =========================== */
.countdown-box {
    grid-column: span 1;
}

.countdown-box .detail-info {
    width: 100%;
}

.countdown-display {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: nowrap;
}

.countdown-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
    flex: 1;
}

.countdown-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--quantum-cyan);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.6);
    line-height: 1;
    animation: pulse-glow-number 2s ease-in-out infinite;
}

@keyframes pulse-glow-number {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 245, 255, 0.6);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 245, 255, 1);
    }
}

.countdown-unit {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 4px;
    font-family: 'Rajdhani', sans-serif;
}

.countdown-separator {
    font-size: 24px;
    font-weight: 700;
    color: var(--quantum-cyan);
    opacity: 0.5;
    animation: blink-separator 1.5s ease-in-out infinite;
}

@keyframes blink-separator {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Event Live Message (when countdown reaches 0) */
.countdown-live {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse-live 1.5s ease-in-out infinite;
}

@keyframes pulse-live {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Hero Description Container */
.hero-description {
    max-width: 900px;
    margin: 0 auto 50px;
    animation: slideUp 1s ease-out 0.9s both;
}

/* First Box - Text Only (No Icon) */
.text-box-primary {
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.12), rgba(124, 58, 237, 0.12));
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    margin-bottom: 25px;
    backdrop-filter: blur(15px);
    text-align: center;
}

.text-heading {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Second Box - Text + Icon */
.text-box-secondary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.12), rgba(124, 58, 237, 0.12));
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    margin-bottom: 25px;
    backdrop-filter: blur(15px);
}

/* Icon Styling */
.icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    flex-shrink: 0;
}

.icon-wrapper i {
    font-size: 24px;
    color: var(--text-primary);
}

/* Text Content for Both Boxes */
.text-content {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.text-box-primary .text-content {
    text-align: center;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: slideUp 1s ease-out 1.2s both;
}

.btn-primary-hero,
.btn-secondary-hero,
.btn-tertiary-hero {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-primary-hero {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.3);
}

.btn-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary-hero:hover .btn-bg-effect {
    transform: translateX(100%);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: shine-sweep 3s infinite;
}

@keyframes shine-sweep {
    0% { left: -100%; }
    20%, 100% { left: 200%; }
}

.btn-primary-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 245, 255, 0.5);
}

.btn-secondary-hero {
    background: rgba(0, 0, 0, 0.5); /* Added semi-transparent background */
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-border-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--quantum-cyan);
    border-radius: 50px;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.4s ease;
}

.btn-secondary-hero:hover .btn-border-effect {
    opacity: 1;
    transform: scale(1);
}

.btn-secondary-hero:hover {
    background: rgba(0, 245, 255, 0.1);
    transform: translateY(-3px);
}

.btn-tertiary-hero {
    background: rgba(0, 0, 0, 0.5); /* Added semi-transparent background */
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-tertiary-hero:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-content i {
    font-size: 18px;
}

/* Hero Topics */
.hero-topics {
    text-align: center;
    animation: slideUp 1s ease-out 1.5s both;
}

.topics-label {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.topics-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.topic-tag {
    padding: 10px 20px;
    background: rgba(0, 245, 255, 0.1); /* INCREASED from 0.05 */
    border: 1px solid rgba(0, 245, 255, 0.3); /* INCREASED border visibility */
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    color: var(--quantum-cyan);
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
    cursor: default;
    backdrop-filter: blur(10px);
}

.topic-tag:hover {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 245, 255, 0.3);
}

/* ===========================
   RESPONSIVE DESIGN - BANNER
   =========================== */
@media (max-width: 1200px) {
    .title-line-1,
    .title-line-2 {
        font-size: 42px;
    }

    .title-highlight {
        font-size: 68px;
    }
}

@media (max-width: 992px) {
    .premium-hero-banner {
        padding: 120px 0 80px;
    }

    .hero-container {
        padding: 100px 30px;
    }

    .title-line-1,
    .title-line-2 {
        font-size: 36px;
    }

    .title-highlight {
        font-size: 58px;
    }

    .event-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .countdown-display {
        gap: 6px;
    }
    
    .countdown-segment {
        min-width: 45px;
    }
    
    .countdown-number {
        font-size: 22px;
    }
    
    .countdown-separator {
        font-size: 20px;
    }

    .description-main {
        font-size: 17px;
    }

    .description-highlight p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .premium-hero-banner {
        min-height: auto;
    }

    .hero-container {
        padding: 70px 25px;
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 11px;
    }

    .badge-text {
        font-size: 11px;
    }

    .title-line-1,
    .title-line-2 {
        font-size: 30px;
    }

    .title-highlight {
        font-size: 48px;
    }

    .detail-box {
        padding: 20px;
    }

    .detail-icon-wrap {
        width: 50px;
        height: 50px;
    }

    .detail-icon-wrap i {
        font-size: 24px;
    }
    
    .countdown-display {
        gap: 5px;
    }
    
    .countdown-segment {
        min-width: 40px;
    }
    
    .countdown-number {
        font-size: 20px;
    }
    
    .countdown-unit {
        font-size: 8px;
    }
    
    .countdown-separator {
        font-size: 18px;
    }

    .description-main {
        font-size: 16px;
    }

    .description-highlight {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .description-highlight p {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-hero,
    .btn-secondary-hero,
    .btn-tertiary-hero {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .premium-hero-banner {
        padding: 100px 0 60px;
    }

    .hero-container {
        padding: 70px 20px;
    }

    .hero-badge {
        padding: 8px 16px;
    }

    .hero-badge i {
        font-size: 16px;
    }

    .badge-text {
        font-size: 10px;
    }

    .title-line-1,
    .title-line-2 {
        font-size: 24px;
    }

    .title-highlight {
        font-size: 38px;
    }

    .deco-line {
        width: 50px;
    }

    .detail-box {
        gap: 15px;
        padding: 18px;
    }

    .detail-icon-wrap {
        width: 45px;
        height: 45px;
    }

    .detail-icon-wrap i {
        font-size: 20px;
    }

    .detail-label {
        font-size: 10px;
    }

    .detail-value {
        font-size: 15px;
    }
    
    .countdown-display {
        gap: 6px;
        justify-content: center;
    }
    
    .countdown-segment {
        min-width: 55px;
    }
    
    .countdown-number {
        font-size: 22px;
    }
    
    .countdown-unit {
        font-size: 8px;
    }
    
    .countdown-separator {
        font-size: 18px;
        margin: 0 2px;
    }

    .description-main {
        font-size: 15px;
    }

    .description-highlight {
        padding: 20px;
    }

    .highlight-icon {
        width: 45px;
        height: 45px;
    }

    .highlight-icon i {
        font-size: 20px;
    }

    .description-highlight p {
        font-size: 16px;
    }

    .description-sub {
        font-size: 15px;
    }

    .btn-primary-hero,
    .btn-secondary-hero,
    .btn-tertiary-hero {
        padding: 15px 30px;
        font-size: 13px;
    }

    .topic-tag {
        padding: 8px 16px;
        font-size: 12px;
    }

    .orb-1,
    .orb-2,
    .orb-3 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 375px) {
    .title-line-1,
    .title-line-2 {
        font-size: 22px;
    }

    .title-highlight {
        font-size: 34px;
    }
    
    .countdown-number {
        font-size: 20px;
    }
    
    .countdown-separator {
        font-size: 16px;
    }
}

/* ===========================
   PREMIUM HERO BANNER END
   =========================== */

/* ===========================
   WHY ATTEND SECTION START
   =========================== */
.why-attend-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #030014 0%, #0a0420 50%, #150a2e 100%);
    overflow: hidden;
}

/* Background Elements */
.section-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.glow-left {
    top: 10%;
    left: -10%;
    background: radial-gradient(circle, var(--quantum-cyan), transparent);
}

.glow-right {
    bottom: 10%;
    right: -10%;
    background: radial-gradient(circle, var(--quantum-purple), transparent);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border: 1px solid rgba(0, 245, 255, 0.1);
    border-radius: 20px;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 10%;
    animation: float-shape 20s infinite ease-in-out;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 5%;
    animation: float-shape 25s infinite ease-in-out 5s;
}

.shape-3 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    right: 15%;
    animation: float-shape 22s infinite ease-in-out 10s;
}

@keyframes float-shape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

/* Container */
.why-attend-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 25px;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--quantum-cyan);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--quantum-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--quantum-cyan);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.section-title {
    margin: 0 0 25px;
}

.title-top {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--quantum-cyan);
    margin-bottom: 10px;
}

.title-main {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--quantum-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.title-accent-line {
    width: 120px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

/* Content Grid */
.content-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 80px;
}

/* Feature Cards */
.features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    position: relative;
    padding: 40px 30px;
    background: rgba(10, 4, 32, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.2);
}

/* Card Decorations */
.card-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.deco-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--quantum-cyan);
    opacity: 0.3;
    transition: all 0.4s ease;
}

.corner-tl {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.corner-br {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.feature-card:hover .deco-corner {
    opacity: 1;
    width: 40px;
    height: 40px;
}

/* Feature Icon */
.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.icon-circle {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 36px;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-circle {
    transform: scale(1.1) rotate(10deg);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.3), transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .icon-glow {
    opacity: 1;
}

.feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 15px;
    text-align: center;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 25px;
}

.feature-stats {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--quantum-cyan);
    font-family: 'Rajdhani', sans-serif;
}

.stat-item i {
    font-size: 16px;
}

/* Info Boxes */
.info-boxes-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.info-box {
    padding: 35px;
    background: rgba(10, 4, 32, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.info-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.info-box:hover::after {
    transform: scaleX(1);
}

.info-box-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 12px;
    font-size: 24px;
    color: var(--quantum-cyan);
}

.info-box h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li i {
    color: var(--quantum-cyan);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Stats Showcase */
.stats-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 50px;
    background: rgba(0, 245, 255, 0.03);
    border: 1px solid rgba(0, 245, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Rajdhani', sans-serif;
}

.stat-label i {
    color: var(--quantum-cyan);
    font-size: 16px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(0, 245, 255, 0.3), transparent);
}

/* CTA Banner */
.cta-banner {
    position: relative;
    padding: 50px;
    background: rgba(10, 4, 32, 0.6);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 25px;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-text h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 10px;
}

.cta-text p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cta-btn-main,
.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.cta-btn-main {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

.btn-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.cta-btn-main:hover .btn-glow-effect {
    width: 300%;
    height: 300%;
}

.cta-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.5);
}

.cta-btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-btn-outline:hover {
    background: rgba(0, 245, 255, 0.05);
    border-color: var(--quantum-cyan);
    transform: translateY(-3px);
}

.btn-text {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.btn-text i {
    font-size: 16px;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1200px) {
    .title-main {
        font-size: 42px;
    }

    .stat-number {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .why-attend-section {
        padding: 80px 0;
    }

    .why-attend-container {
        padding: 0 30px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .title-main {
        font-size: 36px;
    }

    .features-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-boxes-wrapper {
        grid-template-columns: 1fr;
    }

    .stats-showcase {
        gap: 30px;
        padding: 40px 30px;
    }

    .stat-divider {
        display: none;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h3 {
        font-size: 28px;
    }

    .cta-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .why-attend-container {
        padding: 0 25px;
    }

    .title-top {
        font-size: 14px;
    }

    .title-main {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .info-box {
        padding: 30px 25px;
    }

    .stats-showcase {
        padding: 35px 25px;
    }

    .stat-number {
        font-size: 42px;
    }

    .cta-banner {
        padding: 40px 30px;
    }

    .cta-text h3 {
        font-size: 24px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-main,
    .cta-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .why-attend-section {
        padding: 60px 0;
    }

    .why-attend-container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .header-badge {
        padding: 8px 20px;
        font-size: 11px;
    }

    .title-top {
        font-size: 13px;
    }

    .title-main {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .content-grid {
        margin-bottom: 60px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .icon-circle {
        font-size: 30px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 15px;
    }

    .info-box {
        padding: 25px 20px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .info-box h4 {
        font-size: 18px;
    }

    .info-list li {
        font-size: 14px;
    }

    .stats-showcase {
        gap: 25px;
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }

    .cta-banner {
        padding: 30px 20px;
    }

    .cta-text h3 {
        font-size: 22px;
    }

    .cta-text p {
        font-size: 14px;
    }

    .cta-btn-main,
    .cta-btn-outline {
        padding: 14px 28px;
        font-size: 13px;
    }

    .bg-glow {
        width: 400px;
        height: 400px;
    }

    .shape-1,
    .shape-2,
    .shape-3 {
        width: 100px;
        height: 100px;
    }
}

/* ===========================
   WHY ATTEND SECTION END
   =========================== */

/* ===========================
   PAST EVENT SECTION START
   =========================== */
.past-event-section {
    position: relative;
    padding: 100px 0;
    background: #0a0420;
    overflow: hidden;
}

/* Background Elements */
.past-event-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, rgba(0, 245, 255, 0.03) 0px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(0, 245, 255, 0.03) 0px, transparent 1px, transparent 40px);
    opacity: 0.5;
}

.bg-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top left, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(0, 245, 255, 0.08) 0%, transparent 50%);
}

/* Container */
.past-event-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* Section Header */
.past-event-header {
    text-align: center;
    margin-bottom: 70px;
}

.header-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.label-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--quantum-cyan), transparent);
}

.label-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--quantum-cyan);
}

.past-event-title {
    margin: 0 0 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-prefix {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.title-highlight {
    font-family: 'Orbitron', sans-serif;
    font-size: 52px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.3));
}

.title-suffix {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-secondary);
}

.past-event-intro {
    max-width: 750px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Video Highlights Grid */
.video-highlights-grid {
    margin-bottom: 60px;
}

/* Featured Video Card */
.featured-video-card {
    margin-bottom: 50px;
    background: rgba(10, 4, 32, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.featured-video-card:hover {
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.15);
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.featured-video-card:hover .thumbnail-overlay {
    opacity: 1;
}

.play-button {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 30px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.play-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(0, 245, 255, 0.5);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.featured-video-card:hover .play-button {
    transform: scale(1.2);
}

.play-button i {
    margin-left: 5px;
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.video-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.video-info {
    padding: 35px;
}

.video-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 15px;
}

.video-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.video-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--quantum-cyan);
    font-family: 'Rajdhani', sans-serif;
}

.meta-item i {
    font-size: 16px;
}

/* Video Cards Wrapper */
.video-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Day Section */
.day-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.day-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(0, 245, 255, 0.05);
    border-left: 4px solid var(--quantum-cyan);
    border-radius: 10px;
}

.day-header i {
    font-size: 20px;
    color: var(--quantum-cyan);
}

.day-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

/* Video Card */
.video-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 25px;
    padding: 20px;
    background: rgba(10, 4, 32, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.video-card:hover {
    background: rgba(10, 4, 32, 0.6);
    border-color: rgba(0, 245, 255, 0.2);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.1);
}

.video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.1);
}

.thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.video-card:hover .thumb-overlay {
    opacity: 1;
}

.play-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 18px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.video-card:hover .play-icon {
    transform: scale(1.2);
}

.play-icon i {
    margin-left: 3px;
}

.video-time {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
}

.video-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.video-details h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
}

.video-card:hover .video-details h4 {
    color: var(--quantum-cyan);
}

.video-details p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* View All Section */
.view-all-section {
    text-align: center;
    margin-bottom: 70px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: transparent;
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.view-all-btn:hover .btn-bg-layer {
    transform: scaleX(1);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-content i {
    font-size: 20px;
}

.btn-arrow {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.view-all-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.view-all-btn:hover {
    border-color: transparent;
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.3);
}

/* Event Stats Banner */
.event-stats-banner {
    padding: 50px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stats-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-column {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 15px;
    font-size: 30px;
    color: var(--text-primary);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.stat-column:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    font-family: 'Rajdhani', sans-serif;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1200px) {
    .title-highlight {
        font-size: 46px;
    }

    .video-card {
        grid-template-columns: 280px 1fr;
        gap: 20px;
    }

    .stats-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .past-event-section {
        padding: 80px 0;
    }

    .past-event-container {
        padding: 0 30px;
    }

    .past-event-header {
        margin-bottom: 50px;
    }

    .title-highlight {
        font-size: 42px;
    }

    .video-card {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .video-thumb {
        aspect-ratio: 16/9;
    }

    .stats-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-column {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .past-event-container {
        padding: 0 25px;
    }

    .title-prefix {
        font-size: 20px;
    }

    .title-highlight {
        font-size: 36px;
    }

    .title-suffix {
        font-size: 18px;
    }

    .past-event-intro {
        font-size: 16px;
    }

    .video-info {
        padding: 25px;
    }

    .video-title {
        font-size: 24px;
    }

    .video-description {
        font-size: 15px;
    }

    .day-header {
        padding: 12px 20px;
    }

    .day-header h3 {
        font-size: 18px;
    }

    .video-details h4 {
        font-size: 16px;
    }

    .video-details p {
        font-size: 14px;
    }

    .event-stats-banner {
        padding: 35px 25px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .stat-value {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .past-event-section {
        padding: 60px 0;
    }

    .past-event-container {
        padding: 0 20px;
    }

    .past-event-header {
        margin-bottom: 40px;
    }

    .label-line {
        width: 40px;
    }

    .label-text {
        font-size: 11px;
    }

    .title-prefix {
        font-size: 18px;
    }

    .title-highlight {
        font-size: 30px;
    }

    .title-suffix {
        font-size: 16px;
    }

    .past-event-intro {
        font-size: 15px;
    }

    .play-button {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }

    .video-info {
        padding: 20px;
    }

    .video-title {
        font-size: 20px;
    }

    .video-description {
        font-size: 14px;
    }

    .day-header {
        padding: 10px 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .day-header h3 {
        font-size: 16px;
    }

    .video-card {
        padding: 15px;
    }

    .video-card:hover {
        transform: translateX(0);
    }

    .view-all-btn {
        padding: 15px 30px;
        font-size: 13px;
    }

    .event-stats-banner {
        padding: 25px 20px;
    }

    .stat-column {
        gap: 15px;
    }

    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .stat-value {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }
}

/* ===========================
   PAST EVENT SECTION END
   =========================== */

/* ===========================
   PROTAGONISTS SECTION START
   =========================== */
.protagonists-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0420 0%, #030014 50%, #0a0420 100%);
    overflow: hidden;
}

/* Background Elements */
.protagonists-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.1), transparent 70%);
    filter: blur(80px);
    animation: float-circle 25s infinite ease-in-out;
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: 10%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent 70%);
    animation-delay: 8s;
}

.circle-3 {
    width: 450px;
    height: 450px;
    bottom: 5%;
    left: 50%;
    animation-delay: 15s;
}

@keyframes float-circle {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -40px);
    }
    66% {
        transform: translate(-40px, 30px);
    }
}

/* Container */
.protagonists-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* Section Header */
.protagonists-header {
    text-align: center;
    margin-bottom: 50px;
}

.header-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 25px;
}

.header-tag i {
    color: var(--quantum-gold);
    font-size: 14px;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 0.7;
    }
}

.header-tag span {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--quantum-cyan);
}

.protagonists-title {
    margin: 0 0 25px;
}

.title-line {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.title-main {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 50px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--quantum-cyan) 50%, var(--quantum-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.protagonists-subtitle {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===========================
   ✅ YEAR TABS STYLING FOR SPEAKERS
   =========================== */
.year-tabs-container-speakers {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.year-tabs-speakers {
    display: inline-flex;
    background: rgba(10, 4, 32, 0.6);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 60px;
    padding: 8px;
    gap: 8px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.1);
}

.year-tab-speakers {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 40px;
    border-radius: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-width: 160px;
}

.year-tab-speakers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
}

.year-tab-speakers.active::before {
    opacity: 1;
}

.year-tab-speakers:hover::before {
    opacity: 0.5;
}

.tab-year-speakers {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.year-tab-speakers.active .tab-year-speakers {
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.6);
}

.tab-label-speakers {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    opacity: 0.7;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.year-tab-speakers.active .tab-label-speakers {
    color: var(--text-primary);
    opacity: 1;
}

/* Tab Content for Speakers */
.year-tab-content-speakers {
    display: none;
    animation: fadeInContentSpeakers 0.5s ease;
}

.year-tab-content-speakers.active {
    display: block;
}

@keyframes fadeInContentSpeakers {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Speakers Grid */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

/* Speaker Card */
.speaker-card {
    position: relative;
    background: rgba(10, 4, 32, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.speaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.speaker-card:hover::before {
    opacity: 0.08;
}

.speaker-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.2);
}

/* Speaker Image Wrapper */
.speaker-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.speaker-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.speaker-card:hover .speaker-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.speaker-card:hover .image-overlay {
    opacity: 0.9;
}

.speaker-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 16px;
    color: var(--text-primary);
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.4);
    z-index: 2;
    animation: badge-glow 3s infinite;
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(0, 245, 255, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(0, 245, 255, 0.8);
    }
}

.organizer-badge {
    background: var(--gradient-gold);
}

/* Speaker Info */
.speaker-info {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.speaker-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px;
    transition: color 0.3s ease;
}

.speaker-card:hover .speaker-name {
    color: var(--quantum-cyan);
}

.speaker-role {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0 0 20px;
    min-height: 42px;
}

.speaker-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 245, 255, 0.4);
}

/* Speakers CTA */
.speakers-cta {
    text-align: center;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(10, 4, 32, 0.5);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.03;
}

.cta-inner h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 15px;
    position: relative;
    z-index: 2;
}

.cta-inner p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 30px;
    position: relative;
    z-index: 2;
}

.become-speaker-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    border: 2px solid var(--quantum-cyan);
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 2;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.become-speaker-btn:hover .btn-bg {
    transform: scaleX(1);
}

.btn-text {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-text i {
    font-size: 18px;
}

.become-speaker-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.4);
    border-color: transparent;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1200px) {
    .title-main {
        font-size: 44px;
    }

    .speakers-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .protagonists-section {
        padding: 80px 0;
    }

    .protagonists-container {
        padding: 0 30px;
    }

    .protagonists-header {
        margin-bottom: 50px;
    }

    .title-main {
        font-size: 40px;
    }

    .year-tab-speakers {
        min-width: 140px;
        padding: 14px 32px;
    }

    .tab-year-speakers {
        font-size: 24px;
    }

    .speakers-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .protagonists-container {
        padding: 0 25px;
    }

    .title-line {
        font-size: 18px;
    }

    .title-main {
        font-size: 36px;
    }

    .protagonists-subtitle {
        font-size: 16px;
    }

    .year-tabs-container-speakers {
        margin-bottom: 50px;
    }

    .year-tab-speakers {
        min-width: 130px;
        padding: 12px 28px;
    }

    .tab-year-speakers {
        font-size: 22px;
    }

    .tab-label-speakers {
        font-size: 10px;
    }

    .speakers-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }

    .speaker-info {
        padding: 20px;
    }

    .speaker-name {
        font-size: 18px;
    }

    .speaker-role {
        font-size: 13px;
    }

    .cta-inner {
        padding: 40px 30px;
    }

    .cta-inner h3 {
        font-size: 28px;
    }

    .cta-inner p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .protagonists-section {
        padding: 60px 0;
    }

    .protagonists-container {
        padding: 0 20px;
    }

    .protagonists-header {
        margin-bottom: 40px;
    }

    .header-tag {
        padding: 8px 20px;
    }

    .header-tag span {
        font-size: 11px;
    }

    .title-line {
        font-size: 16px;
    }

    .title-main {
        font-size: 30px;
    }

    .protagonists-subtitle {
        font-size: 15px;
    }

    .year-tabs-speakers {
        padding: 6px;
        gap: 6px;
    }

    .year-tab-speakers {
        min-width: 110px;
        padding: 10px 20px;
    }

    .tab-year-speakers {
        font-size: 20px;
    }

    .tab-label-speakers {
        font-size: 9px;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .speaker-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .speaker-badge {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .speaker-info {
        padding: 20px;
    }

    .speaker-name {
        font-size: 18px;
    }

    .speaker-role {
        font-size: 13px;
        min-height: auto;
    }

    .cta-inner {
        padding: 35px 25px;
    }

    .cta-inner h3 {
        font-size: 24px;
    }

    .cta-inner p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .become-speaker-btn {
        padding: 15px 32px;
        font-size: 13px;
    }

    .circle-1,
    .circle-2,
    .circle-3 {
        width: 300px;
        height: 300px;
    }
}

/* ===========================
   PROTAGONISTS SECTION END
   =========================== */

/* ===========================
   SPONSORS PARTNERS SECTION START
   =========================== */
.sponsors-partners-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #030014 0%, #0a0420 100%);
    overflow: hidden;
}

/* Background Elements */
.sponsors-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-hexagon-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(30deg, rgba(0, 245, 255, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(0, 245, 255, 0.02) 87.5%, rgba(0, 245, 255, 0.02)),
        linear-gradient(150deg, rgba(0, 245, 255, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(0, 245, 255, 0.02) 87.5%, rgba(0, 245, 255, 0.02)),
        linear-gradient(30deg, rgba(0, 245, 255, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(0, 245, 255, 0.02) 87.5%, rgba(0, 245, 255, 0.02)),
        linear-gradient(150deg, rgba(0, 245, 255, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(0, 245, 255, 0.02) 87.5%, rgba(0, 245, 255, 0.02));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    opacity: 0.4;
}

.bg-light-beams {
    position: absolute;
    width: 100%;
    height: 100%;
}

.light-beam {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--quantum-cyan), transparent);
    opacity: 0.15;
    animation: beam-move 8s infinite ease-in-out;
}

.beam-1 {
    left: 20%;
    animation-delay: 0s;
}

.beam-2 {
    left: 50%;
    animation-delay: 2s;
}

.beam-3 {
    left: 80%;
    animation-delay: 4s;
}

@keyframes beam-move {
    0%, 100% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(100%);
    }
}

/* Container */
.sponsors-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* Section Header */
.sponsors-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.icon-circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse-circle 3s infinite;
}

@keyframes pulse-circle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
}

.header-icon-wrapper i {
    font-size: 36px;
    color: var(--quantum-cyan);
    position: relative;
    z-index: 2;
}

.sponsors-title {
    margin: 0 0 25px;
}

.title-pre {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.title-highlight {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #00f5ff 50%, #7c3aed 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 5s ease infinite;
    line-height: 1.2;
    margin-bottom: 8px;
}

@keyframes gradient-flow {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.title-post {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--quantum-cyan);
}

.sponsors-intro {
    max-width: 750px;
    margin: 0 auto 30px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.header-decoration {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.deco-dot {
    width: 8px;
    height: 8px;
    background: var(--quantum-cyan);
    border-radius: 50%;
    animation: dot-pulse 2s infinite;
}

.deco-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.deco-dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dot-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* ===========================
   ✅ YEAR TABS STYLING
   =========================== */
.year-tabs-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.year-tabs {
    display: inline-flex;
    background: rgba(10, 4, 32, 0.6);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 60px;
    padding: 8px;
    gap: 8px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.1);
}

.year-tab {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 40px;
    border-radius: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-width: 160px;
}

.year-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
}

.year-tab.active::before {
    opacity: 1;
}

.year-tab:hover::before {
    opacity: 0.5;
}

.tab-year {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.year-tab.active .tab-year {
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.6);
}

.tab-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    opacity: 0.7;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.year-tab.active .tab-label {
    color: var(--text-primary);
    opacity: 1;
}

/* Tab Content */
.year-tab-content {
    display: none;
    animation: fadeInContent 0.5s ease;
}

.year-tab-content.active {
    display: block;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Partner Tier */
.partner-tier {
    margin-bottom: 60px;
}

.tier-header {
    text-align: center;
    margin-bottom: 40px;
}

.tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.tier-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badge-shimmer 3s infinite;
}

@keyframes badge-shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.platinum-badge {
    background: linear-gradient(135deg, #e5e5e5, #a0a0a0);
    box-shadow: 0 10px 40px rgba(229, 229, 229, 0.3);
}

.gold-badge {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.silver-badge {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    box-shadow: 0 10px 40px rgba(192, 192, 192, 0.3);
}

.tier-badge i {
    font-size: 18px;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 20px;
}

.platinum-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.gold-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.silver-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Partner Card */
.partner-card {
    position: relative;
    height: 180px;
    perspective: 1000px;
}

.premium-card {
    height: 220px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(10, 4, 32, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-card:hover .card-inner {
    transform: translateY(-10px) rotateX(5deg);
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 25px 60px rgba(0, 245, 255, 0.2);
}

.partner-card:hover .card-inner::before {
    opacity: 0.05;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.partner-card:hover .card-shine {
    opacity: 1;
    left: 100%;
}

/* ✅ Partner Logo Image Styling */
.partner-logo {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.partner-logo-img {
    max-width: 80%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: brightness(1.2) contrast(1.1);
}

.premium-card .partner-logo-img {
    max-height: 150px;
}

.partner-card:hover .partner-logo-img {
    transform: scale(1.05);
    filter: brightness(1.4) drop-shadow(0 0 20px rgba(0, 245, 255, 0.4));
}

/* Fallback for text logos */
.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.premium-card .logo-text {
    font-size: 32px;
}

.partner-card:hover .logo-text {
    color: var(--quantum-cyan);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.6);
    transform: scale(1.05);
}

/* Partnership Benefits */
.partnership-benefits {
    margin: 80px 0;
    padding: 60px;
    background: rgba(10, 4, 32, 0.5);
    border: 1px solid rgba(0, 245, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.benefits-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    margin: 0 0 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 36px;
    color: var(--text-primary);
    transition: all 0.4s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.4);
}

.benefit-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px;
}

.benefit-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Become Partner Section */
.become-partner-section {
    margin-bottom: 60px;
}

.become-partner-card {
    position: relative;
    padding: 60px;
    background: rgba(10, 4, 32, 0.6);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 30px;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.partner-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 245, 255, 0.1), transparent 50%),
        radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.1), transparent 50%);
}

.partner-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 48px;
    color: var(--text-primary);
    box-shadow: 0 15px 50px rgba(0, 245, 255, 0.4);
    animation: float-icon 3s infinite ease-in-out;
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.partner-cta-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0 0 20px;
}

.partner-cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 40px;
}

.cta-buttons-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.primary-partner-btn {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.3);
}

.btn-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.primary-partner-btn:hover .btn-layer {
    transform: translateX(100%);
}

.primary-partner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 245, 255, 0.5);
}

.secondary-partner-btn {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.secondary-partner-btn:hover {
    background: rgba(0, 245, 255, 0.05);
    border-color: var(--quantum-cyan);
    transform: translateY(-3px);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-content i {
    font-size: 18px;
}

/* Partnership Stats */
.partnership-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 20px;
    flex-wrap: wrap;
}

.stat-item-inline {
    text-align: center;
}

.stat-number-inline {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-text-inline {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.stat-divider-inline {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(0, 245, 255, 0.3), transparent);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1200px) {
    .title-highlight {
        font-size: 46px;
    }

    .platinum-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .gold-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .silver-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 992px) {
    .sponsors-partners-section {
        padding: 80px 0;
    }

    .sponsors-container {
        padding: 0 30px;
    }

    .sponsors-header {
        margin-bottom: 50px;
    }

    .title-highlight {
        font-size: 42px;
    }

    .year-tab {
        min-width: 140px;
        padding: 14px 32px;
    }

    .tab-year {
        font-size: 24px;
    }

    .platinum-grid,
    .gold-grid,
    .silver-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
    }

    .partnership-benefits {
        padding: 50px 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }

    .become-partner-card {
        padding: 50px 40px;
    }

    .partnership-stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .sponsors-container {
        padding: 0 25px;
    }

    .title-pre {
        font-size: 18px;
    }

    .title-highlight {
        font-size: 36px;
    }

    .title-post {
        font-size: 20px;
    }

    .sponsors-intro {
        font-size: 16px;
    }

    .year-tabs-container {
        margin-bottom: 50px;
    }

    .year-tab {
        min-width: 130px;
        padding: 12px 28px;
    }

    .tab-year {
        font-size: 22px;
    }

    .tab-label {
        font-size: 10px;
    }

    .platinum-grid,
    .gold-grid,
    .silver-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partner-card,
    .premium-card {
        height: 160px;
        max-width: 450px;
        margin: 0 auto;
    }

    .partner-logo-img {
        max-height: 100px;
    }

    .premium-card .partner-logo-img {
        max-height: 130px;
    }

    .partnership-benefits {
        padding: 40px 30px;
    }

    .benefits-title {
        font-size: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .become-partner-card {
        padding: 40px 30px;
    }

    .partner-cta-content h3 {
        font-size: 32px;
    }

    .cta-buttons-group {
        flex-direction: column;
    }

    .partner-btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    .partnership-stats {
        flex-direction: column;
        gap: 25px;
        padding: 35px 25px;
    }

    .stat-divider-inline {
        display: none;
    }
}

@media (max-width: 576px) {
    .sponsors-partners-section {
        padding: 60px 0;
    }

    .sponsors-container {
        padding: 0 20px;
    }

    .sponsors-header {
        margin-bottom: 40px;
    }

    .header-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }

    .header-icon-wrapper i {
        font-size: 30px;
    }

    .title-pre {
        font-size: 16px;
    }

    .title-highlight {
        font-size: 30px;
    }

    .sponsors-intro {
        font-size: 15px;
    }

    .year-tabs {
        padding: 6px;
        gap: 6px;
    }

    .year-tab {
        min-width: 110px;
        padding: 10px 20px;
    }

    .tab-year {
        font-size: 20px;
    }

    .tab-label {
        font-size: 9px;
    }

    .tier-badge {
        padding: 10px 24px;
        font-size: 12px;
    }

    .tier-badge i {
        font-size: 16px;
    }

    .partner-card,
    .premium-card {
        height: 140px;
    }

    .partner-logo-img {
        max-height: 80px;
    }

    .premium-card .partner-logo-img {
        max-height: 110px;
    }

    .partnership-benefits {
        padding: 35px 25px;
        margin: 60px 0;
    }

    .benefits-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .benefit-item h4 {
        font-size: 18px;
    }

    .benefit-item p {
        font-size: 14px;
    }

    .become-partner-card {
        padding: 35px 25px;
    }

    .cta-icon-large {
        width: 80px;
        height: 80px;
        font-size: 40px;
        margin-bottom: 25px;
    }

    .partner-cta-content h3 {
        font-size: 26px;
    }

    .partner-cta-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .partner-btn {
        padding: 15px 32px;
        font-size: 13px;
    }

    .stat-number-inline {
        font-size: 36px;
    }

    .stat-text-inline {
        font-size: 12px;
    }
}

/* ===========================
   SPONSORS PARTNERS SECTION END
   =========================== */

/* ===========================
   CONTACT SECTION START
   =========================== */
.contact-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0420 0%, #030014 100%);
    overflow: hidden;
}

/* Background Elements */
.contact-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contact-gradient-mesh {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top left, rgba(0, 245, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
    filter: blur(60px);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 245, 255, 0.05);
    animation: float-random 20s infinite ease-in-out;
}

.element-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.element-3 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: 20%;
    animation-delay: 10s;
}

.element-4 {
    width: 180px;
    height: 180px;
    top: 40%;
    right: 25%;
    animation-delay: 15s;
}

@keyframes float-random {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    75% {
        transform: translate(30px, 10px) scale(1.05);
    }
}

/* Container */
.contact-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 70px;
}

.header-spark {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 32px;
    color: var(--text-primary);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.4);
    animation: spark-pulse 2s infinite;
}

@keyframes spark-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(0, 245, 255, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 50px rgba(0, 245, 255, 0.6);
    }
}

.contact-title {
    margin: 0 0 25px;
}

.title-small {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--quantum-cyan);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.title-large {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.2;
}

.contact-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Contact Content Grid */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    position: relative;
}

.form-card {
    background: rgba(10, 4, 32, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 45px;
    backdrop-filter: blur(20px);
}

.form-header {
    margin-bottom: 35px;
}

.form-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 12px;
}

.form-header p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group label i {
    color: var(--quantum-cyan);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--quantum-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}

.form-group input:focus~.input-border,
.form-group select:focus~.input-border,
.form-group textarea:focus~.input-border {
    width: 100%;
}

/* Submit Button */
.submit-btn {
    position: relative;
    padding: 18px 40px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.btn-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.submit-btn:hover .btn-bg-effect {
    transform: translateX(100%);
}

.btn-content-text,
.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-content-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: flex;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 245, 255, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Contact Info Card */
.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(10, 4, 32, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    background: rgba(10, 4, 32, 0.6);
    border-color: rgba(0, 245, 255, 0.2);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.15);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 15px;
    font-size: 26px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.info-card-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.info-card-content a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--quantum-cyan);
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.info-card-content a:hover {
    color: var(--text-primary);
}

.info-card-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.address {
    line-height: 1.7;
}

/* Contact Social Card */
.contact-social-card {
    padding: 35px;
    background: rgba(10, 4, 32, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-social-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px;
}

.contact-social-card>p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 25px;
}

.social-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link-item:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.3);
}

.social-link-item i {
    font-size: 18px;
}

/* ===========================
   FORM NOTIFICATION STYLES
   =========================== */
.form-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    background: rgba(10, 4, 32, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 20px 25px;
    transform: translateX(450px);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    backdrop-filter: blur(20px);
}

.form-notification.show {
    transform: translateX(0);
}

.form-notification.success {
    border-left: 4px solid #10b981;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.form-notification.error {
    border-left: 4px solid #ef4444;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.3);
}

.notification-content {
    flex: 1;
}

.notification-content h4 {
    margin: 0 0 5px 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.notification-content p {
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.notification-close:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

/* ===========================
   CONTACT RESPONSIVE
   =========================== */
@media (max-width: 992px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-container {
        padding: 0 30px;
    }

    .title-large {
        font-size: 42px;
    }

    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-card {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 0 25px;
    }

    .title-large {
        font-size: 36px;
    }

    .form-card {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info-card:hover {
        transform: translateX(0);
    }

    /* Notification Responsive */
    .form-notification {
        right: 10px;
        left: 10px;
        max-width: none;
        top: 10px;
        transform: translateY(-150px);
    }

    .form-notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-container {
        padding: 0 20px;
    }

    .contact-header {
        margin-bottom: 50px;
    }

    .header-spark {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .title-small {
        font-size: 16px;
    }

    .title-large {
        font-size: 30px;
    }

    .contact-description {
        font-size: 15px;
    }

    .form-card {
        padding: 25px 20px;
    }

    .form-header h3 {
        font-size: 24px;
    }

    .contact-info-card {
        padding: 25px 20px;
    }

    .info-card-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .contact-social-card {
        padding: 30px 25px;
    }

    .social-links-grid {
        grid-template-columns: 1fr;
    }

    .element-1,
    .element-2,
    .element-3,
    .element-4 {
        width: 150px;
        height: 150px;
    }

    /* Notification Mobile */
    .form-notification {
        padding: 18px 20px;
    }

    .notification-content h4 {
        font-size: 15px;
    }

    .notification-content p {
        font-size: 13px;
    }
}

/* ===========================
   CONTACT SECTION END
   =========================== */

/* ===========================
   FOOTER SECTION START
   =========================== */
.main-footer {
    position: relative;
    background: #030014;
    overflow: hidden;
}

/* Footer Background */
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.footer-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 4, 32, 0.5) 0%, #030014 100%);
}

.footer-grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 245, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

/* Footer Container */
.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* Footer Top */
.footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-column-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Brand Column */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(0, 245, 255, 0.3));
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 10px;
    color: var(--quantum-cyan);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--quantum-cyan);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(5px);
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-contact-list i {
    color: var(--quantum-cyan);
    font-size: 16px;
    margin-top: 2px;
}

.footer-contact-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: var(--quantum-cyan);
}

/* Newsletter Section */
.footer-newsletter {
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 12px;
}

.newsletter-text p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0 0 30px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 8px 8px 25px;
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--quantum-cyan);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}

.newsletter-input-group i {
    color: var(--quantum-cyan);
    font-size: 18px;
    margin-right: 15px;
}

.newsletter-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: var(--text-muted);
}

.newsletter-input-group button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-input-group button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    padding: 35px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.footer-credits p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.footer-credits strong {
    color: var(--quantum-cyan);
    font-weight: 700;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal-links a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--quantum-cyan);
}

.footer-legal-links .separator {
    color: var(--text-muted);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: var(--text-primary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.5);
}

/* ===========================
   FOOTER RESPONSIVE
   =========================== */
@media (max-width: 1200px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }

    .brand-column {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .footer-container {
        padding: 0 30px;
    }

    .footer-top {
        padding: 60px 0 50px;
    }

    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .newsletter-text h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 25px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-newsletter {
        padding: 40px 0;
    }

    .newsletter-text h3 {
        font-size: 26px;
    }

    .newsletter-input-group {
        flex-direction: column;
        align-items: stretch;
        border-radius: 20px;
        padding: 15px;
    }

    .newsletter-input-group i {
        display: none;
    }

    .newsletter-input-group input {
        padding: 12px;
        text-align: center;
    }

    .newsletter-input-group button {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        padding: 0 20px;
    }

    .footer-top {
        padding: 50px 0 40px;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-column-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-newsletter {
        padding: 35px 0;
    }

    .newsletter-text h3 {
        font-size: 22px;
    }

    .newsletter-text p {
        font-size: 14px;
    }

    .footer-bottom {
        padding: 30px 0;
    }

    .copyright-text p,
    .footer-credits p,
    .footer-legal-links a {
        font-size: 12px;
    }
}

/* ===========================
   FOOTER SECTION END
   =========================== */

/* ===========================
   MOBILE RESPONSIVE PRELOADER - ZARA ACHA DESIGN (UPDATED)
   CLIENT CHANGE: DAVOS 2026 SAME FONT & SIZE AS CRYPTO MOUNTAIN
   LOGO SIZE: 20% SMALLER
   =========================== */

/* Base Styles - Mobile First */
.preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}

/* Background with subtle gradient */
.preloader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    z-index: 1;
}

/* Mountain Image Container */
.preloader-mountain-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    opacity: 0.9;
}

.mountain-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.2) contrast(0.9);
    animation: gentleFloat 20s ease-in-out infinite alternate;
}

@keyframes gentleFloat {
    0% {
        transform: scale(1) translateY(0);
    }
    100% {
        transform: scale(1.05) translateY(-10px);
    }
}

/* Overlay for better contrast */
.mountain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.3) 100%);
}

/* Main Content Container */
.preloader-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 10;
}

/* ✅ Logo Container - Mobile Optimized - 20% SMALLER */
.logo-container {
    position: relative;
    width: 108px;  /* ✅ 20% smaller (from 135px) */
    height: 108px;  /* ✅ 20% smaller (from 135px) */
    margin-bottom: 40px;
    animation: softEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes softEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Logo - BLUE VERSION (Instead of dark/white) */
.preloader-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Changed to blue color with blue glow */
    filter: brightness(0.4) saturate(200%) hue-rotate(200deg) drop-shadow(0 0 20px rgba(0, 149, 255, 0.9));
    position: relative;
    z-index: 2;
    animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(0.4) saturate(200%) hue-rotate(200deg) drop-shadow(0 0 20px rgba(0, 149, 255, 0.9));
    }
    50% {
        transform: scale(1.05);
        filter: brightness(0.5) saturate(200%) hue-rotate(200deg) drop-shadow(0 0 25px rgba(0, 149, 255, 1));
    }
}

/* ✅ Orbits around logo - Mobile Optimized - Adjusted for 20% smaller logo */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.orbit-1 {
    width: 130px;  /* ✅ Adjusted for 20% smaller logo */
    height: 130px;
    animation: orbitRotate 8s linear infinite;
}

.orbit-2 {
    width: 144px;  /* ✅ Adjusted for 20% smaller logo */
    height: 144px;
    animation: orbitRotate 12s linear infinite reverse;
}

@keyframes orbitRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ✅ Floating dots in orbits - Mobile Optimized */
.orbit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #000000;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 .orbit-dot {
    transform: translate(65px, -50%);  /* ✅ Adjusted for smaller orbit */
    animation: orbitDot 4s linear infinite;
}

.orbit-2 .orbit-dot {
    transform: translate(-50%, -72px);  /* ✅ Adjusted for smaller orbit */
    animation: orbitDot 6s linear infinite reverse;
}

@keyframes orbitDot {
    0% {
        transform: rotate(0deg) translateX(65px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(65px) rotate(-360deg);
    }
}

/* Title Text - Mobile Responsive */
.preloader-title {
    text-align: center;
    margin-bottom: 30px;
}

.preloader-title h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #000000;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
    animation: titleSlide 1s ease-out forwards;
    opacity: 0;
}

@keyframes titleSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ✅ CLIENT CHANGE: Davos 2026 Text - SAME FONT & SIZE AS CRYPTO MOUNTAIN */
.preloader-title p {
    font-family: 'Orbitron', sans-serif;  /* ✅ Changed from 'Rajdhani' to 'Orbitron' - SAME FONT */
    font-size: 26px;  /* ✅ Changed from 14px to 26px - ALMOST SAME SIZE (h1 is 28px) */
    font-weight: 700;  /* ✅ Changed from default to 700 - MORE VISIBLE */
    color: #000000;  /* ✅ BLACK color maintained */
    letter-spacing: 2px;  /* ✅ Changed from 3px to 2px - SAME AS H1 */
    text-transform: uppercase;
    opacity: 0;
    animation: subtitleSlide 1s ease-out 0.3s forwards;
}

@keyframes subtitleSlide {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress Container - Mobile Optimized */
.progress-container {
    width: 100%;
    max-width: 300px;
    margin-bottom: 40px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.progress-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.progress-percent {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000000;  /* Changed to BLACK */
}

/* Progress Bar - Modern Design */
.progress-bar-container {
    position: relative;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #000000, #333333);
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Loading Message */
.loading-message {
    text-align: center;
    margin-top: 20px;
}

.loading-message p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    color: #000000;  /* Changed to BLACK */
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Skip Button - Mobile Friendly */
.preloader-skip {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.skip-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    animation: skipFadeIn 0.5s 1s forwards;
}

@keyframes skipFadeIn {
    to {
        opacity: 1;
    }
}

.skip-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.skip-btn i {
    font-size: 14px;
}

/* Floating Elements for Background */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    animation: floatElement 20s infinite ease-in-out;
}

.float-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 15%;
    animation-delay: 5s;
}

.float-3 {
    width: 40px;
    height: 40px;
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(20px, -20px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

/* ===========================
   TABLET RESPONSIVE (768px and up)
   =========================== */
@media (min-width: 768px) {
    /* ✅ Logo 20% smaller for tablet */
    .logo-container {
        width: 130px;  /* ✅ 20% smaller (from 162px) */
        height: 130px;
        margin-bottom: 50px;
    }
    
    .orbit-1 {
        width: 158px;  /* ✅ 20% smaller */
        height: 158px;
    }
    
    .orbit-2 {
        width: 173px;  /* ✅ 20% smaller */
        height: 173px;
    }
    
    .orbit-1 .orbit-dot {
        transform: translate(79px, -50%);  /* ✅ Adjusted */
    }
    
    .orbit-2 .orbit-dot {
        transform: translate(-50%, -86px);  /* ✅ Adjusted */
    }
    
    .preloader-title h1 {
        font-size: 36px;
        letter-spacing: 3px;
    }
    
    /* ✅ CLIENT CHANGE: Tablet size for Davos 2026 - SAME AS H1 */
    .preloader-title p {
        font-size: 34px;  /* ✅ Changed from 16px to 34px (h1 is 36px) */
        letter-spacing: 3px;  /* ✅ SAME AS H1 */
    }
    
    .progress-container {
        max-width: 400px;
    }
    
    .progress-text {
        font-size: 18px;
    }
    
    .progress-percent {
        font-size: 16px;
    }
    
    .progress-bar-container {
        height: 5px;
    }
    
    .loading-message p {
        font-size: 14px;
    }
    
    .skip-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .float-1 {
        width: 100px;
        height: 100px;
    }
    
    .float-2 {
        width: 80px;
        height: 80px;
    }
    
    .float-3 {
        width: 60px;
        height: 60px;
    }
}

/* ===========================
   DESKTOP RESPONSIVE (1024px and up)
   =========================== */
@media (min-width: 1024px) {
    /* ✅ Logo 20% smaller for desktop */
    .logo-container {
        width: 158px;  /* ✅ 20% smaller (from 198px) */
        height: 158px;
        margin-bottom: 60px;
    }
    
    .orbit-1 {
        width: 187px;  /* ✅ 20% smaller */
        height: 187px;
    }
    
    .orbit-2 {
        width: 202px;  /* ✅ 20% smaller */
        height: 202px;
    }
    
    .orbit-1 .orbit-dot {
        transform: translate(94px, -50%);  /* ✅ Adjusted */
    }
    
    .orbit-2 .orbit-dot {
        transform: translate(-50%, -101px);  /* ✅ Adjusted */
    }
    
    .preloader-title h1 {
        font-size: 44px;
        letter-spacing: 4px;
    }
    
    /* ✅ CLIENT CHANGE: Desktop size for Davos 2026 - SAME AS H1 */
    .preloader-title p {
        font-size: 42px;  /* ✅ Changed from 18px to 42px (h1 is 44px) */
        letter-spacing: 4px;  /* ✅ SAME AS H1 */
    }
    
    .progress-container {
        max-width: 500px;
    }
    
    .progress-text {
        font-size: 20px;
    }
    
    .progress-percent {
        font-size: 18px;
    }
    
    .progress-bar-container {
        height: 6px;
        border-radius: 3px;
    }
    
    .loading-message p {
        font-size: 15px;
    }
    
    .skip-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .skip-btn:hover i {
        animation: arrowBounce 0.5s infinite alternate;
    }
    
    @keyframes arrowBounce {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(5px);
        }
    }
}

/* ===========================
   LARGE DESKTOP (1440px and up)
   =========================== */
@media (min-width: 1440px) {
    /* ✅ Logo 20% smaller for large desktop */
    .logo-container {
        width: 180px;  /* ✅ 20% smaller (from 225px) */
        height: 180px;
    }
    
    .orbit-1 {
        width: 216px;  /* ✅ 20% smaller */
        height: 216px;
    }
    
    .orbit-2 {
        width: 230px;  /* ✅ 20% smaller */
        height: 230px;
    }
    
    .preloader-title h1 {
        font-size: 48px;
    }
    
    /* ✅ CLIENT CHANGE: Large Desktop size for Davos 2026 - SAME AS H1 */
    .preloader-title p {
        font-size: 46px;  /* ✅ Changed to match h1 (48px) */
        letter-spacing: 4px;
    }
    
    .progress-container {
        max-width: 600px;
    }
}

/* ===========================
   LANDSCAPE MODE OPTIMIZATION
   =========================== */
@media (max-height: 600px) and (orientation: landscape) {
    .preloader-content {
        flex-direction: row;
        justify-content: space-around;
        padding: 10px 20px;
    }
    
    /* ✅ Logo 20% smaller for landscape */
    .logo-container {
        width: 86px;  /* ✅ 20% smaller (from 108px) */
        height: 86px;
        margin-bottom: 0;
        margin-right: 30px;
    }
    
    .orbit-1 {
        width: 115px;  /* ✅ 20% smaller */
        height: 115px;
    }
    
    .orbit-2 {
        width: 130px;  /* ✅ 20% smaller */
        height: 130px;
    }
    
    .preloader-title {
        margin-bottom: 0;
        text-align: left;
    }
    
    .preloader-title h1 {
        font-size: 24px;
    }
    
    /* ✅ CLIENT CHANGE: Landscape mode for Davos 2026 - SAME AS H1 */
    .preloader-title p {
        font-size: 22px;  /* ✅ Changed from small to 22px (h1 is 24px) */
        letter-spacing: 2px;
    }
    
    .progress-container {
        max-width: 250px;
        margin-bottom: 0;
    }
    
    .loading-message {
        display: none;
    }
}

/* ===========================
   DARK MODE SUPPORT
   =========================== */
@media (prefers-color-scheme: dark) {
    .preloader-wrapper {
        background: #0a0a0a;
    }
    
    .preloader-bg {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    }
    
    .mountain-overlay {
        background: linear-gradient(180deg, 
            rgba(10, 10, 10, 0.9) 0%,
            rgba(26, 26, 26, 0.6) 50%,
            rgba(42, 42, 42, 0.3) 100%);
    }
    
    .preloader-logo {
        /* Blue logo in dark mode */
        filter: brightness(0.6) saturate(200%) hue-rotate(200deg) drop-shadow(0 0 25px rgba(0, 149, 255, 1));
    }
    
    .orbit {
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .orbit-dot {
        background: #ffffff;
    }
    
    .preloader-title h1 {
        color: #ffffff;
    }
    
    .preloader-title p {
        color: #ffffff;  /* White in dark mode instead of black */
    }
    
    .progress-text {
        color: #ffffff;
    }
    
    .progress-percent {
        color: #aaaaaa;
    }
    
    .progress-bar-container {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .progress-bar {
        background: linear-gradient(90deg, #ffffff, #cccccc);
    }
    
    .skip-btn {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }
    
    .floating-element {
        background: rgba(255, 255, 255, 0.05);
    }
}

/* ===========================
   PRELOADER STYLES END
   =========================== */
   
   /* ===========================
   PROGRAM SCHEDULE SECTION START
   =========================== */
.program-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #030014 0%, #0a0420 50%, #030014 100%);
    overflow: hidden;
}

/* Background Elements */
.program-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-radial-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
}

.glow-top-left {
    top: -15%;
    left: -10%;
    background: radial-gradient(circle, var(--quantum-cyan), transparent);
}

.glow-bottom-right {
    bottom: -15%;
    right: -10%;
    background: radial-gradient(circle, var(--quantum-purple), transparent);
}

.bg-grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 245, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

/* Container */
.program-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* ===========================
   SECTION HEADER
   =========================== */
.program-section .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.program-section .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    background: rgba(0, 245, 255, 0.06);
    border: 1px solid rgba(0, 245, 255, 0.25);
    border-radius: 50px;
    margin-bottom: 28px;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--quantum-cyan);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.08);
}

.program-section .header-badge i {
    font-size: 13px;
}

.program-section .section-title {
    margin: 0 0 22px;
}

.program-section .title-line {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.program-section .title-highlight {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 54px;
    font-weight: 900;
    background: linear-gradient(135deg, #00f5ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.program-section .title-underline {
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto 28px;
    border-radius: 2px;
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.6);
}

.program-section .section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ===========================
   PROGRAM WRAPPER
   =========================== */
.program-wrapper {
    position: relative;
    animation: slideInUp 0.8s ease-out;
}

/* ===========================
   DESKTOP TABLE — 2 COLUMN LAYOUT
   =========================== */
.program-table {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 24px;
    padding: 3px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

/* ── CORE CHANGE: 2 columns instead of 3 ── */
.program-header,
.program-row {
    display: grid;
    grid-template-columns: 160px 1fr 1fr;
    gap: 2px;
}

/* Header */
.program-header {
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.program-header .time-col {
    background: rgba(8, 3, 26, 0.98);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.program-header .time-col i {
    font-size: 22px;
    color: var(--quantum-cyan);
    opacity: 0.8;
}

.program-header .time-col span {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    opacity: 0.9;
}

.program-header .event-col {
    background: rgba(8, 3, 26, 0.98);
    padding: 28px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.program-header .event-col::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 2px;
}

.program-header .event-col:hover {
    background: rgba(0, 245, 255, 0.05);
}

.program-header .event-col:hover::after {
    opacity: 1;
}

.day-badge {
    padding: 5px 14px;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.program-header .event-col strong {
    font-family: 'Orbitron', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.day-date {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.venue-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--quantum-cyan);
    opacity: 0.75;
    padding: 3px 10px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 20px;
    margin-top: 2px;
}

/* Day Color Accents */
.program-header .event-col.day-1 { border-top: 3px solid #00f5ff; }
.program-header .event-col.day-2 { border-top: 3px solid #7c3aed; }

/* ===========================
   PROGRAM ROWS
   =========================== */
.program-row {
    background: transparent;
    transition: background 0.2s ease;
}

.program-row:hover {
    background: rgba(0, 245, 255, 0.015);
}

.program-row:last-child .time-col,
.program-row:last-child .event-col {
    border-radius: 0 0 20px 20px;
}

.program-row .time-col {
    background: rgba(8, 3, 26, 0.6);
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.program-row:hover .time-col {
    border-left-color: var(--quantum-cyan);
    background: rgba(0, 245, 255, 0.04);
}

.time-badge {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--quantum-cyan);
    text-align: center;
    padding: 10px 14px;
    background: rgba(0, 245, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(0, 245, 255, 0.18);
    line-height: 1.4;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.program-row:hover .time-badge {
    background: rgba(0, 245, 255, 0.15);
    border-color: rgba(0, 245, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
}

.program-row .event-col {
    background: rgba(8, 3, 26, 0.35);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-row .event-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.04), transparent);
    transition: left 0.7s ease;
}

.program-row:hover .event-col::before {
    left: 100%;
}

.program-row:hover .event-col {
    background: rgba(0, 245, 255, 0.04);
}

/* Empty Slot */
.empty-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 3, 26, 0.2) !important;
}

.empty-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.07);
    font-weight: 300;
}

/* ===========================
   EVENT ITEMS
   =========================== */
.event-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 2px 2px 0;
    transition: background 0.3s ease;
}

.event-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 245, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 245, 255, 0.08);
}

.event-item:hover::before {
    background: var(--gradient-primary);
}

.event-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.event-item p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.event-speakers {
    font-size: 13px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.55) !important;
}

.event-speakers strong {
    color: rgba(0, 245, 255, 0.8);
    font-weight: 600;
}

.event-description {
    font-size: 12px !important;
    color: rgba(255, 215, 0, 0.7) !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===========================
   EVENT TYPE VARIANTS
   =========================== */

/* Keynote */
.event-item.keynote {
    border-color: rgba(0, 245, 255, 0.2);
    background: rgba(0, 245, 255, 0.04);
}
.event-item.keynote::before { background: var(--quantum-cyan); }
.event-item.keynote h4 { color: #e0fcff; }

/* Featured / Welcome */
.event-item.featured {
    border-color: rgba(0, 245, 255, 0.35);
    background: rgba(0, 245, 255, 0.07);
    text-align: center;
    align-items: center;
}
.event-item.featured::before { background: linear-gradient(to bottom, #00f5ff, #7c3aed); }
.event-item.featured h4 {
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--quantum-cyan);
}

/* Panel */
.event-item.panel {
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(124, 58, 237, 0.06);
}
.event-item.panel::before { background: linear-gradient(to bottom, #7c3aed, #ff006e); }
.event-item.panel h4 { color: #ddd0ff; }

/* Social / Break */
.event-item.social {
    border-color: rgba(255, 200, 0, 0.2);
    background: rgba(255, 200, 0, 0.03);
    align-items: center;
    text-align: center;
}
.event-item.social::before { background: linear-gradient(to bottom, #ffd700, #ff8c00); }
.event-item.social h4 {
    font-size: 13px;
    color: rgba(255, 220, 100, 0.85);
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Fireside */
.event-item.fireside {
    border-color: rgba(255, 80, 0, 0.25);
    background: rgba(255, 80, 0, 0.05);
}
.event-item.fireside::before { background: linear-gradient(to bottom, #ff5000, #ff006e); }
.event-item.fireside h4 { color: #ffcca0; }

/* Powerpitch */
.event-item.powerpitch {
    border-color: rgba(0, 200, 100, 0.25);
    background: rgba(0, 200, 100, 0.05);
}
.event-item.powerpitch::before { background: linear-gradient(to bottom, #00c864, #00f5ff); }
.event-item.powerpitch h4 { color: #b0ffe0; }

/* Highlighted + Special (dinner events) */
.event-item.highlighted.special {
    border-color: rgba(255, 215, 0, 0.45);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 0, 110, 0.08));
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.12), inset 0 0 30px rgba(255, 215, 0, 0.04);
}
.event-item.highlighted.special::before { background: linear-gradient(to bottom, #ffd700, #ff006e); }
.event-item.highlighted.special h4 {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 15px;
}
.event-item.highlighted.special:hover {
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.2);
}

/* ===========================
   PROGRAM NOTE
   =========================== */
.program-note {
    margin-top: 50px;
    padding: 22px 30px;
    background: rgba(0, 245, 255, 0.04);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-left: 4px solid var(--quantum-cyan);
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    animation: fadeIn 1s ease-out 0.3s both;
}

.program-note i {
    font-size: 20px;
    color: var(--quantum-cyan);
    margin-top: 2px;
    flex-shrink: 0;
    opacity: 0.8;
}

.program-note p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.program-note strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

/* ===========================
   MOBILE DAY CARDS — HIDDEN ON DESKTOP
   =========================== */
.mobile-program-days {
    display: none;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(35px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes shimmer {
    0%   { left: -100%; }
    100% { left: 200%; }
}

/* ===========================
   TABLET (max-width: 1100px)
   =========================== */
@media (max-width: 1100px) {
    .program-section .container {
        padding: 0 30px;
    }

    .program-section .title-highlight {
        font-size: 44px;
    }

    .program-header,
    .program-row {
        grid-template-columns: 130px 1fr 1fr;
    }

    .program-header .event-col strong {
        font-size: 16px;
    }

    .event-item h4 {
        font-size: 13px;
    }

    .event-item p,
    .event-speakers {
        font-size: 12px !important;
    }

    /* Horizontal scroll safety net for narrow tablets */
    .program-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .program-table {
        min-width: 700px;
    }
}

/* ===========================
   MOBILE (max-width: 768px)
   =========================== */
@media (max-width: 768px) {
    .program-section {
        padding: 70px 0;
    }

    .program-section .container {
        padding: 0 20px;
    }

    .program-section .section-header {
        margin-bottom: 45px;
    }

    .program-section .title-line {
        font-size: 15px;
    }

    .program-section .title-highlight {
        font-size: 36px;
    }

    .program-section .section-subtitle {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Hide desktop table */
    .program-table {
        display: none;
    }

    /* Show mobile day cards */
    .mobile-program-days {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    /* Day Card */
    .mobile-day-card {
        background: rgba(8, 3, 26, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 22px;
        overflow: hidden;
        backdrop-filter: blur(12px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    }

    /* Day Header */
    .mobile-day-header {
        padding: 28px 22px;
        background: var(--gradient-primary);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .mobile-day-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        animation: shimmer 3.5s infinite;
    }

    .mobile-day-header .day-number {
        display: inline-block;
        padding: 5px 16px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 20px;
        font-family: 'Rajdhani', sans-serif;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 12px;
    }

    .mobile-day-header h3 {
        font-family: 'Orbitron', sans-serif;
        font-size: 28px;
        font-weight: 900;
        color: #fff;
        margin: 0 0 8px;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    }

    .mobile-day-header p {
        font-family: 'Rajdhani', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.85);
        margin: 0 0 10px;
    }

    .mobile-venue {
        display: inline-block;
        padding: 4px 12px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 20px;
        font-family: 'Rajdhani', sans-serif;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: rgba(255, 255, 255, 0.75);
    }

    /* Day 1 cyan accent, Day 2 purple */
    .mobile-day-header.day-1 { border-bottom: 3px solid #00f5ff; }
    .mobile-day-header.day-2 { border-bottom: 3px solid #7c3aed; }

    /* Events List */
    .mobile-day-events {
        padding: 22px 18px;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    /* Event Row */
    .mobile-event-item {
        display: flex;
        gap: 14px;
        align-items: flex-start;
    }

    /* Time Pill */
    .mobile-time {
        flex-shrink: 0;
        width: 74px;
        padding: 9px 8px;
        background: rgba(0, 245, 255, 0.08);
        border: 1px solid rgba(0, 245, 255, 0.18);
        border-radius: 10px;
        font-family: 'Orbitron', sans-serif;
        font-size: 10px;
        font-weight: 700;
        text-align: center;
        color: var(--quantum-cyan);
        line-height: 1.4;
        transition: all 0.2s ease;
    }

    /* Event Content Card */
    .mobile-event-content {
        flex: 1;
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.025);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 14px;
        position: relative;
        overflow: hidden;
        transition: all 0.25s ease;
    }

    .mobile-event-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 0 2px 2px 0;
    }

    .mobile-event-content:active {
        transform: scale(0.98);
        border-color: rgba(0, 245, 255, 0.3);
    }

    .mobile-event-content h4 {
        font-family: 'Orbitron', sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: var(--text-primary);
        margin: 0 0 8px;
        line-height: 1.5;
    }

    .mobile-event-content p {
        font-size: 12px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.5);
        margin: 0;
    }

    .mobile-event-content .event-speakers {
        font-size: 12px !important;
        color: rgba(255, 255, 255, 0.5) !important;
    }

    .mobile-event-content .event-speakers strong {
        color: rgba(0, 245, 255, 0.75);
    }

    .mobile-event-content .event-description {
        font-size: 11px !important;
        color: rgba(255, 215, 0, 0.7) !important;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    /* Mobile event type variants */
    .mobile-event-content.keynote {
        border-color: rgba(0, 245, 255, 0.2);
        background: rgba(0, 245, 255, 0.04);
    }
    .mobile-event-content.keynote::before { background: var(--quantum-cyan); }
    .mobile-event-content.keynote h4 { color: #e0fcff; }

    .mobile-event-content.featured {
        border-color: rgba(0, 245, 255, 0.35);
        background: rgba(0, 245, 255, 0.07);
        text-align: center;
        align-items: center;
    }
    .mobile-event-content.featured::before { background: linear-gradient(to bottom, #00f5ff, #7c3aed); }
    .mobile-event-content.featured h4 {
        color: var(--quantum-cyan);
        letter-spacing: 2px;
    }

    .mobile-event-content.panel {
        border-color: rgba(124, 58, 237, 0.3);
        background: rgba(124, 58, 237, 0.06);
    }
    .mobile-event-content.panel::before { background: linear-gradient(to bottom, #7c3aed, #ff006e); }
    .mobile-event-content.panel h4 { color: #ddd0ff; }

    .mobile-event-content.social {
        border-color: rgba(255, 200, 0, 0.2);
        background: rgba(255, 200, 0, 0.03);
        text-align: center;
    }
    .mobile-event-content.social::before { background: linear-gradient(to bottom, #ffd700, #ff8c00); }
    .mobile-event-content.social h4 {
        color: rgba(255, 220, 100, 0.85);
        margin-bottom: 0;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .mobile-event-content.fireside {
        border-color: rgba(255, 80, 0, 0.25);
        background: rgba(255, 80, 0, 0.05);
    }
    .mobile-event-content.fireside::before { background: linear-gradient(to bottom, #ff5000, #ff006e); }
    .mobile-event-content.fireside h4 { color: #ffcca0; }

    .mobile-event-content.powerpitch {
        border-color: rgba(0, 200, 100, 0.25);
        background: rgba(0, 200, 100, 0.05);
    }
    .mobile-event-content.powerpitch::before { background: linear-gradient(to bottom, #00c864, #00f5ff); }
    .mobile-event-content.powerpitch h4 { color: #b0ffe0; }

    .mobile-event-content.highlighted.special {
        border-color: rgba(255, 215, 0, 0.4);
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 0, 110, 0.08));
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.1);
    }
    .mobile-event-content.highlighted.special::before { background: linear-gradient(to bottom, #ffd700, #ff006e); }
    .mobile-event-content.highlighted.special h4 {
        background: linear-gradient(135deg, #ffd700, #ff8c00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 14px;
    }

    /* Program Note */
    .program-note {
        padding: 18px 20px;
        margin-top: 35px;
        gap: 14px;
    }

    .program-note i {
        font-size: 18px;
    }

    .program-note p {
        font-size: 13px;
    }
}

/* ===========================
   SMALL MOBILE (max-width: 480px)
   =========================== */
@media (max-width: 480px) {
    .program-section {
        padding: 55px 0;
    }

    .program-section .container {
        padding: 0 16px;
    }

    .program-section .header-badge {
        padding: 8px 18px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .program-section .title-line {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .program-section .title-highlight {
        font-size: 28px;
    }

    .program-section .section-subtitle {
        font-size: 14px;
    }

    .mobile-day-header {
        padding: 22px 18px;
    }

    .mobile-day-header h3 {
        font-size: 24px;
    }

    .mobile-day-events {
        padding: 16px 14px;
        gap: 12px;
    }

    .mobile-time {
        width: 64px;
        font-size: 9.5px;
        padding: 7px 6px;
    }

    .mobile-event-content {
        padding: 12px 14px;
    }

    .mobile-event-content h4 {
        font-size: 12px;
    }

    .mobile-event-content p,
    .mobile-event-content .event-speakers {
        font-size: 11px !important;
    }

    .program-note {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
}
/* ===========================
   PROGRAM SCHEDULE SECTION END
   =========================== */
   
   /* Key Points List Styling */
.key-points-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--accent-cyan);
    transition: all 0.3s ease;
}

.point-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.point-item i {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.point-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.point-item strong {
    color: var(--accent-cyan);
    font-weight: 600;
}

@media (max-width: 768px) {
    .point-item {
        padding: 0.6rem;
        gap: 0.6rem;
    }
    
    .point-item p {
        font-size: 0.9rem;
    }
}