       :root {
            --primary: #8B0000;
            --primary-light: #fdf2f2;
            --accent: #E63946;
            --dark: #1a1a1a;
            --glass: rgba(255, 255, 255, 0.85);
            --shadow: 0 20px 40px rgba(0,0,0,0.06);
            --radius: 24px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            background-color: #fcfcfd;
            line-height: 1.7;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, .navbar-brand {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        /* --- Modern Rounded Floating Navigation --- */
        .nav-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            display: flex;
            justify-content: center;
            pointer-events: none;
        }

        .navbar {
            pointer-events: auto;
            backdrop-filter: blur(15px);
            background: rgba(255, 255, 255, 0.9) !important;
            padding: 0.7rem 1.5rem;
            border: 1px solid rgba(0,0,0,0.08);
            margin-top: 20px;
            border-radius: 100px; 
            width: 95%;
            max-width: 1200px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
        }

        .navbar-brand {
            font-size: 1.4rem;
            color: var(--primary) !important;
            text-transform: uppercase;
        }

        .nav-link {
            font-weight: 500;
            margin: 0 8px;
            color: #555 !important;
            transition: 0.3s;
            font-size: 0.9rem;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary) !important;
        }

        /* --- Hero Section --- */
        .visual-hero-section {
            padding: 240px 0 160px 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(05,0,0,0.7) 30%), 
                        url('image/123.png') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            clip-path: ellipse(160% 100% at 50% 0%);
            color: white;
            text-align: center;
            min-height: 90vh;
        }

        .hero-badge {
            background: rgba(255,255,255,0.15);
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            display: inline-block;
            backdrop-filter: blur(5px);
        }

        .hero-title-visual {
            font-size: clamp(3rem, 7vw, 5.5rem);
            margin-bottom: 1.5rem;
        }

        .btn-modern-primary {
            background: white;
            color: var(--primary);
            padding: 18px 45px;
            border-radius: 100px;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: 0.4s;
            border: none;
            text-decoration: none;
            display: inline-block;
        }

        .btn-modern-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            background: var(--primary-light);
            color: var(--primary);
        }

        /* --- Common Styles --- */
        .section-padding { padding: 100px 0; }
        
        .section-tag {
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 10px;
        }

        /* --- Feature Box --- */
        .feature-box {
            background: white;
            padding: 40px 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: 0.3s;
            border: 1px solid rgba(0,0,0,0.02);
            height: 100%;
        }

        .feature-icon-wrapper {
            width: 80px;
            height: 80px;
            background: var(--primary-light);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary);
            font-size: 2.2rem;
        }

    
        @media (max-width: 991px) {
            .navbar { border-radius: 25px; margin-top: 10px; }
            .navbar-collapse { background: white; border-radius: 20px; padding: 20px; margin-top: 15px; }
        }

          .about-section {
            padding: 120px 0;
            background-color: #fff;
        }

        .about-image-stack {
            position: relative;
            padding-bottom: 50px;
        }

        .main-img {
            width: 85%;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            position: relative;
            z-index: 2;
        }

        .sub-img {
            width: 60%;
            position: absolute;
            bottom: 0;
            right: 0;
            border-radius: var(--radius);
            border: 8px solid white;
            box-shadow: var(--shadow);
            z-index: 3;
        }

        .experience-badge {
            position: absolute;
            top: -20px;
            left: -20px;
            background: var(--primary);
            color: white;
            padding: 25px;
            border-radius: 20px;
            z-index: 4;
            text-align: center;
            box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
        }

        .stat-card {
            padding: 20px;
            border-left: 3px solid var(--primary);
            background: var(--primary-light);
            border-radius: 0 15px 15px 0;
        }

        .stat-number {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 2rem;
            color: var(--primary);
            display: block;
        }

          .registration-timeline {
            position: relative;
            padding: 80px 0 120px 0;
            background: #121212; /* Deep dark background */
            overflow: hidden;
        }

        /* The Deadline Banner */
        .deadline-banner {
            background: rgba(230, 57, 70, 0.1);
            border: 1px solid var(--accent);
            color: #ff4d5a;
            padding: 15px 30px;
            border-radius: 100px;
            display: inline-flex;
            align-items: center;
            font-weight: 700;
            margin-bottom: 40px;
            font-family: 'Outfit', sans-serif;
            letter-spacing: 0.5px;
        }
        
        .deadline-banner i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .glass-step-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 28px;
            padding: 45px 30px 35px;
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            text-align: center;
        }

        .glass-step-card:hover {
            background: rgba(255, 255, 255, 0.07);
            transform: translateY(-10px);
            border-color: rgba(230, 57, 70, 0.5);
            box-shadow: 0 25px 50px rgba(0,0,0,0.5);
        }

        .step-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .step-title {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            font-size: 1.25rem;
        }

        .step-desc {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .glass-btn {
            background: var(--accent);
            color: white;
            border-radius: 100px;
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 1px;
            padding: 12px 20px;
            transition: 0.3s;
            border: none;
            margin-top: auto;
            text-transform: uppercase;
        }

        .glass-btn:hover {
            background: white;
            color: var(--primary);
            transform: scale(1.05);
        }

        /* Glowing background effect */
        .bg-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            background: radial-gradient(circle, rgba(139, 0, 0, 0.15) 0%, rgba(18, 18, 18, 0) 70%);
            pointer-events: none;
        }

         .payment-section {
            padding: 100px 0;
            background-color: #ffffff;
        }

        .bank-card {
            background: linear-gradient(135deg, #8B0000 0%, #4a0000 100%);
            color: white;
            border-radius: var(--radius);
            padding: 40px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(139, 0, 0, 0.2);
        }

        .bank-card::after {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

        .detail-row {
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding: 15px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .detail-row:last-child {
            border-bottom: none;
        }

        .detail-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.7;
        }

        .detail-value {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .instruction-step {
            display: flex;
            margin-bottom: 25px;
        }

        .step-number {
            min-width: 35px;
            height: 35px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 20px;
        }

        .payment-alert {
            background: #fff9db;
            border: 1px solid #f59f00;
            border-radius: 15px;
            padding: 20px;
            display: flex;
            align-items: center;
        }

            .registration-options {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .option-card {
            background: white;
            border-radius: 30px;
            padding: 50px 40px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            transition: 0.4s;
            height: 100%;
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }

        .option-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.1);
            border-color: var(--primary);
        }

        .option-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 25px;
        }

        .method-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--primary);
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .benefit-list {
            list-style: none;
            padding: 0;
            margin: 25px 0;
        }

        .benefit-list li {
            margin-bottom: 12px;
            font-size: 0.95rem;
            color: #555;
            display: flex;
            align-items: center;
        }

        .benefit-list li i {
            color: #28a745;
            margin-right: 10px;
        }

         .contact-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }

        .contact-grid {
            display: flex;
            flex-wrap: wrap;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
        }

        .contact-info-side {
            flex: 1;
            min-width: 350px;
            padding: 60px;
        }

        .map-side {
            flex: 1.2;
            min-width: 350px;
            min-height: 450px;
            position: relative;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 35px;
        }

        .info-icon {
            width: 55px;
            height: 55px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 25px;
            flex-shrink: 0;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 40px;
        }

        .social-btn {
            width: 45px;
            height: 45px;
            background: #f1f1f1;
            color: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
            text-decoration: none;
        }

        .social-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }

        @media (max-width: 768px) {
            .contact-info-side { padding: 40px 30px; }
            .map-side { min-height: 350px; }
        }

          .schedule-section {
            padding: 100px 0;
            background-color: #fcfcfc;
        }

        .schedule-grid {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        /* 2 Dates per line on Desktop */
        .schedule-item {
            padding: 0 15px;
            width: 50%; 
            margin-bottom: 30px;
        }

        .schedule-card {
            background: white;
            border-radius: 25px;
            border: 1px solid rgba(0,0,0,0.06);
            height: 100%;
            transition: 0.3s;
            overflow: hidden;
            display: flex;
            box-shadow: 0 10px 20px rgba(0,0,0,0.02);
        }

        .schedule-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-color: var(--primary);
        }

        .date-block {
            background: #f8f9fa;
            padding: 40px 30px;
            min-width: 160px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 1px solid #eee;
        }

        .date-block .month { font-size: 1rem; font-weight: 700; color: var(--primary); text-transform: uppercase; }
        .date-block .day { font-size: 3rem; font-weight: 800; color: #1a1a1a; line-height: 1; }

        .content-block { padding: 30px; flex: 1; display: flex; flex-direction: column; justify-content: center; }

        .level-badge {
            display: inline-block;
            padding: 5px 12px;
            background: #f1f1f1;
            color: #333;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 700;
            margin: 0 4px 6px 0;
        }

        /* Hidden Set Logic */
        #second-set {
            display: none; /* Initially Hidden */
        }

        @media (max-width: 992px) {
            .schedule-item { width: 100%; }
            .schedule-card { flex-direction: column; }
            .date-block { border-right: none; border-bottom: 1px solid #eee; flex-direction: row; gap: 20px; padding: 20px; }
            .date-block .day { font-size: 2rem; }
        }

           :root {
            --primary: #8B0000; /* Deep Red */
        }

        .main-footer {
            background-color: #0f0f0f;
            color: #ffffff;
            padding-top: 80px;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-family: 'Outfit', sans-serif;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            letter-spacing: -1px;
            margin-bottom: 20px;
            display: block;
            text-decoration: none;
        }

        .footer-logo span {
            color: var(--primary);
        }

        .footer-heading {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background: var(--primary);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: 0.3s;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: #ffffff;
            padding-left: 8px;
            border-left: 2px solid var(--primary);
        }

        .footer-contact-info {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }

        .social-btn {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.05);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: 0.3s;
        }

        .social-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .copyright-bar {
            background-color: #000000;
            padding: 25px 0;
            margin-top: 60px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-bottom-text {
            color: rgba(255,255,255,0.4);
            font-size: 0.85rem;
            margin-bottom: 0;
        }

        .back-to-top {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: 0.3s;
        }

        .back-to-top:hover {
            background: white;
            color: var(--primary);
        }

      @media (max-width: 768px) {
  /* HERO HEIGHT IMPROVEMENT */
.visual-hero-section {
    min-height: 100vh;               /* Full screen height */
    padding: 260px 0 180px;          /* More breathing space */
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .visual-hero-section {
        min-height: 90vh;
        padding: 180px 15px 120px;   /* Increased height on mobile */
    }
}

  .hero-title-visual {
    font-size: 2.3rem;
    line-height: 1.2;
  }

  .visual-hero-section p {
    font-size: 0.95rem;
  }
}

.hero-buttons {
    display: flex;
    gap: 24px;              /* SPACE BETWEEN BUTTONS */
    justify-content: center;
    margin-top: 40px;
}

/* Mobile: stack buttons nicely */
@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}


