        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-neon: #f3cb00;
            --secondary-neon: #ff00ff;
            --accent-orange: #ff6b00;
            --dark-bg: #0a0e27;
            --card-bg: #1a1f3a;
            --text-light: #ffffff;
            --text-muted: #a0a9c9;
            --gradient-primary: linear-gradient(135deg, #00ff88 0%, #00bfff 100%);
            --gradient-dark: linear-gradient(135deg, #2d1b69 0%, #1a0033 100%);
            --gradient-accent: linear-gradient(135deg, #ff6b00 0%, #ff00ff 100%);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
        }

        /* ============ HEADER & NAVIGATION ============ */

        /* ============ HERO SECTION ============ */
                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Image Slider Container */
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            overflow: hidden;
        }

        .slider-track {
            display: flex;
            width: 100%;
            height: 600px;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slider-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

        .slider-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Overlay for better text readability */
        .slider-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
            z-index: 2;
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 5;
            text-align: center;
            color: white;
            animation: fadeInUp 0.8s ease-out forwards;
            animation-delay: 0.3s;
            opacity: 0;
        }

        .hero-badge {
            display: inline-block;
            padding: 10px 25px;
            background: rgba(255, 215, 0, 0.9);
            color: #1a1a1a;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
            animation: slideDown 0.6s ease-out forwards;
            opacity: 0;
        }

        h1 {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: -1px;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            line-height: 1.6;
            margin-bottom: 35px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
            text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Buttons */
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .btn-primary, .btn-secondary {
            padding: 14px 40px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
            backdrop-filter: blur(10px);
        }

        .btn-primary {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #1a1a1a;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border-color: rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
        }

        /* Navigation Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.35);
            border-color: rgba(255, 255, 255, 0.8);
        }

        .slider-arrow.prev {
            left: 30px;
        }

        .slider-arrow.next {
            right: 30px;
        }

        .slider-arrow svg {
            width: 24px;
            height: 24px;
            stroke: white;
            stroke-width: 2.5;
            fill: none;
        }

        /* Dots Navigation */
        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 12px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .dot.active {
            background: #FFD700;
            width: 32px;
            border-radius: 6px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.7);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .slider-arrow {
                width: 50px;
                height: 50px;
            }

            .slider-arrow.prev {
                left: 15px;
            }

            .slider-arrow.next {
                right: 15px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 300px;
            }

            h1 {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }
        }

        .btn-primaryy {
            background: #f3cb00;
            color: var(--text-light);
            padding: 1rem 2rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.95rem;
            margin-left:450px; 
            margin-top:90px;
            background:none;
            color:#f3cb00;
        }

        .btn-primary:hover {
            background: #f3cb00;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid #f3cb00;
            color: #f3cb00;
            padding: 0.8rem 1.8rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.95rem;
        }

        .btn-secondary:hover {
            background: #f3cb00;
            color: var(--dark-bg);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============ UPCOMING SHOWS SECTION ============ */
        .upcoming-shows {
            padding: 5rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 4rem;
            text-transform: uppercase;
            letter-spacing: -1px;
            color: var(--text-light);
        }

        .shows-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .show-card {
            background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(45, 27, 105, 0.6) 100%);
            border: 1px solid rgba(0, 255, 136, 0.2);
            border-radius: 12px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .show-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
            transition: left 0.6s ease;
            pointer-events: none;
        }

        .show-card:hover {
            border-color: rgba(0, 255, 136, 0.6);
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15);
        }

        .show-card:hover::before {
            left: 100%;
        }

        .show-date {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .show-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent-orange);
            line-height: 1;
        }

        .show-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin: 1rem 0 0.5rem;
            color: var(--text-light);
        }

        .show-info {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .show-card .cta-button {
            width: 100%;
            text-align: center;
        }

        .featured-show {
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
            border: 2px solid var(--primary-neon);
        }

        /* ============ ABOUT SECTION ============ */
        .about {
            padding: 5rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            background: url('https://static1.bigstockphoto.com/4/2/2/large1500/22442153.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.2);
        }

        .about-content h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .about-content p {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-highlight {
            border-left: 4px solid var(--primary-neon);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--text-light);
        }

        /* ============ SOCIAL MEDIA SECTION ============ */
        .social-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
            margin-top: 5rem;
        }

        .social-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .social-card {
            aspect-ratio: 1;
            border-radius: 12px;
            overflow: hidden;
            background: url('https://content.jdmagicbox.com/comp/siliguri/f7/9999px353.x353.211229104021.p3f7/catalogue/punjabi-dhol-programme-siliguri-town-siliguri-wedding-bands-nl4sddma74.jpg?clr=') center/cover no-repeat;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
            font-weight: 600;
            color: var(--text-light);
        }

        .social-card:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(255, 107, 0, 0.4);
        }

        /* ============ ALBUMS SECTION ============ */
        .albums {
            padding: 5rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .albums-carousel {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .album-card_1, .album-card_2, .album-card_3 {
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 1;
            
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            color: var(--text-light);
        }
        .album-card_1{
            background: url('./photo/1.jpeg') center/cover no-repeat;
        }
        .album-card_2{
            background: url('./photo/2.jpeg') center/cover no-repeat;
        }
        .album-card_3{
            background: url('./photo/3.jpeg') center/cover no-repeat;
        }

        .album-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(255, 107, 0, 0.3);
        }

        .album-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .album-artist {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 768px) {
            .hero-buttons {
                
                align-items: center;
            }

            .about {
                grid-template-columns: 1fr;
            }

            .booking-container {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            nav {
                gap: 1rem;
            }

            nav a {
                font-size: 0.75rem;
            }

            .section-title {
                font-size: 2rem;
            }

            header {
                padding: 1rem;
            }

            .header-container {
                
                gap: 1rem;
            }
        }




        /* Services Section */
        .services {
            padding: 80px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 48px;
            color: var(--text-dark);
            margin-bottom: 15px;
            font-weight: 800;
        }

        .section-title p {
            font-size: 18px;
            color: var(--text-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
            padding:30px;
        }

        .service-card {
            background: #1a1f3a;
            border-radius: 18px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 2px solid transparent;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #f3cb00;
            transition: left 0.3s ease;
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            border-color: var(--accent-pink);
        }

        .service-card:hover::before {
            left: 0;
        }

        
        
        .service-card:hover .category-tag {
            color: #f3cb00;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            transition: transform 0.3s;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(10deg);
        }

        .category-tag {
            display: inline-block;
            padding: 6px 16px;
            background: #f0f0f0;
            color: #1a1f3a;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .service-card h3 {
            font-size: 22px;
            color: var(--text-dark);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .service-card p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-details {
            font-size: 13px;
            color: var(--text-light);
            text-align: left;
            background: #dc5c5c;
            padding: 15px;
            border-radius: 10px;
            margin: 15px 0;
            line-height: 1.6;
        }

        .learn-more {
            display: inline-block;
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            transition: all 0.3s;
        }

        .service-card:hover .learn-more {
            color: white;
        }

        /* Why Us Section */
        .why-us {
            padding: 80px 0;
            background: #000539;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-top: 50px;
            padding:30px;
        }

        .why-us-card {
            padding: 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            text-align: center;
        }

        .why-us-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .why-us-icon {
            font-size: 45px;
            margin-bottom: 20px;
        }

        .why-us-card h4 {
            color: #667eea;
            font-size: 18px;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .why-us-card p {
            color: #000539;
            font-size: 15px;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 50px;
            align-items: start;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-size: 14px;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 14px;
            border: 2px solid var(--border-light);
            border-radius: 10px;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 130px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 35px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .contact-item-icon {
            font-size: 28px;
            min-width: 40px;
        }

        .contact-item h4 {
            font-size: 18px;
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 5px;
        }

        .contact-item p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #2c2c3e 0%, #1a1a2e 100%);
            color: white;
            padding: 50px 0 20px;
            text-align: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-section h3 {
            margin-bottom: 20px;
            font-size: 18px;
        }

        .footer-section p,
        .footer-section a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            line-height: 1.8;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--accent-pink);
        }

        .footer-bottom p {
            font-size: 14px;
            opacity: 0.7;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card {
            animation: fadeInUp 0.6s ease-out backwards;
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }

        .hidden {
            display: none !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

            .nav {
                display: none;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .filter-container {
                flex-direction: column;
                align-items: stretch;
            }

            .filter-btn {
                width: 100%;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }

 
 
        
 
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 0;
            background: transparent;
        }
 
        .page-title {
            font-size: 56px;
            color: #ffffff;
            margin-bottom: 3rem;
            text-align: center;
            font-weight: bold;
        }
 
        .section {
            margin-bottom: 3rem;
            display: flex;
            gap: 2rem;
            align-items: stretch;
        }
 
        .section.reverse {
            flex-direction: row-reverse;
        }
 
        .section-image1 {
            flex: 0 0 35%;
            border-radius: 12px;
            background:url('https://www.shaadidukaan.com/vogue/wp-content/uploads/2025/01/12-1.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            color: rgba(255, 255, 255, 0.3);
            min-height: 400px;
        }
        .section-image2 {
            flex: 0 0 35%;
            border-radius: 12px;
            background:url('https://img.freepik.com/premium-vector/vibrant-vector-art-music-festival-celebration-vector-illustration_1325322-22348.jpg?semt=ais_hybrid&w=740&q=80') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            color: rgba(255, 255, 255, 0.3);
            min-height: 400px;
        }
        .section-image3 {
            flex: 0 0 35%;
            border-radius: 12px;
            background:url('https://thumbs.dreamstime.com/b/vibrant-music-instruments-set-band-performance-two-red-electric-guitars-yellow-acoustic-guitar-blue-drums-keyboard-ready-to-409102710.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            color: rgba(255, 255, 255, 0.3);
            min-height: 400px;
        }
 
        .section-box {
            flex: 1;
            background: #1a2b4d;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
 
        .section-title {
            font-size: 26px;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 1.5rem;
        }
 
        .content-list {
            list-style: none;
        }
 
        .content-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
 
        .content-item:last-child {
            margin-bottom: 0;
        }
 
        .item-icon {
            flex: 0 0 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }
 
        .item-text h4 {
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.3rem;
        }
 
        .item-text p {
            font-size: 12px;
            color: #b8c5d6;
            line-height: 1.5;
        }
 
        .divider {
            height: 1px;
            background: #e0e0e0;
            margin: 2.5rem 0;
        }
 
        /* Responsive Design */
        @media (max-width: 768px) {
            .section {
                flex-direction: column;
                gap: 1.5rem;
            }
 
            .section.reverse {
                flex-direction: column;
            }
 
            .section-image {
                flex: 1;
                min-height: 250px;
            }
 
            .section-box {
                flex: 1;
                padding: 1.5rem;
            }
 
            .page-title {
                font-size: 28px;
                margin-bottom: 2rem;
            }
 
            .section-title {
                font-size: 22px;
            }
        }