:root {
    /* Color Palette */
    --bg-darker: #050608;
    --bg-dark: #080B10;
    --bg-light: #0B0F14;
    
    --primary: #E10600;
    --secondary: #FF2A20;
    
    --text-main: #FFFFFF;
    --text-sec: #D7DCE2;
    --text-muted: #8D96A3;
    
    /* Glassmorphism */
    --glass-bg: rgba(11, 15, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(12px);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Animation */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

ul {
    list-style: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* Custom Cursor Drone */
#cursor-drone {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.drone-light {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(225, 6, 0, 0.8),
                0 0 20px rgba(225, 6, 0, 0.4);
    animation: pulseLight 2s infinite;
}

@keyframes pulseLight {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

/* Opening Screen */
#opening-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-out, visibility 1s ease-out;
}

.opening-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeInVideo 2s forwards 0.5s;
}

.cinematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,6,8,0.3) 0%, rgba(5,6,8,0.9) 100%);
}

.opening-content {
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s forwards 1.5s;
}

.opening-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, #8D96A3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.opening-date, .opening-college {
    color: var(--text-sec);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(225, 6, 0, 0.3);
    margin-top: 2rem;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 6, 0, 0.5);
}

.primary-btn:hover::before {
    left: 100%;
}

.skip-text {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.skip-text:hover {
    color: var(--text-main);
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

#navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========================================
   NAV LOGO + DRONE XTREME
========================================= */

.logo { 
    display: flex; 
    align-items: center; 
    gap: 1px; 

    height: 80px; 

    margin: 0; 
    padding: 0; 

    font-family: var(--font-heading); 
    font-weight: 700; 
    font-size: 1.2rem; 
    letter-spacing: 1px; 
    white-space: nowrap; 
}

.nav-logo {
    width: 160px;
    height: 180px;

    object-fit: contain;
    display: block;

    margin: 0;
    padding: 0;

    flex-shrink: 0;

    transform: scale(1.8);
}


/* DRONEXTREME 2.0 */

.drone-title {
    margin: 0;
    padding: 0;

    font-family: var(--font-heading);

    font-size: 2.2rem;
    font-weight: 800;

    line-height: 1;

    letter-spacing: -1px;

    color: #fff;

    white-space: nowrap;
}

.red-x {
    color: #e10600;

    -webkit-text-fill-color: #e10600;

    text-shadow:
        0 0 15px rgba(225, 6, 0, 0.5);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-sec);
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
}

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

.nav-links a:hover {
    color: var(--text-main);
}

.nav-register-btn {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-register-btn:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 15px rgba(225, 6, 0, 0.4);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--text-main);
    transition: all 0.3s ease-in-out;
}

/* Sections General */
section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #8D96A3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

/* Utility Glasses */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* 3D Card System */
.card-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    will-change: transform;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* offset navbar */
    overflow: hidden;
    max-width: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, var(--bg-light) 0%, var(--bg-darker) 100%);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    perspective: 500px;
    transform: rotateX(60deg) scale(2);
    transform-origin: bottom center;
    opacity: 0.5;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 1;
    padding-right: 50px;
}

.hero-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(225, 6, 0, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(225, 6, 0, 0.1);
}


.hero-main-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.red-x {
    color: #E10600;
    -webkit-text-fill-color: #E10600;
    text-shadow: 0 0 20px rgba(225, 6, 0, 0.5);
}

.hero-details {
    margin-bottom: 2.5rem;
    border-left: 2px solid var(--primary);
    padding-left: 20px;
}

.hero-details p {
    color: var(--text-sec);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.explore-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-sec);
    letter-spacing: 1px;
    transition: color 0.3s;
}

.explore-btn:hover {
    color: #fff;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 600px;
}

.hero-drone-img {
    width: 100%;
    max-width: 700px;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8));
    animation: floatDrone 6s ease-in-out infinite;
}
/* =========================================
   PREMIUM STATS CARDS
========================================= */

