
        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        body {
            background-color: #121212;
            color: #fff;
            min-height: 100vh;
            overflow-x: hidden;
        }
.qr-code-container {
    text-align: center;
    margin-top: 10px;
    margin-right: 40px;
    /* display: flex; */
    /* height: 40px; */
}
      /* Base Style (shared by all devices) */
.register-btn {
    position: fixed;
    top: 10px;
    right: 20px;
    padding: 10px 20px;
   background: linear-gradient(135deg, #4a6bff, #8a2be2); /* already solid */

    color: white;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: clamp(14px, 4vw, 16px);
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(74, 107, 255, 0.5);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    opacity: 1;
    white-space: nowrap;
    text-decoration: none;
}

/* Hover effect for all */
.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 107, 255, 0.7);
    background: linear-gradient(135deg, #5a7bff, #9a3bf2);
}

/* ✅ Animation only for desktop */
@media (min-width: 769px) {
    .register-btn {
        right: -200px;
        
        opacity: 0;
        animation: slideIn 1.5s forwards, pulse 2s infinite 1.5s;
    }

    @keyframes slideIn {
        0% {
            right: -200px;
            opacity: 0;
        }
        50% {
            right: 50%;
            transform: translateX(50%);
            opacity: 1;
        }
        100% {
            right: 20px;
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(74, 107, 255, 0.5);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(74, 107, 255, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(74, 107, 255, 0);
        }
    }
}

/* ✅ Explicitly disable animations on mobile */
@media (max-width: 768px) {
    .register-btn {
        animation: none !important;
        transform: none !important;
        top: 170px;
        right: 10px;
    }
}
/* Base link style */
.nav-item.special-link a {
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

/* Underline effect */
.nav-item.special-link a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, #4a6bff, #8a2be2);
  transition: width 0.3s ease;
}

/* On hover */
.nav-item.special-link a:hover {
  color: #8a2be2;
}

.nav-item.special-link a:hover::after {
  width: 100%;
}


.qr-code {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;

}
.qr-caption {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(90deg, #ff8a00, #e52e71, #00b4d8);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradient 3s linear infinite;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@keyframes gradient {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
        /* Sidebar Navigation */
   /* Original Desktop Sidebar Styles (unchanged) */
.sidebar {
    width: 280px;
    background-color: #1a1a1a;
    padding: 40px 40px;
    height: 100vh;
    position: fixed;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #333;
    z-index: 100;
}

/* Mobile Header - Hidden on Desktop */
.mobile-header {
    display: none;
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive Behavior */
@media (max-width: 992px) {
    .sidebar {
        display: none;
    }
    
    .mobile-header {
        display: block;
    }
}

/* Mobile-specific styles (same as before) */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    border-bottom: 1px solid #333;
}

.mobile-header .logo img {
    /* height: 120px; */
    width: 120px;
}

/* Hamburger Menu Styles (same as before) */
.hamburger {
    padding: 10px;
    display: inline-block;
    cursor: pointer;
    background-color: transparent;
    border: 0;
    margin: 0;
    outline: none;
}

/* ... (rest of the hamburger and mobile nav styles from previous answer) ... */
.venue-container {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 12px 20px;
        margin: 10px auto;
        max-width: 400px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        /* animation: float 3s ease-in-out infinite; */
    }
    
    .venue-icon {
        margin-right: 15px;
        color: #fff;
        background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .venue-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .venue-text {
        text-align: left;
    }
    
    .venue-title {
        color: rgba(255, 255, 255, 0.8);
        font-size: 12px;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .venue-name {
        color: white;
        font-size: 16px;
        font-weight: 600;
        margin: 3px 0;
        line-height: 1.2;
    }
    
    .venue-city {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        margin: 0;
        font-style: italic;
        font-weight: 500;
    }
    
    /* @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-5px); }
        100% { transform: translateY(0px); }
    } */
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .venue-container {
            padding: 10px 15px;
            max-width: 90%;
        }
        
        .venue-name {
            font-size: 14px;
        }
        
        .venue-city {
            font-size: 12px;
        }
    }
        .logo {
            display: flex;
            align-items: center;
          justify-content: flex-start; /* Optional */
            margin-bottom: 10px;
        }

        .logo img {
            width: 120px;
            transition: all 0.3s ease;
        }

        .nav-links {
            list-style: none;
            flex-grow: 1;
            gap: 5px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .nav-links li {
            margin-bottom: 12px;
        }

        .nav-links a {
            color: #aaa;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: block;
            padding: 5px 0;
            letter-spacing: 1px;
            position: relative;
        }

        .nav-links a:hover {
            color: #fff;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: #fff;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links .active {
            color: #fff;
            font-weight: 500;
        }

        .nav-links .active::after {
            width: 100%;
        }

        .auth-buttons {
            margin-top: auto;
        }

        .btn {
            display: block;
            width: 100%;
            padding: 5px;
            margin-bottom: 55px;
            border-radius: 4px;
            text-align: center;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            margin-top: 14px;
        }

        .btn-login {
            background-color: transparent;
            color: #fff;
            border: 1px solid #444;
        }

        .btn-login:hover {
            background-color: rgba(255, 255, 255, 0.05);
            border-color: #666;
        }
        .auth-buttons {
    margin-top: auto;
}

        .btn-tickets {
            background-color: #fff;
            color: #121212;
            border: 1px solid #fff;
        }

        .btn-tickets:hover {
            background-color: transparent;
            color: #fff;
        }
        /* Mobile Navbar Styles */
.mobile-navbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #333;
}

.mobile-navbar .logo img {
    height: 50px;
}

/* Hamburger Menu Styles */
.hamburger {
    padding: 10px;
    display: inline-block;
    cursor: pointer;
    background-color: transparent;
    border: 0;
    margin: 0;
    outline: none;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner, 
.hamburger-inner::before, 
.hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition: transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0),
                opacity 0.3s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/* Active state for hamburger */
.hamburger.active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger.active .hamburger-inner::before {
    transform: rotate(0) scale(0.2, 0.2);
    opacity: 0;
}

.hamburger.active .hamburger-inner::after {
    transform: rotate(-90deg) translateY(8px);
}
/* Supporting Partners Styles */
.supporting-partners {
    margin: 10px 0;
    text-align: center;

}

.partners-label {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-logo {
    max-height: 60px;
    width: auto;
    filter: grayscale(30%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partner-logos {
        gap: 20px;
    }
    .partner-logo {
        max-height: 40px;
    }
}
/* Mobile Nav Links */
.mobile-nav-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    background-color: #1a1a1a;
}

.mobile-nav-links.open {
    max-height: 1000px; /* Adjust based on your content */
}

.mobile-nav-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid #333;
}

.mobile-nav-links a {
    display: block;
    padding: 15px 20px;
    color: #aaa;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}


.mobile-nav-links a:hover,
.mobile-nav-links .active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-auth-buttons {
    padding: 20px;
}

.mobile-auth-buttons .btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.mobile-auth-buttons .btn-tickets {
    background-color: #fff;
    color: #121212;
    border: 1px solid #fff;
}

.mobile-auth-buttons .btn-tickets:hover {
    background-color: transparent;
    color: #fff;
}

/* Media Query for Mobile */
@media (max-width: 992px) {
    .sidebar {
        display: none;
    }
    
    .mobile-navbar {
        display: block;
    }
}

        /* Main Content */
        .main-content {
            margin-left: 280px;
            flex: 1;
            position: relative;
        }

        /* Hero Section */
        .hero {
            position: relative;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
                url('https://i.pinimg.com/736x/3f/e0/ea/3fe0ea69a9ae24fe2f620986764cf2ed.jpg') center/cover no-repeat;
            height: 100vh;
            padding: 0 80px;
            display: flex;
            
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 900px;
            animation: fadeInRight 1.5s ease-out;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 50px;
            color: #fff;
            margin-top: 0px;
            font-weight: 500;
            line-height: 1.2;
            letter-spacing: 1px;
            text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
            margin-bottom: 30px;
        }

      

        .btn-hero {
            display: inline-block;
            padding: 15px 40px;
            background-color: #fff;
            color: #121212;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            letter-spacing: 1px;
        }

        .btn-hero:hover {
            background-color: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        /* Countdown Timer */
        .counter-card {
            /* background: rgba(48, 46, 46, 0.7); */
            padding: 15px 15px;
            border-radius: 10px;
            /* backdrop-filter: blur(8px); */
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            perspective: 1000px;
            transform-style: preserve-3d;
            transition: transform 0.3s ease-out;
            margin-top: 20px;
        }

        .countdown-title {
            font-size: 25px;
            font-weight: 500;
            color: #ffffff;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .countdown {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .countdown-item {
            text-align: center;
            min-width: 80px;
        }

        .countdown-number {
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 2px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }

        .countdown-label {
            font-size: 1rem;
            font-weight: 400;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* About Section */
        .about-MSME-day {
            background-color: #0a0a0a;
            color: #ffffff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
            background-size: 20px 20px;

            z-index: 1;
        }

        .bg-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           overflow: visible;
    z-index: 2; /* Higher than bg-pattern */
    pointer-events: none; /* Prevents interference */
        }

        .circuit-node {
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(0, 255, 200, 0.7);
            border-radius: 50%;
            box-shadow: 0 0 10px 2px rgba(0, 255, 200, 0.5);
            animation: float 15s infinite linear;
        }
.circuit-node,
.leaf-node {
    z-index: 2;
}

        /* .leaf-node {
            position: absolute;
            font-size: 18px;
            color: rgba(0, 255, 100, 0.7);
            animation: float 12s infinite linear;
            opacity: 0;
        } */

        .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            padding: 0 40px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 300;
            color: #ffffff;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
            /* opacity: 0; */
            transform: translateY(30px);
        }

        .section-subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            color: #aaaaaa;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            /* opacity: 0; */
            transform: translateY(30px);
        }

        .about-content {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            margin-bottom: 60px;
        }

        .intro-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #dddddd;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            /* opacity: 0; */
            transform: translateY(30px);
        }

        .highlight-box {
            background: rgba(255, 255, 255, 0.03);
            border-left: 3px solid rgba(0, 255, 200, 0.5);
            border-right: 3px solid rgba(0, 255, 200, 0.5);
            padding: 40px;
            margin: 40px 0;
            text-align: center;
            position: relative;
            /* opacity: 0; */
            transform: translateY(30px);
        }

        .theme-statement {
            font-size: 1.8rem;
            font-weight: 300;
            color: #ffffff;
            line-height: 1.6;
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            font-style: italic;
        }

        .theme-statement::before,
        .theme-statement::after {
            content: '"';
            font-size: 3rem;
            color: rgba(0, 255, 200, 0.5);
            position: absolute;
            opacity: 0.5;
        }

        .theme-statement::before {
            top: -20px;
            left: -30px;
        }

        .theme-statement::after {
            bottom: -40px;
            right: -30px;
        }

        .features-section {
            margin: 60px 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 8px;
            transition: all 0.3s ease;
            /* opacity: 0; */
            transform: translateY(30px);
        }
.section-title,
.section-subtitle,
.intro-text,
.highlight-box {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-5px) translateY(30px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: #00ffc8;
            margin-bottom: 20px;
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 500;
            color: #ffffff;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .feature-desc {
            font-size: 1rem;
            line-height: 1.7;
            color: #aaaaaa;
            font-weight: 300;
        }

        /* Animations */
        @keyframes fadeInRight {
            0% {
                opacity: 0;
                transform: translateX(100px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }
        
@keyframes floatLeaf {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.leaf-node {
    position: absolute;
    font-size: 18px;
    color: rgba(0, 255, 100, 0.7);
    animation: floatLeaf 12s infinite linear;
    z-index: 2;
    pointer-events: none;
}

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .hero {
                padding: 0 40px;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .sidebar {
                width: 220px;
                padding: 30px 20px;
            }

            .main-content {
                margin-left: 220px;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .counter-card {
                padding: 30px;
            }

            .countdown {
                gap: 20px;
            }

            .countdown-number {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .theme-statement {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            body {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                height: auto;
                position: relative;
                padding: 20px;
                border-right: none;
                border-bottom: 1px solid #333;
            }

            .main-content {
                margin-left: 0;
            }

            .hero {
                padding: 100px 20px 60px;
                height: auto;
                min-height: 100vh;
            }

            .hero-title {
                font-size: 2.2rem;
                margin-bottom: 20px;
            }

            .counter-card {
                width: 100%;
                padding: 20px;
                margin-top: 30px;
            }

            .countdown {
                gap: 15px;
            }

            .countdown-item {
                min-width: 60px;
            }

            .countdown-number {
                font-size: 2rem;
            }

            .countdown-label {
                font-size: 0.8rem;
            }

            .content-wrapper {
                padding: 0 20px;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .theme-statement {
                font-size: 1.2rem;
                padding: 0 10px;
            }

            .theme-statement::before,
            .theme-statement::after {
                font-size: 2rem;
            }

            .theme-statement::before {
                left: -15px;
                top: -10px;
            }

            .theme-statement::after {
                right: -15px;
                bottom: -20px;
            }

            .highlight-box {
                padding: 20px 10px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }
        }
                /* Objectives Section Styles */
        .objectives-section {
            background-color: #0a0a0a;
            color: #ffffff;
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .objectives-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 300;
            color: #ffffff;
            margin-bottom: 1rem;
            letter-spacing: 1px;
            opacity: 0;
            transform: translateY(20px);
        }

        .section-subtitle {
            font-size: 1.1rem;
            font-weight: 300;
            color: #aaaaaa;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(20px);
        }

        .objectives-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            /* margin-top: 3rem; */
        }

        .objective-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 2.5rem;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
        }

        .objective-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0;
            background: linear-gradient(to bottom, #ffffff, #aaaaaa);
            transition: height 0.4s ease;
        }

        .objective-card:hover::before {
            height: 100%;
        }

        .objective-number {
            font-size: 1rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 1rem;
            display: inline-block;
            position: relative;
            padding-left: 2.5rem;
        }

        .objective-number::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 2rem;
            height: 1px;
            background: rgba(255, 255, 255, 0.3);
        }

        .objective-title {
            font-size: 1.4rem;
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 1.5rem;
            line-height: 1.4;
            position: relative;
        }

        .objective-desc {
            font-size: 1rem;
            line-height: 1.7;
            color: #aaaaaa;
            font-weight: 300;
        }

        .bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
            background-size: 20px 20px;
            z-index: 1;
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .objectives-section {
                padding: 4rem 1.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .objectives-grid {
                grid-template-columns: 1fr;
            }
            
            .objective-card {
                padding: 2rem;
            }
        }
        .objective-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    /* filter: brightness(0) invert(1);  */
}
.objective-card {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        :root {
            --primary: #6C63FF;
            --secondary: #FF6584;
            --accent: #00BFB2;
            --dark: #121212;
            --darker: #0A0A0A;
            --light: #F5F5F7;
            --gray: #2A2A2A;
        }
        
        /* body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--dark);
            color: var(--light);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        } */
        
        .container-agenda {
            display: flex;
            min-height: 100vh;
        }
        
        
        
        /* Main Content */
        /* Main Content Area */
.main-content-agenda {
    flex: 1;
    padding: 3rem;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Timeline Container */
.timeline-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: var(--light);
    border: 4px solid var(--primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
    text-align: right;
}

.right {
    left: 50%;
    text-align: left;
}

.left::after {
    right: -12px;
}

.right::after {
    left: -12px;
}

.timeline-content {
    padding: 20px 30px;
    background: rgba(42, 42, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.right .timeline-content {
    border-left: none;
    border-right: 4px solid var(--accent);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 0 0 1rem;
    color: var(--light);
}

.timeline-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
}

.timeline-icon {
    position: absolute;
    top: 20px;
    font-size: 1.5rem;
    color: var(--light);
    background: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.2);
}

.left .timeline-icon {
    right: -75px;
}

.right .timeline-icon {
    left: -75px;
}

.session-type {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 191, 178, 0.2);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inaugural {
    background: rgba(108, 99, 255, 0.2);
    color: var(--primary);
}

.panel {
    background: rgba(255, 101, 132, 0.2);
    color: var(--secondary);
}

.networking {
    background: rgba(0, 191, 178, 0.2);
    color: var(--accent);
}

/* Responsive Timeline */
@media screen and (max-width: 992px) {
    .main-content-agenda {
        padding: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left;
    }
    
    .timeline-item::after {
        left: 19px;
    }
    
    .left::after, 
    .right::after {
        left: 19px;
    }
    
    .left, .right {
        left: 0;
        text-align: left;
    }
    
    .left .timeline-icon, 
    .right .timeline-icon {
        left: 15px;
        right: auto;
    }
    
    .left .timeline-content,
    .right .timeline-content {
        border-left: 4px solid var(--primary);
        border-right: none;
    }
    
    .page-header {
        margin-bottom: 2rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .main-content-agenda {
        padding: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 60px;
        padding-right: 15px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-title {
        font-size: 1.2rem;
    }
    
    .timeline-desc {
        font-size: 0.9rem;
    }
    
    .session-type {
        font-size: 0.7rem;
    }
}
        /* Responsive Timeline */
        @media screen and (max-width: 768px) {
            .timeline::after {
                left: 31px;
            }
                    .timeline {
  overflow-x: hidden;
}
/* body {
  overflow-x: hidden;
} */

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
                text-align: left;
            }
            .timeline-icon{
                display: none;
            }
            .timeline-item::after {
                left: 40px;
            }
            
            .left::after, .right::after {
                left: 40px;
            }
            
            .left .timeline-icon, .right .timeline-icon {
                left: 15px;
                right: auto;
            }
            
            .main-content-agenda {
                margin-left: 0;
                padding: 2rem;
            }
            
            .sidebar {
                width: 100%;
                position: relative;
                height: auto;
            }
        } 

        /* :root {
            --primary: #6C63FF;
            --secondary: #FF6584;
            --accent: #00BFB2;
            --dark: #121212;
            --darker: #0A0A0A;
            --light: #F5F5F7;
            --gray: #2A2A2A;
        } */
        
        /* body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--dark);
            color: var(--light);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        } */
        
        .container {
            display: flex;
            min-height: 100vh;
        }

        /* Main Content */
        .main-content-outcome {
            flex: 1;
            /* margin-left: 280px; */
            padding: 3rem;
            position: relative;
        }
        
        /* Floating Shapes */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }
        
        .shape {
            position: absolute;
            opacity: 0.1;
            border-radius: 50%;
            filter: blur(60px);
            animation: float 15s infinite ease-in-out;
        }
        
        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--primary);
            top: 20%;
            left: 80%;
            animation-delay: 0s;
        }
        
        .shape-2 {
            width: 400px;
            height: 400px;
            background: var(--secondary);
            bottom: 10%;
            left: 10%;
            animation-delay: 3s;
        }
        
        .shape-3 {
            width: 250px;
            height: 250px;
            background: var(--accent);
            top: 60%;
            right: 5%;
            animation-delay: 6s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            50% {
                transform: translate(-20px, -30px) rotate(5deg);
            }
        }
        
        /* Page Header */
        .page-header-outcome {
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .page-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            margin: 0 0 1rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }
        
        .page-header h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 25%;
            width: 50%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), transparent);
        }
        
        .page-header p {
            color: rgba(255,255,255,0.7);
            max-width: 700px;
            line-height: 1.6;
            margin: 0 auto;
        }
        
        /* Outcomes Grid */
        .outcomes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .outcome-card {
            background: rgba(42, 42, 42, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.4s ease;
            border: 1px solid rgba(255,255,255,0.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
        }
        
        .outcome-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            border-color: rgba(108, 99, 255, 0.3);
        }
        
        .outcome-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        
        .outcome-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: white;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
        }
        
        .outcome-card h3 {
            font-family: 'Playfair Display', serif;
            margin: 0 0 1rem;
            color: var(--light);
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .outcome-card h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent);
        }
        
        .outcome-card p {
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
            margin: 0;
        }
        
        /* Animated Number Badge */
        .outcome-number {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--light);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.4);
            }
            50% {
                transform: scale(1.1);
                box-shadow: 0 0 0 10px rgba(108, 99, 255, 0);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .container {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
                height: auto;
                position: relative;
                padding: 1.5rem;
            }
            
            .main-content-outcome {
                margin-left: 0;
                padding: 2rem;
            }
            
            .outcomes-grid {
                grid-template-columns: 1fr;
            }
        }

            :root {
                --primary: #6e48aa;
                --secondary: #9d50bb;
                --accent: #4776e6;
                --text: #f0f0f0;
                --bg: #121212;
                --card-bg: rgba(30, 30, 30, 0.6);
            }

            /* body {
                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                background: var(--bg);
                color: var(--text);
                margin: 0;
                padding: 0;
                min-height: 100vh;
                overflow-x: hidden;
                position: relative;
            } */

            .floating-shapes {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                pointer-events: none;
                z-index: -1;
            }

            .shape {
                position: absolute;
                border-radius: 50%;
                filter: blur(40px);
            }

            .container-audience {
                width: 100%;
                max-width: 1400px;
                padding: 2rem;
                margin: 0 auto;
            }

            h1 {
                text-align: center;
                margin-bottom: 2.5rem;
                font-size: 2.5rem;
                background: linear-gradient(90deg, var(--primary), var(--accent));
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
                position: relative;
            }

            h1::after {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 50%;
                transform: translateX(-50%);
                width: 100px;
                height: 3px;
                background: linear-gradient(90deg, var(--primary), var(--accent));
                border-radius: 3px;
            }

            .attendee-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 1.5rem;
            }

            .attendee-card {
                background: var(--card-bg);
                border-radius: 10px;
                padding: 1.5rem;
                transition: transform 0.3s, box-shadow 0.3s;
                position: relative;
                overflow: hidden;
                border: 1px solid rgba(255, 255, 255, 0.05);
                backdrop-filter: blur(10px);
            }

            .attendee-card::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: linear-gradient(to bottom right,
                        rgba(110, 72, 170, 0.1) 0%,
                        rgba(157, 80, 187, 0.1) 50%,
                        rgba(71, 118, 230, 0.1) 100%);
                transform: rotate(30deg);
                z-index: 0;
            }

            .attendee-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
                border-color: var(--accent);
            }

            .attendee-card:hover::before {
                animation: shine 1.5s;
            }

            @keyframes shine {
                0% {
                    left: -50%;
                    top: -50%;
                }

                100% {
                    left: 150%;
                    top: 150%;
                }
            }

            .attendee-card-content {
                position: relative;
                z-index: 1;
            }

            .attendee-card-content .icon {
                font-size: 2.5rem;
                margin-bottom: 1rem;
                color: var(--accent);
                transition: transform 0.3s ease;
            }

            .attendee-card:hover .icon {
                transform: scale(1.1);
            }

            .attendee-card h2 {
                margin-top: 0;
                color: var(--text);
                font-size: 1.3rem;
                margin-bottom: 1rem;
                display: flex;
                align-items: center;
            }

            .attendee-card p {
                margin: 0;
                color: rgba(255, 255, 255, 0.8);
                line-height: 1.6;
            }

            @media (max-width: 768px) {
                .attendee-grid {
                    grid-template-columns: 1fr;
                }

                h1 {
                    font-size: 2rem;
                }
            }

            :root {
                --bg: #121212;
                --card: #1e1e1e;
                --primary: #6e48aa;
                --secondary: #9d50bb;
                --text: #f0f0f0;
                --accent: #4776e6;
                --highlight: #ff7e5f;
            }

            .form-section {
                font-family: 'Segoe UI', sans-serif;
                background: var(--bg);
                color: var(--text);
                margin: 0;
                padding: 2rem 1rem;
                display: flex;
                flex-direction: column;
                align-items: center;
                background-image:
                    radial-gradient(circle at 25% 25%, rgba(110, 72, 170, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 75% 75%, rgba(71, 118, 230, 0.15) 0%, transparent 50%);
            }

            .header-container {
                text-align: center;
                margin-bottom: 2rem;
                position: relative;
                overflow: hidden;
                padding: 1rem;
                border-radius: 12px;
                background: linear-gradient(135deg, rgba(30, 30, 30, 0.7) 0%, rgba(74, 20, 140, 0.5) 100%);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                max-width: 800px;
                width: 100%;
            }

            h1 {
                font-size: 2.5rem;
                margin: 0;
                background: linear-gradient(to right, var(--primary), var(--accent), var(--highlight));
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
                position: relative;
                z-index: 2;
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
                animation: gradientShift 8s ease infinite;
                background-size: 200% 200%;
            }

            h2 {
                background: linear-gradient(to right, var(--primary), var(--accent));
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
            }

            .subtitle {
                color: rgba(240, 240, 240, 0.8);
                font-size: 1.2rem;
                margin-top: 0.5rem;
                position: relative;
                z-index: 2;
            }

            .date-badge {
                display: inline-block;
                background: linear-gradient(to right, var(--highlight), #ff5e62);
                color: white;
                padding: 0.5rem 1.5rem;
                border-radius: 50px;
                font-weight: bold;
                margin-top: 1rem;
                box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4);
                animation: pulse 2s infinite;
            }

            .form-container {
                background-color: var(--card);
                border-radius: 15px;
                padding: 2.5rem;
                width: 100%;
                max-width: 650px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                margin-bottom: 2rem;
                border: 1px solid rgba(255, 255, 255, 0.05);
                position: relative;
                overflow: hidden;
                z-index: 1;
            }

            .form-container::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: radial-gradient(circle, rgba(110, 72, 170, 0.1) 0%, transparent 70%);
                animation: rotate 20s linear infinite;
                z-index: -1;
            }

            .form-group {
                margin-bottom: 1.8rem;
                position: relative;
            }

            label {
                display: block;
                margin-bottom: 0.7rem;
                font-weight: 600;
                color: var(--text);
                font-size: 1.05rem;
            }

            input {
                width: 100%;
                padding: 1rem;
                border: none;
                border-radius: 8px;
                background: #2a2a2a;
                color: var(--text);
                font-size: 1rem;
                transition: all 0.3s ease;
                border-left: 3px solid transparent;
            }

            input:focus {
                outline: none;
                border-left: 3px solid var(--accent);
                box-shadow: 0 5px 15px rgba(71, 118, 230, 0.2);
                transform: translateY(-2px);
            }

            .payment-box {
                background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
                border: 1px solid rgba(71, 118, 230, 0.3);
                border-radius: 12px;
                padding: 1.8rem;
                margin-top: 1.5rem;
                position: relative;
                overflow: hidden;
            }

            .payment-box::after {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 60px;
                height: 60px;
                background: radial-gradient(circle, rgba(71, 118, 230, 0.3) 0%, transparent 70%);
            }

            .payment-box h3 {
                margin-top: 0;
                font-size: 1.3rem;
                color: var(--accent);
                display: flex;
                align-items: center;
            }

            .payment-box h3::before {
                content: '💰';
                margin-right: 10px;
                font-size: 1.5rem;
            }

            .payment-breakdown {
                margin-top: 1rem;
            }

            .payment-breakdown p {
                margin: 0.5rem 0;
                display: flex;
                justify-content: space-between;
            }

            .payment-breakdown strong {
                color: var(--highlight);
                font-size: 1.1rem;
            }

            .submit-btn {
                background: linear-gradient(to right, var(--primary), var(--accent));
                color: white;
                border: none;
                padding: 1.2rem;
                font-size: 1.1rem;
                border-radius: 8px;
                cursor: pointer;
                width: 100%;
                transition: all 0.3s ease;
                margin-top: 1.5rem;
                font-weight: 600;
                letter-spacing: 0.5px;
                text-transform: uppercase;
                box-shadow: 0 5px 15px rgba(110, 72, 170, 0.4);
                position: relative;
                overflow: hidden;
            }

            .submit-btn:hover {
                background: linear-gradient(to right, var(--accent), var(--primary));
                transform: translateY(-3px);
                box-shadow: 0 8px 20px rgba(110, 72, 170, 0.6);
            }

            .submit-btn::after {
                content: '→';
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                transition: all 0.3s ease;
            }

            .submit-btn:hover::after {
                right: 15px;
            }

            .sponsor-section {
                max-width: 900px;
                background: linear-gradient(135deg, #1b1b1b 0%, #252525 100%);
                padding: 2.5rem;
                border-radius: 15px;
                border-left: 5px solid var(--accent);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                position: relative;
                overflow: hidden;
            }

            .sponsor-section::before {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 100px;
                height: 100px;
                background: radial-gradient(circle, rgba(71, 118, 230, 0.2) 0%, transparent 70%);
            }

            .sponsor-section h2 {
                margin-top: 0;
                margin-bottom: 1.5rem;
                font-size: 1.8rem;
                display: flex;
                align-items: center;
            }

            .sponsor-section h2::before {
                content: '✨';
                margin-right: 15px;
                font-size: 1.5rem;
            }

            .sponsor-section p {
                font-size: 1.1rem;
                line-height: 1.6;
                margin-bottom: 1.5rem;
            }

            .sponsor-section ul {
                list-style: none;
                padding: 0;
                line-height: 1.8;
            }

            .sponsor-section li {
                margin-bottom: 0.8rem;
                position: relative;
                padding-left: 2rem;
                font-size: 1.05rem;
            }

            .sponsor-section li::before {
                content: "✓";
                position: absolute;
                left: 0;
                top: 0;
                color: var(--highlight);
                font-weight: bold;
                font-size: 1.2rem;
            }

            @keyframes gradientShift {
                0% {
                    background-position: 0% 50%;
                }

                50% {
                    background-position: 100% 50%;
                }

                100% {
                    background-position: 0% 50%;
                }
            }

            @keyframes pulse {
                0% {
                    transform: scale(1);
                }

                50% {
                    transform: scale(1.05);
                }

                100% {
                    transform: scale(1);
                }
            }

            @keyframes rotate {
                from {
                    transform: rotate(0deg);
                }

                to {
                    transform: rotate(360deg);
                }
            }

            @media (max-width: 768px) {
                h1 {
                    font-size: 2rem;
                }

                .form-container,
                .sponsor-section {
                    padding: 1.8rem;
                }

                .date-badge {
                    font-size: 0.9rem;
                }
            }

            @media (max-width: 480px) {
                h1 {
                    font-size: 1.8rem;
                }

                .header-container {
                    padding: 1rem 0.5rem;
                }

                .form-container,
                .sponsor-section {
                    padding: 1.5rem;
                }

                .submit-btn {
                    padding: 1rem;
                    font-size: 1rem;
                }
            }

            .payment-info {
                background: linear-gradient(135deg, #1a1a1a, #252525);
                border: 1px solid rgba(255, 255, 255, 0.05);
                border-left: 5px solid var(--accent);
                border-radius: 15px;
                padding: 2rem;
                margin-top: 2rem;
                color: var(--text);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            }

            .payment-info h3 {
                font-size: 1.5rem;
                color: var(--accent);
                margin-bottom: 1rem;
            }

            .payment-info ul {
                list-style: none;
                padding: 0;
                margin: 0;
                line-height: 1.8;
            }

            .payment-info li {
                margin-bottom: 0.5rem;
                font-size: 1.05rem;
            }

            .payment-info li strong {
                color: var(--highlight);
            }

            .scanner-container {
                margin-top: 1.5rem;
                text-align: center;
            }

            .scanner-img {
                max-width: 200px;
                width: 100%;
                border-radius: 10px;
                border: 2px solid var(--accent);
                box-shadow: 0 4px 20px rgba(71, 118, 230, 0.3);
            }

            .scan-note {
                margin-top: 0.5rem;
                font-size: 0.95rem;
                color: rgba(255, 255, 255, 0.8);
            }
           :root {
            --primary-color: #6366f1;
            --secondary-color: #8b5cf6;
            --dark-bg: #0f172a;
            --dark-text: #e2e8f0;
            --dark-text-secondary: #94a3b8;
            --dark-border: #1e293b;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #1a1a1a;
            color: var(--dark-text);
        }
        
        .footer {
            background-color: var(--dark-bg);
            padding: 4rem 2rem;
            border-top: 1px solid var(--dark-border);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        
        .footer-logo {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo-img {
            width: 150px;
            /* height: 150px; */
        }
        
        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .footer-description {
            color: var(--dark-text-secondary);
            line-height: 1.6;
            font-size: 0.9rem;
        }
        
        .footer-heading {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            color: white;
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 40px;
            height: 2px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        }
        
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        
        .footer-links li a {
            color: var(--dark-text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .footer-links li a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            color: var(--dark-text-secondary);
        }
        
        .contact-icon {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-top: 2px;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-link {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #1e293b;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: var(--dark-text-secondary);
            text-decoration: none;
        }
        
        .social-link:hover {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid var(--dark-border);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            text-align: center;
        }
        
        .copyright {
            color: var(--dark-text-secondary);
            font-size: 0.9rem;
        }
        
        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }
        
        .footer-legal a {
            color: var(--dark-text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .footer-legal a:hover {
            color: var(--primary-color);
        }
        
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .footer-heading {
                margin-bottom: 1rem;
            }
            
            .footer-logo, .footer-links, .contact-info {
                margin-bottom: 2rem;
            }
            
            .footer-legal {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        .supported-by-section {
  /* margin-top: 50px; */
  text-align: center;
  color: white;
}

.partner-heading {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partner-container {
  display: flex;
  /* flex-wrap: wrap; */
  /* justify-content: center; */
  gap: 20px;
}

.partner-card {
  text-align: center;
  width: 180px;
}

.partner-card img {
  max-width: 100%;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-card img:hover {
  transform: scale(1.05);
}

.partner-title {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .partner-container {
    gap: 10px;
  }

  .partner-card {
    width: 45%;
    margin-bottom: 10px;
  }

  .partner-heading {
    font-size: 20px;
  }

  .partner-title {
    font-size: 11px;
  }
}