
        /* Video Banner Section */
        .video-banner {
            width: 100%;
            position: relative;
            overflow: hidden;
            background-color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .video-banner video {
            width: 100%;
            height: 90vh;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .video-content {
            text-align: center;
            color: white;
            z-index: 3;
        }

        .video-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .video-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(249, 115, 22, 0.1) 50%, rgba(234, 179, 8, 0.1) 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 28px;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: #333;
            transform: rotate(10deg);
        }

        .feature-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #333;
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Achievements Section */
        .achievements {
            background-color: #ffffff;
            color: #333;
            position: relative;
            overflow: hidden;
        }

        .achievements::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,0,0,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(0,0,0,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(0,0,0,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .achievements-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
        }
        .achievement-container {
          
            max-width: 1200px;
        }


        .achievements-header {
            margin-top: 80px;
            text-align: center;
            margin-bottom: 80px;
        }

        .achievements-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .achievements-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: #333;
        }

        .achievements-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .achievement-card {
            background: #ffffff;
            border: 2px solid #f86b1f;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .achievement-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .achievement-card:hover::before {
            left: 100%;
        }

        .achievement-card:hover {
            transform: translateY(-10px);
            border-color: rgba(239, 68, 68, 0.3);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .achievement-number {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            line-height: 1;
        }

        .achievement-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .achievement-description {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
        }

        .achievements-stats {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
            margin-top: 60px;
            padding-top: 60px;
            border-top: 2px solid #f0f0f0;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #333;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Image Banner Section */
        .image-banner {
            width: 100%;
            position: relative;
            overflow: hidden;
        }
          /* Image Banner Section */
          .image-banner1 {
            width: 100%;
            height: 100%;

            position: relative;
            overflow: hidden;
        }
        
        .image-banner img {
            width: 100%;
            object-fit: cover;
        }

        /* Cinematic Countdown */
        .cinematic-countdown {
            position: relative;
            height: 70vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-family: 'Playfair Display', serif;
            overflow: hidden;
        }

        .countdown-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -2;
            transform: scale(1.1);
            opacity: 0.7;
        }

        .cinematic-countdown::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
            z-index: -1;
        }

        .countdown-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .countdown-pre-title {
            font-size: 2.2rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 15px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.94);
        }

        .countdown-main-title {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            margin: 0;
            text-transform: uppercase;
        }

        .neon-countdown {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .countdown-segment {
            text-align: center;
        }

        .countdown-number {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1;
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            min-width: 100px;
        }

        .countdown-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 10px;
            color: rgba(255, 255, 255, 0.7);
        }

        .countdown-separator {
            font-size: 2.5rem;
            font-weight: 200;
            color: rgba(255, 255, 255, 0.5);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { opacity: 0.5; }
            50% { opacity: 1; }
            100% { opacity: 0.5; }
        }

        /* Premium Slider Section */
        .premium-slider-section {
            position: relative;
            padding: 100px 0;
           
            background-size: cover;
            background-position: center;
            color: white;
            overflow: hidden;
        }

        .slider-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 60px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .slider-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
            margin: 20px auto 0;
            border-radius: 2px;
        }

        .slider-wrapper {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            max-width: 1200px;
            margin: 0 auto;
        }

        .slider-track {
            position: relative;
            width: 100%;
            height: 400px;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
            padding: 10px;
        }

        .slide.active {
            opacity: 1;
            visibility: visible;
        }

        .slide-content {
            display: flex;
            gap: 20px;
            height: 100%;
        }

        .slide-content img {
            flex: 1;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.25);
            transition: transform 0.4s ease;
        }

        .slide-content img:hover {
            transform: scale(1.02);
        }

        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            color: white;
        }

        .nav-arrow:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .prev-arrow {
            left: 20px;
        }

        .next-arrow {
            right: 20px;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
            transform: scale(1.2);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .achievements-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .achievements-stats {
                gap: 40px;
            }
            
            .countdown-number {
                font-size: 3rem;
                padding: 15px;
                min-width: 80px;
            }
            
            .countdown-main-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .video-content h1 {
                font-size: 2.5rem;
            }
            
            .video-content p {
                font-size: 1rem;
            }
            
            .features {
                padding: 60px 0;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .achievements {
            }
            
            .achievements-title {
                font-size: 1.6rem;
            }
            
            .achievements-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .achievements-stats {
                gap: 30px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .cinematic-countdown {
                min-height: 450px;
                padding: 40px 0;
            }
            
            .neon-countdown {
                gap: 10px;
            }
            
            .countdown-number {
                font-size: 2.5rem;
                padding: 10px;
                min-width: 70px;
            }
            
            .countdown-separator {
                font-size: 2rem;
            }
            
            .countdown-main-title {
                font-size: 1.2rem;
            }
            
            .countdown-pre-title {
                font-size: 1rem;
            }
            
            .slider-title {
                font-size: 2.2rem;
            }
            
            .slide-content {
                flex-direction: column;
                gap: 10px;
            }
            
            .slide-content img {
                height: 200px;
            }
            
            .slider-track {
                height: 420px;
            }
            
            .nav-arrow {
                width: 40px;
                height: 40px;
            }
            
            .prev-arrow {
                left: 10px;
            }
            
            .next-arrow {
                right: 10px;
            }
            .image-banner img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;


}
    .video-banner {
        width: 100%;
        top: 100px;
        height: 490px;
        /* min-height: 294px; */
    }
        .video-banner video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
        .image-banner {
    width: 100%;
    /* height: 238px; */
    position: relative;
    overflow: hidden;
        }
    
      .achievements-header {
            margin-top: 20px;
            text-align: center;
            margin-bottom: 80px;
        }

    }

        @media (max-width: 480px) {
            .video-content h1 {
                font-size: 2rem;
            }
            
            .achievements-title {
                font-size: 1.4rem;
            }
            
            .achievement-number {
                font-size: 2.5rem;
            }
            
            .countdown-number {
                font-size: 2rem;
                padding: 8px;
                min-width: 60px;
            }
            
            .slide-content img {
                height: 150px;
            }
            
            .slider-track {
                height: 301px;
            }
        }

          /* Main Contact Section */
        .contact-main {
            padding: 100px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        /* Contact Information */
        .contact-info {
            background: #ffffff;
            border-radius: 24px;
            padding: 50px;
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
        }

        .contact-info h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #1f2937;
            font-family: 'Poppins', sans-serif;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 40px;
            padding: 20px;
            border-radius: 16px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .contact-details h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1f2937;
        }

        .contact-details p {
            color: #6b7280;
            font-size: 1rem;
            line-height: 1.6;
        }

        .contact-details a {
            color: #ef4444;
            text-decoration: none;
        }

        /* Contact Form */
        .contact-form {
            background: #ffffff;
            border-radius: 24px;
            padding: 50px;
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
            position: relative;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
        }

        .contact-form h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #1f2937;
            font-family: 'Poppins', sans-serif;
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #374151;
            font-size: 0.95rem;
        }

        .form-input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 1rem;
            background: #ffffff;
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 12px center;
            background-repeat: no-repeat;
            background-size: 16px;
            padding-right: 40px;
        }

        .form-submit {
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
            color: #ffffff;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 20px;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
        }
 /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

           
        }

        @media (max-width: 768px) {
           

           

           

           

            .contact-info,
            .contact-form {
                padding: 30px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

           
        }

        @media (max-width: 480px) {
            .contact-info,
            .contact-form {
                padding: 20px;
            }

            .contact-item {
                padding: 15px;
            }

            .contact-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .faq-question {
                padding: 20px;
                font-size: 1rem;
            }
        }

        /* Success Message */
        .success-message {
            background: #10b981;
            color: #ffffff;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 30px;
            display: none;
            align-items: center;
            gap: 12px;
        }

        .success-message.show {
            display: flex;
        }