.stats-section {
    width: 100%;
    max-width: 1400px;
    margin: -50px auto 0;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    width: 100%;
}

/* Individual Card */

.stat-item {
    min-height: 145px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 25px 18px;

    text-align: center;

    background: rgba(11, 15, 20, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;

    position: relative;
    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

/* Red top line */

.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15%;
    width: 70%;
    height: 2px;

    background: #e10600;

    opacity: 0.5;

    box-shadow: 0 0 15px rgba(225,6,0,0.5);

    transition: all 0.35s ease;
}

/* Hover */

.stat-item:hover {
    transform: translateY(-8px);

    border-color: rgba(225,6,0,0.45);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.5),
        0 0 25px rgba(225,6,0,0.08);
}

.stat-item:hover::before {
    left: 5%;
    width: 90%;
    opacity: 1;
}


/* Numbers */

.stat-number {
    font-family: var(--font-heading);

    font-size: 2.3rem;

    font-weight: 800;

    line-height: 1.1;

    color: #fff;

    margin-bottom: 8px;
}


/* Prize */

.highlight-stat .stat-number {
    color: #e10600;

    text-shadow:
        0 0 15px rgba(225,6,0,0.4);
}


/* South India's Largest */

.stat-text {
    font-family: var(--font-heading);

    font-size: 1.15rem;

    font-weight: 800;

    line-height: 1.2;

    color: #fff;

    margin-bottom: 8px;
}


/* Labels */

.stat-label {
    color: #8d96a3;

    font-family: var(--font-body);

    font-size: 0.75rem;

    font-weight: 600;

    letter-spacing: 1.5px;

    line-height: 1.3;
}


/* Remove old dividers */

.stat-divider {
    display: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .stats-section {
        margin-top: -30px;
        padding: 0 20px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        min-height: 125px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-text {
        font-size: 1.05rem;
    }

}


/* Experiences Grid */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1px) /* Wait, proper grid */ ;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.experience-card {
    position: relative;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5,6,8,1) 0%, rgba(5,6,8,0.2) 50%, rgba(5,6,8,0) 100%);
    transition: opacity 0.5s ease;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    transform: translateZ(30px);
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.view-details {
    color: var(--primary);
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.experience-card:hover .card-bg img {
    transform: scale(1.05);
}

.experience-card:hover .view-details {
    opacity: 1;
    padding-left: 10px;
}

/* Prize Pool */
.prize-pool-section {
    background: radial-gradient(circle at center, rgba(225,6,0,0.05) 0%, transparent 70%);
    padding: 120px 5%;
}

.prize-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.prize-content {
    flex: 1;
}

.prize-heading {
    font-size: 1.5rem;
    color: var(--text-sec);
    margin-bottom: 10px;
}


.prize-amount {
    font-size: 6rem;
    font-family: var(--font-heading);
    font-weight: 800;
    background: linear-gradient(to bottom, #fff, #8D96A3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 0 40px rgba(225,6,0,0.3);
}

.prize-subheading {
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 2px;
}

.prize-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.trophy-img {
    max-width: 100%;
    
    width: 600px;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    transform: scale(1.05);

    animation: floatDrone 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(225, 6, 0, 0.2));
    border-radius: 12px;
}

/* Event Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.detail-card {
    position: relative;
    width: 100%;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    margin: 0 !important;

    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
}
.detail-card:hover {
    border-color: rgba(225, 6, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(225,6,0,0.05);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.detail-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}
.experience-card {
    position: relative;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.10);
    background: #050608;
}

.card-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 35px 30px 28px;
    z-index: 5;
}

.card-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.5px;
    text-transform: uppercase;

    color: #fff;

    text-shadow:
        0 3px 15px rgba(0,0,0,0.9),
        0 0 2px rgba(255,255,255,0.3);

    margin-bottom: 22px;
}

.view-details {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #e10600;

    transition: all 0.3s ease;
}

/* Coordinators */
/* =====================================================
   PREMIUM COORDINATORS SECTION
===================================================== */

.coordinators-section {
    width: 100%;
    padding: 110px 6%;
    overflow: hidden;
    position: relative;
    text-align: center;
}

/* Subtle background glow */
.coordinators-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: 5%;
    left: -250px;

    background: radial-gradient(
        circle,
        rgba(56, 189, 248, 0.10),
        transparent 70%
    );

    filter: blur(30px);
    pointer-events: none;
}

