/* Import Google Fonts: Plus Jakarta Sans, Inter, Manrope */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* Reset and smooth scroll */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    color: #1e293b;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Lenis smooth scrolling compatibility */
html.lenis {
    height: auto;
}

.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

/* Typography settings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.025em;
}

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

::-webkit-scrollbar-track {
    background: #0F172A;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3f59e4;
}

/* Text Gradients */
.text-gradient-primary {
    background: linear-gradient(135deg, #FFFFFF 0%, #BAE6FD 50%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

.text-gradient-accent {
    background: linear-gradient(135deg, #60A5FA 0%, #38BDF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-okta {
    background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 60%, #38BDF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism System */
.glass-panel {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-panel-dark {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Dot grid background pattern */
.dot-network-bg {
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
}

.dot-network-dark-bg {
    background-image: radial-gradient(rgba(63, 89, 228, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Form Styles & Validation */
.form-input-control {
    width: 100%;
    padding: 0.85rem 1rem;
    background-color: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    color: #1E293B;
    outline: none;
    transition: all 0.25s ease;
}

.form-input-control:focus {
    border-color: #3f59e4;
    box-shadow: 0 0 0 3px rgba(63, 89, 228, 0.15);
}

.form-input-control::placeholder {
    color: #94A3B8;
}

label.error {
    color: #EF4444;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.35rem;
    display: block;
}

input.error, select.error {
    border-color: #EF4444 !important;
    background-color: rgba(239, 68, 68, 0.02);
}

/* Agenda Timeline */
.agenda-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.agenda-row {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #F1F5F9;
    transition: all 0.25s ease;
}

.agenda-row:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(63, 89, 228, 0.08);
    border-color: rgba(63, 89, 228, 0.2);
}

/* Floating WhatsApp pulse */
.whatsapp-icon {
    filter: drop-shadow(0 8px 16px rgba(37, 211, 102, 0.3));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Smooth fade utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stat & Executive Highlights */
.stat-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.25rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(63, 89, 228, 0.4);
    box-shadow: 0 16px 32px rgba(63, 89, 228, 0.15);
}

.theme-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 1.25rem;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #3f59e4, #00C2FF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -8px rgba(63, 89, 228, 0.12), 0 6px 16px -4px rgba(15, 23, 42, 0.04);
    border-color: rgba(63, 89, 228, 0.3);
}

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

.why-attend-card {
    background: #FFFFFF;
    border: 1px solid rgba(231, 222, 205, 0.85);
    border-radius: 1.25rem;
    box-shadow: 0 4px 18px -2px rgba(45, 35, 20, 0.04), 0 2px 6px -1px rgba(45, 35, 20, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-attend-card:hover {
    border-color: rgba(63, 89, 228, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 30px -6px rgba(63, 89, 228, 0.1), 0 4px 12px -2px rgba(45, 35, 20, 0.04);
}


/* =========================================================
   AWARD-WINNING HERO & CYBERNETIC IDENTITY UI SUITE
   ========================================================= */

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.35;
        transform: scale(1);
    }
    50% {
        opacity: 0.65;
        transform: scale(1.12);
    }
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(0.8deg);
    }
}

@keyframes floatElementReverse {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(10px) rotate(-0.8deg);
    }
}

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

@keyframes gridScroll {
    0% { transform: perspective(600px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(600px) rotateX(60deg) translateY(48px); }
}

.hero-glow-sphere-1 {
    animation: pulseGlow 10s infinite ease-in-out;
}

.hero-glow-sphere-2 {
    animation: pulseGlow 12s infinite ease-in-out reverse;
}

.floating-card-1 {
    animation: floatElement 6s infinite ease-in-out;
}

.floating-card-2 {
    animation: floatElementReverse 7s infinite ease-in-out;
}

/* Shimmering Text & Border Utilities */
.shimmer-text {
    background: linear-gradient(90deg, #FFFFFF 0%, #38BDF8 25%, #FFFFFF 50%, #67FF3C 75%, #FFFFFF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerGlow 8s linear infinite;
}

.cyber-grid-floor {
    position: absolute;
    bottom: -150px;
    left: -20%;
    width: 140%;
    height: 380px;
    background-image: 
        linear-gradient(to right, rgba(63, 89, 228, 0.15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(63, 89, 228, 0.15) 1px, transparent 1px);
    background-size: 48px 48px;
    transform-origin: center top;
    animation: gridScroll 14s linear infinite;
    mask-image: radial-gradient(ellipse at 50% 10%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 10%, black 20%, transparent 75%);
    pointer-events: none;
    z-index: 1;
}

.cyber-terminal {
    background: radial-gradient(120% 120% at 50% 0%, rgba(26, 38, 70, 0.85) 0%, rgba(10, 16, 32, 0.95) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8),
                0 0 50px -10px rgba(63, 89, 228, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    position: relative;
}

.cyber-terminal::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 1.5rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(63,89,228,0.4), rgba(0,194,255,0.2), transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-pill-badge {
    background: linear-gradient(135deg, rgba(63, 89, 228, 0.15) 0%, rgba(0, 194, 255, 0.1) 100%);
    border: 1px solid rgba(56, 189, 248, 0.35);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2), inset 0 0 12px rgba(63, 89, 228, 0.15);
}

.stat-pill-box {
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-pill-box:hover {
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(63, 89, 228, 0.25);
}

/* Flowing Multi-Stop Title Gradient Animation */
@keyframes fluidGradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.flowing-title-gradient {
    background: linear-gradient(
        -45deg,
        #FFFFFF 0%,
        #93C5FD 18%,
        #38BDF8 36%,
        #67FF3C 54%,
        #00C2FF 72%,
        #A78BFA 88%,
        #FFFFFF 100%
    );
    background-size: 350% 350%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fluidGradientFlow 6s ease infinite;
    display: inline-block;
    filter: drop-shadow(0 0 25px rgba(56, 189, 248, 0.35));
}

.hero-image-frame {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(63, 89, 228, 0.2), rgba(0, 194, 255, 0.1));
    padding: 2px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8),
                0 0 45px -10px rgba(63, 89, 228, 0.4);
}

.hero-image-frame img {
    border-radius: calc(2rem - 2px);
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-frame:hover img {
    transform: scale(1.03);
}

/* Monumental Centered Stage Visual */
.hero-stage-wrapper {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.hero-stage-pedestal {
    position: relative;
    border-radius: 2.25rem;
    padding: 3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(63, 89, 228, 0.4) 40%, rgba(0, 194, 255, 0.3) 70%, rgba(103, 255, 60, 0.2) 100%);
    box-shadow: 0 35px 80px -20px rgba(0, 0, 0, 0.9),
                0 0 70px -10px rgba(63, 89, 228, 0.35);
}

.hero-stage-inner {
    border-radius: calc(2.25rem - 3px);
    background: #050811;
    overflow: hidden;
    position: relative;
}

.hero-stage-inner img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-stage-pedestal:hover .hero-stage-inner img {
    transform: scale(1.025);
}