  /* Enhanced Design System */
        :root {
            --primary-red: #ef4444;
            --primary-gold: #ffd700;
            --primary-yellow: #eab308;
            --dark-navy: #0a0e27;
            --dark-gray: #1f2937;
            --medium-gray: #374151;
            --light-gray: #f9fafb;
            --white: #ffffff;
            --text-primary: #1f2937;
            --text-secondary: #4b5563;
            --text-light: #6b7280;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
            --border-radius: 12px;
            --border-radius-lg: 20px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                       --gradient-primary: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);

            --gradient-hero: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(239,68,68,0.2) 50%, rgba(234,179,8,0.2) 100%);
            --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--white);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Enhanced Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        @keyframes sparkle {
            0%, 100% {
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }
            50% {
                transform: scale(1.2) rotate(180deg);
                opacity: 0.8;
            }
        }

        .animate-fade-in {
            animation: fadeIn 0.8s ease-out;
        }

        .animate-slide-in-left {
            animation: slideInLeft 0.8s ease-out;
        }

        .animate-slide-in-right {
            animation: slideInRight 0.8s ease-out;
        }

        .animate-slide-up {
            animation: slideUp 0.8s ease-out;
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }

        .animate-pulse {
            animation: pulse 2s infinite;
        }

        .animate-sparkle {
            animation: sparkle 2s ease-in-out infinite;
        }

        .animation-delay-200 { animation-delay: 200ms; }
        .animation-delay-400 { animation-delay: 400ms; }
        .animation-delay-600 { animation-delay: 600ms; }
        .animation-delay-800 { animation-delay: 800ms; }
        .animation-delay-1000 { animation-delay: 1000ms; }
        .animation-delay-1200 { animation-delay: 1200ms; }
        .animation-delay-1500 { animation-delay: 1500ms; }
        .animation-delay-2000 { animation-delay: 2000ms; }

        /* Enhanced Top Bar */
        .top-bar {
            background: #ef4444;
            color: var(--white);
            padding: 8px 0;
            font-size: 14px;
            position: relative;
            z-index: 1001;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .top-bar-info {
            display: flex;
            gap: 32px;
            align-items: center;
            flex-wrap: wrap;
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }

        .top-bar-item i {
            font-size: 12px;
        }

        .top-bar-social {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .top-bar-social a {
            color: var(--white);
            text-decoration: none;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.15);
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .top-bar-social a:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        /* Enhanced Header */
        .modern-header {
            position: fixed;
            top: 44px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(239, 68, 68, 0.1);
            z-index: 1000;
            transition: var(--transition);
        }

        .modern-header.scrolled {
            top: 0;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-lg);
        }

        .header-content {
            display: flex;
            align-items: center;
            
            justify-content: space-between;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-modern {
            height: 120px;
            width: auto;
            padding-bottom: 7px;
            border-radius: 12px;
            
            transition: var(--transition);
        }

        .logo-modern:hover {
            transform: scale(1.05);
        }

        .logo-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-primary);
            margin: 0;
        }

        .logo-text p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin: 0;
        }

        .nav-modern {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links-modern {
            display: flex;
            list-style: none;
            gap: 4px;
            margin-bottom: 0;
            margin-right: 24px;
        }

        .nav-link-modern {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            padding: 12px 20px;
            border-radius: 8px;
            transition: var(--transition);
            position: relative;
        }

        .nav-link-modern:hover {
            background: rgba(239, 68, 68, 0.08);
            color: var(--primary-red);
            transform: translateY(-1px);
        }

        .nav-link-modern.active {
            background: var(--primary-red);
            color: var(--white);
        }

        .cta-button-modern {
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            font-size: 1rem;
        }

        .cta-button-modern:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-primary);
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: var(--transition);
        }

        /* Enhanced Hero Section */
        .hero-section {
            height: 100vh;
            position: relative;
            overflow: hidden;
            margin-top: 104px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/placeholder.svg?height=1080&width=1920') center/cover;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-hero);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: var(--white);
            max-width: 1000px;
            padding: 0 24px;
        }

        .hero-sparkle {
            font-size: 4rem;
            color: var(--primary-yellow);
            margin-bottom: 24px;
            display: block;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(4rem, 10vw, 8rem);
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--white) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: 600;
            margin-bottom: 24px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .hero-description {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            sm-flex-direction: row;
            gap: 16px;
            justify-content: center;
            align-items: center;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.125rem;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: var(--shadow-lg);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.125rem;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--text-primary);
            transform: translateY(-3px);
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            font-size: 2rem;
            opacity: 0.6;
        }

        .floating-1 {
            top: 15%;
            left: 10%;
            color: var(--primary-yellow);
        }

        .floating-2 {
            top: 25%;
            right: 15%;
            color: var(--primary-red);
        }

        .floating-3 {
            bottom: 30%;
            left: 20%;
            color: var(--primary-gold);
        }

        .floating-4 {
            top: 60%;
            right: 25%;
            color: var(--primary-yellow);
        }

        .floating-5 {
            bottom: 20%;
            right: 10%;
            color: var(--primary-red);
        }

        /* Section Styles */
        .section {
            padding: 20px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-badge {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 24px;
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* About Event Section */
        .about-section {
            background: var(--white);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text {
            space-y: 32px;
        }

        .about-badge {
            background: rgba(239, 68, 68, 0.1);
            color: var(--primary-red);
        }

        .event-details-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin: 32px 0;
        }

        .event-detail-card {
            background: var(--light-gray);
            padding: 24px;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-red);
            transition: var(--transition);
        }

        .event-detail-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .event-detail-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            margin-bottom: 16px;
        }

        .event-detail-title {
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .event-detail-value {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-xl);
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.02);
        }

        .floating-stat {
            position: absolute;
            background: var(--white);
            border-radius: 16px;
            padding: 20px;
            box-shadow: var(--shadow-xl);
            text-align: center;
            min-width: 120px;
        }

        .floating-stat-1 {
            top: -20px;
            right: -20px;
        }

        .floating-stat-2 {
            bottom: -20px;
            left: -20px;
        }

        .floating-stat-number {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 4px;
        }
         .floating-stat-number1 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .floating-stat-1 .floating-stat-number1 {
            color: var(--primary-red);
        }

        .floating-stat-2 .floating-stat-number {
            color: var(--primary-yellow);
        }

        .floating-stat-label {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        /* Timeline Section */
        .timeline-section {
            background: var(--light-gray);
        }

        .timeline-badge {
            background: rgba(239, 68, 68, 0.1);
            color: var(--primary-red);
        }

        .timeline-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .timeline-item {
            display: flex;
            margin-bottom: 60px;
            position: relative;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            flex: 1;
            padding: 0 40px;
        }

        .timeline-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 32px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(239, 68, 68, 0.1);
            transition: var(--transition);
        }

        .timeline-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
        }

        .timeline-card.active {
            border-color: var(--primary-red);
            background: rgba(239, 68, 68, 0.02);
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--white);
            border: 4px solid var(--primary-red);
            border-radius: 50%;
            z-index: 10;
        }

        .timeline-date {
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .timeline-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: var(--white);
        }

        .testimonials-badge {
            background: rgba(234, 179, 8, 0.1);
            color: var(--primary-yellow);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(239, 68, 68, 0.1);
            text-align: center;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 16px;
            object-fit: cover;
            border: 4px solid var(--light-gray);
        }

        .testimonial-stars {
            display: flex;
            justify-content: center;
            gap: 4px;
            margin-bottom: 24px;
        }

        .star {
            color: var(--primary-yellow);
            font-size: 1.25rem;
        }

        .testimonial-quote {
            font-style: italic;
            color: var(--text-secondary);
            margin-bottom: 24px;
            line-height: 1.6;
            font-size: 1.125rem;
        }

        .testimonial-name {
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .testimonial-role {
            color: var(--text-light);
            font-size: 0.875rem;
        }

        /* Gallery Section */
        .gallery-section {
            background: var(--gradient-dark);
            color: var(--white);
        }

        .gallery-badge {
            background: rgba(234, 179, 8, 0.2);
            color: var(--primary-gold);
        }

        .gallery-carousel {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            border-radius: var(--border-radius-lg);
            overflow: hidden;
        }

        .carousel-container {
            position: relative;
            height: 500px;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 40px;
            color: var(--white);
        }

        .carousel-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .carousel-description {
            opacity: 0.9;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .carousel-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-prev {
            left: 20px;
        }

        .carousel-next {
            right: 20px;
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 32px;
        }

        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition);
        }

        .carousel-indicator.active {
            background: var(--primary-gold);
        }

        /* Sponsors Section */
        .sponsors-section {
            background: var(--light-gray);
        }

        .sponsors-badge {
            background: rgba(59, 130, 246, 0.1);
            color: #3b82f6;
        }

        .sponsors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
        }

        .sponsor-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-lg);
            text-align: center;
            transition: var(--transition);
        }

        .sponsor-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
        }

        .sponsor-logo {
            max-width: 100%;
            height: 60px;
            object-fit: contain;
            opacity: 0.7;
            transition: var(--transition);
        }

        .sponsor-card:hover .sponsor-logo {
            opacity: 1;
        }

        /* Contact Section */
        .contact-section {
            background: var(--white);
        }

        .contact-badge {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }

        .contact-info {
            space-y: 32px;
        }

        .contact-card {
            background: var(--light-gray);
            border-radius: var(--border-radius-lg);
            padding: 32px;
            box-shadow: var(--shadow-lg);
            border-left: 4px solid var(--primary-red);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .contact-icon {
            width: 56px;
            height: 56px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
        }

        .contact-details h4 {
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text-primary);
        }

        .contact-details p {
            color: var(--text-secondary);
        }

        .contact-form {
            background: var(--light-gray);
            border-radius: var(--border-radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(239, 68, 68, 0.1);
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .form-input {
            width: 100%;
            padding: 16px;
            border: 1px solid rgba(239, 68, 68, 0.2);
            border-radius: var(--border-radius);
            background: var(--white);
            color: var(--text-primary);
            font-size: 16px;
            transition: var(--transition);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-submit {
            width: 100%;
            justify-content: center;
        }

        /* Footer */
        .footer-section {
            background: #1f2937;
            color: black;
            padding: 50px 0 32px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 30px;
        }

        .footer-brand {
            padding-right: 40px;
        }

        .footer-logo {
            height: 160px;
            margin-bottom: 24px;
            margin-left: 104px;
            filter: brightness(1.2);
        }

        .footer-description {
            color: white;
            line-height: 1.6;
            margin-bottom: 32px;
        }

        .social-links {
            display: flex;
            margin-left: 65px;
            gap: 16px;
        }
footer .footer-links {
    padding: 0;
}

        .social-link {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--primary-red);
            transform: translateY(-2px);
        }

        .footer-section-title {
            font-weight: 700;
            margin-bottom: 24px;
            color:white;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary-gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(123, 123, 123, 0.451);
            padding-top: 32px;
            text-align: center;
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .timeline-line {
                left: 30px;
            }

            .timeline-item {
                flex-direction: row !important;
                padding-left: 80px;
            }

            .timeline-dot {
                left: 30px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }

            .top-bar-content {
               
                gap: 8px;
                text-align: center;
            }
             .top-bar{
                display: none;
             }

            .top-bar-info {
                flex-direction: column;
                gap: 8px;
            }

            .nav-links-modern {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .hero-section {
                margin-top: 101px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .event-details-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .floating-elements {
                display: none;
            }

            .section {
                padding: 20px 0;
            }
            .footer-links ul{
                            padding-left: 0 !important;

            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll Reveal */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Hide top bar on small devices (e.g., screens less than 768px wide) */



/* Venue Section */
.venue-section {
    background: var(--white);
}

.venue-badge {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.venue-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.venue-image:hover {
    transform: scale(1.02);
}

.venue-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.venue-details {
    space-y: 32px;
}

.venue-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.venue-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.venue-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.venue-feature-text h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.venue-feature-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.venue-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.venue-map-link:hover {
    color: var(--dark-navy);
}

@media (max-width: 1024px) {
    .venue-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .venue-image img {
        height: 400px;
    }
}

/* Chief Guest Section */
.chief-guest-section {
    background: var(--white);
}

.chief-guest-badge {
    background: rgba(234, 179, 8, 0.1);
    color: var(--primary-yellow);
}

.chief-guest-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.chief-guest-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.chief-guest-photo {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.chief-guest-image:hover .chief-guest-photo {
    transform: scale(1.02);
}

.chief-guest-badge-floating {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-yellow);
    color: var(--dark-navy);
    padding: 12px 20px;
    border-radius: 24px;
    font-weight: 700;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.chief-guest-badge-floating small {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
}

.chief-guest-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.chief-guest-title {
    font-size: 1.25rem;
    color: var(--primary-red);
    margin-bottom: 32px;
    font-weight: 600;
}

.chief-guest-achievements {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 32px 0;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    border-radius: var(--border-radius);
    background: var(--light-gray);
    transition: var(--transition);
}

.achievement-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.achievement-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    font-size: 1.25rem;
}

.achievement-text h4 {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.achievement-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.chief-guest-bio {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 32px 0;
}

.chief-guest-cta {
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .chief-guest-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .chief-guest-photo {
        height: 500px;
    }
}
.hero-section {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}
/* Mobile Menu Styles */
.mobile-toggle {
    display: none; /* Hidden by default on desktop */
    background: transparent;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-links-modern {
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-links-modern {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: -1000;
        max-height: 0; /* change to 0 for complete collapse */
        overflow: hidden;
        opacity: 0;
        pointer-events: none; /* prevent clicking when hidden */
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    }

    .nav-links-modern.active {
        max-height: 500px;
        width: 100%;
        opacity: 1;
        padding: 20px;
        pointer-events: auto; /* allow clicking when shown */
        z-index: 1000;
    }

    .nav-link-modern {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }

    .test {
        margin-left: 20px;
    }
}

/* Header adjustments for mobile */
@media (max-width: 768px) {
  
    .one{
        display: none;
    }
    .header-content {
        justify-content: space-between;
        padding: 15px 0;
    }
    
    .logo-container {
        flex: 1;
    }
    
.modern-header {
    top: 0;

}
.logo-modern {
    height: 80px;
}
 .section-badge {
        text-align: center;
        margin: 0 auto;
    }
}

/* Countdown Timer Section Styles - White Background Version */
.countdown-section {
    background: white;
    color: #1e293b; /* Dark blue-gray text color */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0; /* Subtle border */
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://example.com/pattern-light.png') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.countdown-section .container {
    position: relative;
    z-index: 1;
}

.countdown-badge {
    background-color: #f1f5f9; /* Light gray */
    color: #3b82f6; /* Blue badge text */
    border: 1px solid #e2e8f0; /* Light border */
}

.countdown-section .section-title {
    color: #1e293b; /* Dark text */
    margin-bottom: 40px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    min-width: 120px;
    text-align: center;
    border: 1px solid #e2e8f0; /* Light border */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Subtle shadow */
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    color: #1e3a8a; /* Dark blue numbers */
    text-shadow: none;
}

.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #64748b; /* Medium gray */
    font-weight: 500;
}

.countdown-cta {
    text-align: center;
    margin-top: 40px;
}

.countdown-cta .btn-primary {
    background: #3b82f6; /* Blue button */
    color: white;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.countdown-cta .btn-primary:hover {
    transform: translateY(-3px);
    background: #2563eb; /* Darker blue on hover */
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.countdown-cta .btn-primary i {
    margin-right: 10px;
}

.countdown-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #64748b; /* Medium gray */
}

.countdown-note strong {
    color: #3b82f6; /* Blue for emphasis */
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .countdown-section {
        padding: 60px 0;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 20px 10px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .countdown-item {
        min-width: 70px;
        padding: 15px 5px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .countdown-cta .btn-primary {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

/* Animation for Countdown */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.countdown-item:last-child {
    animation: pulse 2s infinite;
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Countdown Section */
.countdown-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.countdown-section .section-header {
    margin-bottom: 40px;
}

.countdown-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: #ff5e5e;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-item {
    background: #ffffff;
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 20px 25px;
    min-width: 80px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.countdown-number {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.countdown-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 576px) {
    .countdown-timer {
        gap: 20px;
    }

    .countdown-item {
        padding: 15px 18px;
    }

    .countdown-number {
        font-size: 28px;
    }

    .countdown-label {
        font-size: 12px;
    }
}
/* Base Alert Styles */
.alert {
    position: relative;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    font-family: 'Inter', -apple-system, sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: alertEnter 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    border-left: 5px solid transparent;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: -1;
}

/* Alert Types */
.alert-success {
    color: #0f5132;
    border-left-color: #2ecc71;
    background: linear-gradient(90deg, rgba(46, 204, 113, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.alert-danger {
    color: #842029;
    border-left-color: #e74c3c;
    background: linear-gradient(90deg, rgba(231, 76, 60, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
}

/* Alert Icon */
.alert::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background-size: contain;
    background-repeat: no-repeat;
}

.alert-success::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232ecc71'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
}

.alert-danger::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e74c3c'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E");
}

/* Alert List */
.alert ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

.alert li {
    margin-bottom: 0.25rem;
}

/* Close Button */
.alert-close {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.alert-close:hover {
    opacity: 1;
}

.alert-close svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Animations */
@keyframes alertEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes alertExit {
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.alert-exit {
    animation: alertExit 0.3s cubic-bezier(0.55, 0.06, 0.68, 0.19) forwards;
}

/* Hover Effects */
.alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .alert {
        padding: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .floating-stat{
        display: none;
    }

    .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    display: flex
;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
}

/* Dropdown container */
.dropdown-modern {
    position: relative;
}

.dropdown-toggle-modern {
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Dropdown menu hidden by default */
.dropdown-menu-modern {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
}

.dropdown-item-modern {
    padding: 10px 20px;
    white-space: nowrap;
    color: #333;
    text-decoration: none;
    display: block;
}

.dropdown-item-modern:hover {
    background-color: #f0f0f0;
}

/* Show dropdown on hover */
.dropdown-modern:hover .dropdown-menu-modern {
    display: block;
}
/* Gallery Slider Styles */
.premium-slider-section {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    position: relative;
    color: white;
}

.slide-content {
    display: flex;
    gap: 15px; /* Space between images */
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.slide-content img {
    width: 50%; /* Each image takes half the container width */
    height: 400px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures images cover the area while maintaining aspect ratio */
    border-radius: 8px; /* Optional: adds rounded corners */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Optional: adds subtle shadow */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slide-content {
        flex-direction: column; /* Stack images vertically on mobile */
    }
    
    .slide-content img {
        width: 100%; /* Full width on mobile */
        height: 300px; /* Slightly smaller height on mobile */
    }
}.slide-content {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.slide-content img {
    width: 50%;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .slide-content img {
        width: 100% !important; /* Force full width */
        height: 300px;
    }
    .slide-content img:not(:first-child) {
        display: none; /* Hide all except the first image */
    }
    .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    display: flex
;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.footer-links-container{
    padding-left: 20px;
}
.footer-logo {
    height: 136px;
    margin-bottom: 24px;
    margin-left: 64px;
    filter: brightness(1.2);
}
.social-links {
    display: flex
;
    margin-left: 15px;
    gap: 16px;
}
}


        /* Main Content - Remove fixed positioning */
        .main-content {
            /* Remove margin-top and min-height constraints */
            position: relative;
        }

        /* Founder Section */
        .founder-section {
            padding: 200px 0;
            background: white;
        }

        .founder-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 80px;
            align-items: center;
        }

        .founder-image-container {
            position: relative;
        }

        .founder-image {
            width: 100%;
            height: 500px;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .founder-image:hover {
            transform: scale(1.02);
        }

        .founder-image.placeholder {
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: 600;
        }

        .founder-content {
            padding-left: 20px;
        }

        .founder-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .founder-name {
            font-size: 3rem;
            font-weight: 800;
            color: #333;
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }

        .founder-title {
            font-size: 1.3rem;
            color: #ef4444;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .founder-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .founder-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: #fafafa;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .highlight-item:hover {
            background: #f0f0f0;
            transform: translateX(5px);
        }

        .highlight-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
        }

        .highlight-text {
            font-weight: 600;
            color: #333;
        }

        .founder-quote {
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            position: relative;
        }

        .founder-quote::before {
            content: '"';
            font-size: 4rem;
            position: absolute;
            top: -10px;
            left: 20px;
            opacity: 0.3;
            font-family: serif;
        }

        .quote-text {
            font-size: 1.2rem;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .quote-author {
            font-size: 1rem;
            opacity: 0.9;
            text-align: right;
        }

        .founder-social {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: #f9e9e9;
            color: rgb(0, 0, 0);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
            transform: translateY(-3px);
        }

        /* Additional Content Sections */
        .content-section {
            padding: 100px 0;
            max-width: 1400px;
            margin: 0 auto;
            padding-left: 40px;
            padding-right: 40px;
        }

        .content-section:nth-child(even) {
            background: #f8f9fa;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
            color: white;
            padding: 100px 40px;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            display: block;
            font-family: 'Poppins', sans-serif;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            background: #333;
            color: white;
            padding: 100px 40px;
            text-align: center;
        }

        .cta-content h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            font-family: 'Poppins', sans-serif;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(239, 68, 68, 0.4);
        }



.nav-links-modern.open {
    max-height: 500px;
    width: 100%;
    opacity: 1;
    padding: 20px;
}