.coordinators-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: 5%;
    right: -220px;

    background: radial-gradient(
        circle,
        rgba(0, 255, 136, 0.08),
        transparent 70%
    );

    filter: blur(35px);
    pointer-events: none;
}


/* =====================================================
   MAIN CONTAINER
===================================================== */

.coordinators-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* =====================================================
   CATEGORY
===================================================== */

.coord-category {
    width: 100%;
    margin-bottom: 90px;
}

.coord-category:last-child {
    margin-bottom: 0;
}


/* =====================================================
   CATEGORY TITLE
===================================================== */

.category-title {
    width: 100%;
    text-align: center;

    margin: 0 0 42px;
    padding-bottom: 20px;

    font-size: 30px;
    font-weight: 800;

    letter-spacing: 1.8px;
    line-height: 1.3;

    color: #ffffff;

    position: relative;
}

/* Gradient underline */
.category-title::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 0;

    width: 90px;
    height: 3px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        #38bdf8,
        #00ff88,
        transparent
    );

    border-radius: 50px;

    box-shadow:
        0 0 12px rgba(56, 189, 248, 0.5),
        0 0 20px rgba(0, 255, 136, 0.25);
}


/* =====================================================
   NORMAL COORDINATOR GRID
===================================================== */

.coord-grid {
    width: 100%;
    display: grid;

    grid-template-columns: repeat(3, 356px);

    gap: 30px;

    justify-content: center;
    align-items: center;
}


/* =====================================================
   PREMIUM COORDINATOR CARD
===================================================== */

.coord-card {
    width: 100%;
    min-height: 215px;

    padding: 32px 22px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    position: relative;
    overflow: hidden;

    box-sizing: border-box;

    border-radius: 18px;

    /* Glass effect */
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.09),
            rgba(255,255,255,0.025)
        );

    border: 1px solid rgba(255,255,255,0.10);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.08);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


/* Top gradient line */

.coord-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 15%;

    width: 70%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #38bdf8,
        #00ff88,
        transparent
    );

    opacity: 0.7;

    transition: 0.4s ease;
}


/* Hover glow */

.coord-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -90px;
    right: -90px;

    background: radial-gradient(
        circle,
        rgba(56,189,248,0.12),
        transparent 70%
    );

    transition: 0.5s ease;

    pointer-events: none;
}


/* Card hover */

.coord-card:hover {
    transform: translateY(-10px);

    border-color:
        rgba(56,189,248,0.35);

    box-shadow:
        0 25px 50px rgba(0,0,0,0.35),
        0 0 25px rgba(56,189,248,0.08),
        inset 0 1px 0 rgba(255,255,255,0.12);
}

.coord-card:hover::before {
    left: 5%;
    width: 90%;

    opacity: 1;
}

.coord-card:hover::after {
    transform: scale(1.5);
}


/* =====================================================
   COORDINATOR ICON
===================================================== */

.coord-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(56,189,248,0.14),
            rgba(0,255,136,0.08)
        );

    border: 1px solid rgba(255,255,255,0.10);

    color: #38bdf8;

    font-size: 21px;

    box-shadow:
        0 0 18px rgba(56,189,248,0.08),
        inset 0 0 12px rgba(255,255,255,0.03);

    transition: 0.4s ease;
}

.coord-card:hover .coord-icon {
    transform: scale(1.08) rotate(5deg);

    color: #00ff88;

    border-color:
        rgba(0,255,136,0.35);

    box-shadow:
        0 0 25px rgba(0,255,136,0.18);
}


/* =====================================================
   COORDINATOR NAME
===================================================== */