@media (max-width: 576px) {
  .navbar {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .navbar-collapse {
    text-align: center;
  }

  .nav-link {
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }

  .contact-info-side,
  .map-side {
    min-width: 100%;
    padding: 30px 20px;
  }

  .map-side {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .schedule-item {
    width: 100%;
  }

  .schedule-card {
    flex-direction: column;
  }

  .date-block {
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    min-width: 100%;
  }
}

/* ABOUT SECTION – PERFECT MOBILE CENTERING */
@media (max-width: 768px) {

  .about-image-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 0;
  }

  .about-image-stack img {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .main-img {
    width: 100%;
    max-width: 420px;   /* keeps image centered & not too wide */
    margin-bottom: 20px;
  }

  .sub-img {
    position: relative;
    width: 75%;
    max-width: 320px;
    margin-top: -40px;
    right: auto;
    bottom: auto;
    left: auto;
    border-width: 4px;
  }

  .experience-badge {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 15px;
    align-self: center;
  }
}


@media (max-width: 768px) {
  [data-aos] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  overflow-x: hidden;
}

.neon-deadline-card {
    background: rgba(15, 23, 42, 0.6); /* Deep dark glass */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.neon-deadline-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent); /* Uses your existing accent color */
}

.neon-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Glowing Icon Circle */
.neon-left {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.5);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 2px solid var(--accent);
    animation: neon-pulse 2s infinite;
}

.neon-right {
    text-align: left;
}

.neon-label {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.neon-title {
    color: #f8fafc;
    font-weight: 700;
    margin: 0;
    font-size: 1.4rem;
}

.time-highlight {
    color: var(--accent);
    font-weight: 300;
    margin-left: 10px;
}

/* Bottom Glowing Line */
.neon-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
}

.neon-progress-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: shimmer 3s infinite linear;
}

/* Animations */
@keyframes neon-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Mobile Tweak */
@media (max-width: 576px) {
    .neon-title { font-size: 1.1rem; }
    .time-highlight { display: block; margin: 0; }
}