.coord-card h4 {
    margin: 0 0 15px;

    font-size: 20px;
    font-weight: 800;

    text-transform: uppercase;

    line-height: 1.35;

    letter-spacing: 0.5px;

    color: #ffffff;

    transition: 0.3s ease;
}

.coord-card:hover h4 {
    color: #38bdf8;
}


/* =====================================================
   PHONE
===================================================== */

.coord-phone {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    color: rgba(255,255,255,0.65);

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    transition: 0.3s ease;
}

.coord-phone:hover {
    color: #00ff88;

    transform: translateY(-2px);
}


/* =====================================================
   OVERALL COORDINATORS
===================================================== */

.overall-coordinators {
    margin-top: 20px;
    margin-bottom: 0;
}


/* =====================================================
   OVERALL GRID
===================================================== */

.overall-coord-grid {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 26px;

    align-items: stretch;
}


/* =====================================================
   PREMIUM OVERALL CARD
===================================================== */

.overall-coord-card {
    min-height: 260px;

    padding: 35px 28px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    position: relative;
    overflow: hidden;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.10),
            rgba(255,255,255,0.025)
        );

    border: 1px solid rgba(255,255,255,0.11);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.08);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


/* Premium top glow */

.overall-coord-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 12%;

    width: 76%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #00ff88,
        #38bdf8,
        transparent
    );

    opacity: 0.8;
}


/* Hover */

.overall-coord-card:hover {
    transform: translateY(-12px);

    border-color:
        rgba(0,255,136,0.30);

    box-shadow:
        0 28px 55px rgba(0,0,0,0.38),
        0 0 30px rgba(0,255,136,0.08);
}


/* =====================================================
   OVERALL ICON
===================================================== */

.overall-coord-icon {
    width: 64px;
    height: 64px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(0,255,136,0.14),
            rgba(56,189,248,0.10)
        );

    border: 1px solid rgba(255,255,255,0.12);

    color: #00ff88;

    font-size: 24px;

    box-shadow:
        0 0 25px rgba(0,255,136,0.10);

    transition: 0.4s ease;
}

.overall-coord-card:hover
.overall-coord-icon {
    transform: scale(1.1);

    color: #38bdf8;

    box-shadow:
        0 0 30px rgba(56,189,248,0.18);
}


/* =====================================================
   OVERALL INFORMATION
===================================================== */

.overall-coord-info {
    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
}


/* =====================================================
   ROLE
===================================================== */

.overall-coord-info span {
    display: block;

    margin-bottom: 12px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;

    line-height: 1.5;

    color: #38bdf8;

    text-transform: uppercase;
}


/* =====================================================
   OVERALL NAME
===================================================== */

.overall-coord-info h4 {
    margin: 0 0 13px;

    font-size: 22px;

    font-weight: 800;

    line-height: 1.3;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    color: #ffffff;

    transition: 0.3s ease;
}

.overall-coord-card:hover
.overall-coord-info h4 {
    color: #00ff88;
}


/* =====================================================
   FACULTY DESCRIPTION
===================================================== */

.overall-coord-info p {
    width: 100%;
    max-width: 290px;

    margin: 5px auto 0;

    font-size: 13px;

    line-height: 1.7;

    text-transform: uppercase;

    color: rgba(255,255,255,0.58);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .coord-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .overall-coord-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .coordinators-section {
        padding: 75px 5%;
    }


    .coord-category {
        margin-bottom: 65px;
    }


    .category-title {
        font-size: 22px;

        line-height: 1.4;

        margin-bottom: 28px;

        padding-bottom: 15px;

        letter-spacing: 1.2px;
    }


    .category-title::after {
        width: 70px;
    }


    .coord-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .overall-coord-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .coord-card {
        min-height: 195px;

        padding: 28px 18px;

        border-radius: 16px;
    }


    .overall-coord-card {
        min-height: 225px;

        padding: 30px 20px;

        border-radius: 18px;
    }


    .coord-icon {
        width: 50px;
        height: 50px;

        font-size: 19px;
    }


    .overall-coord-icon {
        width: 58px;
        height: 58px;

        font-size: 22px;
    }


    .coord-card h4 {
        font-size: 18px;
    }


    .overall-coord-info h4 {
        font-size: 19px;
    }


    .overall-coord-info span {
        font-size: 11px;

        letter-spacing: 1.4px;
    }


    .overall-coord-info p {
        font-size: 11px;

        line-height: 1.6;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .coordinators-section {
        padding-left: 4%;
        padding-right: 4%;
    }

    .category-title {
        font-size: 20px;
    }

    .coord-card h4 {
        font-size: 17px;
    }

    .overall-coord-info h4 {
        font-size: 18px;
    }

}
/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(40%) brightness(0.8);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1.1);
}

.gallery-item::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
    font-weight: 300;
}

.gallery-item:hover::after {
    opacity: 1;
}
.youtube-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.youtube-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.youtube-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.15)
    );
    opacity: 1;
}

.youtube-overlay a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #e10800;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: 0 0 25px rgba(225,8,0,0.5);
    transition: 0.3s ease;
}

.youtube-overlay a:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(225,8,0,0.8);
}

.play-icon {
    font-size: 18px;
}
/* =========================================
   SPONSORS SECTION
========================================= */
/* =========================
   SPONSORS RUNNING MARQUEE
========================= */

/* =========================================
   PREMIUM SPONSORS MARQUEE
========================================= */

.sponsors-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 80px 0 70px;

    background:
        radial-gradient(
            circle at center,
            rgba(225, 6, 0, 0.06),
            transparent 60%
        ),
        #050608;

    overflow: hidden;

    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}


/* =========================================
   HEADER
========================================= */

.sponsors-header {
    text-align: center;
    margin-bottom: 45px;
}

.sponsors-header span {
    display: block;

    color: #e10600;

    font-family: var(--font-body);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 10px;
}

.sponsors-header h2 {
    margin: 0;

    font-family: var(--font-heading);

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 800;

    letter-spacing: 2px;

    color: #fff;
}

.sponsors-header p {
    margin-top: 8px;

    color: #777d87;

    font-size: 14px;

    letter-spacing: 1px;
}


/* =========================================
   MARQUEE WINDOW
========================================= */

.sponsors-marquee {
    width: 100%;

    overflow: hidden;

    position: relative;
}


/* =========================================
   LEFT + RIGHT FADE
========================================= */

.sponsors-marquee::before,
.sponsors-marquee::after {
    content: "";

    position: absolute;

    top: 0;

    width: 150px;
    height: 100%;

    z-index: 5;

    pointer-events: none;
}

.sponsors-marquee::before {
    left: 0;

    background: linear-gradient(
        to right,
        #050608,
        transparent
    );
}

.sponsors-marquee::after {
    right: 0;

    background: linear-gradient(
        to left,
        #050608,
        transparent
    );
}


/* =========================================
   MOVING TRACK
========================================= */

.sponsors-track {
    display: flex;

    align-items: center;

    width: max-content;

    gap: 35px;

    /* RIGHT → LEFT */
    animation: sponsorScroll 22s linear infinite;

    will-change: transform;
}


/* =========================================
   SPONSOR CARD
========================================= */

.sponsor-logo {
    width: 190px;
    height: 100px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    padding: 18px 25px;

    background: bisque;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 12px;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}


/* =========================================
   SPONSOR IMAGE
========================================= */

.sponsor-logo img {
    max-width: 140px;
    max-height: 70px;

    width: auto;
    height: auto;

    object-fit: contain;

    filter: grayscale(100%);

    opacity: 0.7;

    transition:
        filter 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}


/* =========================================
   HOVER
========================================= */

.sponsor-logo:hover {
    border-color: rgba(225,6,0,0.6);

    background: rgba(225,6,0,0.05);

    transform: translateY(-5px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.5),
        0 0 25px rgba(225,6,0,0.12);
}

.sponsor-logo:hover img {
    filter: grayscale(0%);

    opacity: 1;

    transform: scale(1.05);
}


/* =========================================
   SEAMLESS RIGHT → LEFT LOOP
========================================= */

@keyframes sponsorScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(
            calc(-50% - 17.5px)
        );
    }

}


/* =========================================
   PAUSE ON HOVER
========================================= */

.sponsors-marquee:hover .sponsors-track {
    animation-play-state: paused;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .sponsors-section {
        padding: 70px 0 60px;
    }

    .sponsor-logo {
        width: 170px;
        height: 95px;
    }

    .sponsor-logo img {
        max-width: 125px;
        max-height: 65px;
    }

    .sponsors-track {
        gap: 28px;

        animation-duration: 20s;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .sponsors-section {
        padding: 55px 0 50px;
    }

    .sponsors-header {
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .sponsors-header span {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .sponsors-header h2 {
        font-size: 2rem;
    }

    .sponsors-header p {
        font-size: 12px;
    }

    .sponsor-logo {
        width: 145px;
        height: 80px;

        padding: 12px 18px;
    }

    .sponsor-logo img {
        max-width: 110px;
        max-height: 50px;
    }

    .sponsors-track {
        gap: 20px;

        animation-duration: 16s;
    }

    .sponsors-marquee::before,
    .sponsors-marquee::after {
        width: 70px;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .sponsor-logo {
        width: 130px;
        height: 75px;
    }

    .sponsor-logo img {
        max-width: 100px;
        max-height: 45px;
    }

    .sponsors-track {
        gap: 16px;

        animation-duration: 14s;
    }

}
/* Footer */
#footer {
    background: #030406;
    border-top: 1px solid var(--glass-border);
    padding: 80px 5% 30px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links h3, .footer-orgs h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

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

.footer-links ul li a {
    color: var(--text-sec);
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.org-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.org-logos img {
    height: 100px;
    background: #141414;
    padding: 5px;
    border-radius: 4px;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: black;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    font-size: 18px;
    text-decoration: none;

    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #ffffff;
    background: #e10800;
    border-color: #e10800;

    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(225, 8, 0, 0.5);
}

/* Modals */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.modal-container.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
}

.exp-modal {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    z-index: 10001;
    transform: scale(1) translateY(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.exp-modal.hidden {
    display: none;
    transform: scale(0.9) translateY(20px);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.close-modal:hover {
    background: var(--primary);
}

.exp-modal-hero {
    position: relative;
    height: 300px;
}

.exp-modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-modal-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px 20px;
    background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%);
}

.exp-modal-title-overlay h2 {
    font-size: 2.2rem;
    line-height: 1.1;
}

.exp-modal-content {
    padding: 30px;
}

.exp-features {
    margin-bottom: 25px;
}

.exp-features li {
    margin-bottom: 10px;
    color: var(--text-sec);
    font-size: 1.1rem;
}

.exp-info {
    background: var(--glass-bg);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    margin-bottom: 20px;
}

.exp-info p {
    margin-bottom: 5px;
}

.fee-structure {
    background: rgba(255,255,255,0.02);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.fee-structure h4 {
    margin-bottom: 10px;
    color: var(--primary);
}

.fee-structure li {
    margin-bottom: 8px;
    color: var(--text-sec);
}

.small-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
    font-style: italic;
}

.full-width {
    width: 100%;
}

.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 25px; }

/* Registration Selection Modal */
.reg-selection-content {
    position: relative;
    z-index: 10001;
    padding: 50px;
    text-align: center;
    width: 90%;
    max-width: 1000px;
}

.reg-selection-content h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.reg-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reg-option {
    background: rgba(0,0,0,0.5);
    padding: 40px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

.reg-option h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    height: 3rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s;
}

.lightbox.hidden {
    opacity: 0;
    pointer-events: none;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-lightbox:hover {
    color: var(--primary);
}

/* Keyframes */
@keyframes fadeInVideo {
    to { opacity: 0.6; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatDrone {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Animation utilities for JS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* =========================================
   PREMIUM REGISTRATION MODAL
========================================= */

.register-modal {
    position: relative;
    width: min(1400px, 94vw);
    max-height: 92vh;
    overflow-y: auto;

    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(225, 8, 0, 0.10),
            transparent 40%
        ),
        #08090b;

    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 22px;

    padding: 55px 55px 25px;

    box-shadow:
        0 40px 100px rgba(0,0,0,0.8),
        0 0 80px rgba(225,8,0,0.08);

    z-index: 10;
}


/* Header */

.register-header {
    text-align: center;
    margin-bottom: 40px;
}

.register-kicker {
    display: inline-block;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;

    color: #ff2b22;

    margin-bottom: 12px;
}

.register-header h2 {
    margin: 0;

    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    letter-spacing: -1px;

    color: #fff;
}

.register-header h2 span {
    color: #e10800;
}

.register-header p {
    margin-top: 10px;

    color: #858991;

    font-size: 15px;
}


/* Cards Grid */

.registration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* Card */

.registration-card {
    position: relative;

    overflow: hidden;

    background: #050607;

    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.registration-card:hover {
    transform: translateY(-8px);

    border-color: rgba(225,8,0,0.7);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.7),
        0 0 35px rgba(225,8,0,0.12);
}


/* Image */

.registration-image {
    position: relative;

    height: 210px;

    overflow: hidden;

    background: #000;
}

.registration-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.registration-card:hover .registration-image img {
    transform: scale(1.07);
}

.image-gradient {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 30%,
            #050607 100%
        );
}

.card-number {
    position: absolute;

    top: 15px;
    right: 16px;

    font-size: 13px;
    font-weight: 700;

    color: #fff;

    background: rgba(0,0,0,0.6);

    border: 1px solid rgba(255,255,255,0.15);

    padding: 7px 10px;

    border-radius: 6px;
}


/* Content */

.registration-content {
    padding: 5px 25px 25px;
}

.experience-tag {
    display: inline-block;

    color: #ff2b22;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.registration-content h3 {
    margin: 0;

    color: #fff;

    font-size: 25px;
    line-height: 1.05;

    font-weight: 800;
}

.card-description {
    color: #92959c;

    font-size: 13px;
    line-height: 1.6;

    min-height: 42px;

    margin: 15px 0 20px;
}


/* Info */

.registration-info {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-bottom: 14px;
}

.registration-info div {
    padding: 12px;

    background: rgba(255,255,255,0.035);

    border: 1px solid rgba(255,255,255,0.07);

    border-radius: 8px;
}

.registration-info span,
.fee-box > span {
    display: block;

    color: #777b83;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 5px;
}

.registration-info strong {
    color: #eee;

    font-size: 11px;
}


/* Fee */

.fee-box {
    padding: 14px;

    background: rgba(225,8,0,0.05);

    border-left: 2px solid #e10800;

    margin-bottom: 18px;
}

.fee-box p {
    margin: 5px 0;

    color: #b9bbc0;

    font-size: 11px;
}


/* Register Button */

.register-experience-btn {
    width: 100%;

    border: none;

    padding: 14px 18px;

    border-radius: 7px;

    background: #e10800;

    color: #fff;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.5px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    transition: all 0.3s ease;

    box-shadow:
        0 8px 25px rgba(225,8,0,0.20);
}

.register-experience-btn span {
    font-size: 18px;

    transition: transform 0.3s ease;
}

.register-experience-btn:hover {
    background: #ff1a12;

    box-shadow:
        0 10px 35px rgba(225,8,0,0.40);
}

.register-experience-btn:hover span {
    transform: translateX(5px);
}


/* Footer */

.register-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    margin-top: 25px;

    color: #555960;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1px;

    text-align: center;
}


/* Scrollbar */

.register-modal::-webkit-scrollbar {
    width: 5px;
}

.register-modal::-webkit-scrollbar-track {
    background: transparent;
}

.register-modal::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}