
        .music-notes {
            position: fixed;
            font-size: 80px;
            opacity: 0.08;
            animation: float 25s infinite ease-in-out;
            z-index: 0;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-150px) rotate(360deg); }
        }

        .note1 { top: 10%; left: 5%; animation-delay: 0s; }
        .note2 { top: 60%; right: 10%; animation-delay: 5s; }
        .note3 { bottom: 15%; left: 15%; animation-delay: 10s; }
        .note4 { top: 30%; right: 20%; animation-delay: 15s; }
        .note5 { bottom: 40%; right: 5%; animation-delay: 20s; }

        .logo-container {
            text-align: center;
            margin-bottom: 40px;
            animation: fadeInDown 1s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .logo {
            font-size: 72px;
            font-weight: bold;
            background: linear-gradient(135deg, #ff6b9d 0%, #c06bf5 50%, #ffd93d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 3px;
            margin-bottom: 15px;
            animation: glow 2s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.3); }
        }

        .tagline {
            font-size: 24px;
            color: #e0d0ff;
            font-style: italic;
            margin-bottom: 30px;
        }

        .launching-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b9d, #c06bf5);
            padding: 12px 35px;
            border-radius: 50px;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 30px;
            animation: pulse 2s ease-in-out infinite;
            box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .countdown-container {
            display: flex;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .countdown-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 20px 30px;
            min-width: 100px;
            text-align: center;
        }

        .countdown-number {
            font-size: 42px;
            font-weight: bold;
            color: #ffd93d;
            display: block;
        }

        .countdown-label {
            font-size: 14px;
            color: #e0d0ff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .description {
            max-width: 800px;
            text-align: center;
            font-size: 18px;
            line-height: 1.8;
            color: #e0d0ff;
            margin-bottom: 50px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 35px;
            text-align: center;
            transition: all 0.4s;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 50px rgba(192, 107, 245, 0.4);
        }

        .feature-icon {
            font-size: 50px;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 22px;
            color: #ffd93d;
            margin-bottom: 15px;
        }

        .feature-card p {
            font-size: 15px;
            color: #e0d0ff;
            line-height: 1.6;
        }

        .organizers-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
            text-align: center;
        }

        .section-title {
            font-size: 42px;
            text-align: center;
            background: linear-gradient(135deg, #ff6b9d, #ffd93d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 50px;
            font-weight: bold;
        }

        /* Added: unified heading class for landingpage.html
           - Ensures consistent heading font-size across the page
           - Use `class="site-heading"` on H1..H6 in HTML to apply
        */
        .site-heading {
            font-size: 32px !important;
            color: inherit;
            margin-bottom: 16px;
            font-weight: 600;
            line-height: 1.2;
        }

        @media (max-width: 768px) {
            .site-heading {
                font-size: 20px !important;
            }
        }

/* Utility classes added to replace inline styles from landingpage.html */
.maxwidth-1200 { max-width: 1200px; margin-left: auto; margin-right: auto; }
.faint-bg { background: rgba(255, 255, 255, 0.03); }
.padded-lg { padding: 80px 20px; }
.padded-xl { padding: 40px; }
.rounded-20 { border-radius: 20px; }
.card-border-gold { border: 2px solid rgba(255, 215, 61, 0.3); }
.lead-text { font-size: 17px; text-align: left; color: #e0d0ff; line-height: 1.9; margin-bottom: 15px; }
.lead-center { text-align: center; font-size: 20px; color: #e0d0ff; margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto; }
.lead-center-sm { text-align: center; font-size: 18px; color: #e0d0ff; margin-bottom: 30px; }
.icon-xl { font-size: 50px; margin-bottom: 15px; }
.card-why { text-align: center; padding: 30px; background: rgba(255, 255, 255, 0.03); border-radius: 15px; height: 100%; }
.card-why-title { color: #ffd93d; font-size: 20px; margin-bottom: 12px; }
.card-text { color: #e0d0ff; font-size: 15px; line-height: 1.7; text-align: left; }
.highlight-block { background: rgba(255, 215, 61, 0.05); padding: 40px; border-radius: 20px; border: 1px solid rgba(255, 215, 61, 0.2); }
.mt-15 { margin-top: 15px; }
.text-muted { color: #e0d0ff; }
.text-gold { color: #ffd93d; }
.text-pink { color: #ff6b9d; }
.link-no-underline { text-decoration: none; }
.svg-sm { width: 24px; height: 24px; margin-right: 10px; }
.svg-sm-22 { width: 22px; height: 22px; margin-right: 10px; vertical-align: middle; }
.clickable { cursor: pointer; }
.btn-map { background: linear-gradient(135deg, #ffd93d, #ff6b9d); border: none; font-weight: bold; width: 100%; }
.btn-gradient { background: linear-gradient(135deg, #ff6b9d, #c06bf5); }
.border-top-subtle { border-top: 2px solid rgba(255, 255, 255, 0.1); }
.box-shadow-sm { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); border-radius: 15px; overflow: hidden; height: 100%; }
.iframe-borderless { border: 0; }
.footer-small { margin-top: 10px; font-size: 14px; }
.icon-accent { color: #ffd93d; }
.btn-fullwidth { width: 100%; }
.text-16 { font-size: 16px; color: #e0d0ff; margin-bottom: 8px; }

/* Specific section class previously inline on .section#classes */
.classes-section { background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(192, 107, 245, 0.05)); padding: 100px 50px; margin: 60px 0; border-radius: 30px; }

/* Accent cards for Vision & Mission (mimic inline gradients) */
.accent-card-1 {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(192, 107, 245, 0.1));
}
.accent-card-2 {
    background: linear-gradient(135deg, rgba(192, 107, 245, 0.1), rgba(255, 107, 157, 0.1));
    border: 2px solid rgba(255, 107, 157, 0.3);
}

/* Small utilities used across landingpage.html */
.text-gold-bold { color: #ffd93d; font-weight: bold; }
.text-pink-strong { color: #ff6b9d; font-weight: 600; }
.mt-40 { margin-top: 40px; }
.contact-section { text-align: center; padding: 50px 50px; }
.text-center { text-align: center; }
.lead-wide { max-width: 900px; margin: 0 auto; }
.icon-18 { font-size: 18px; }
.mt-60 { margin-top: 60px; }
.lead-center-narrow { max-width: 700px; margin-left: auto; margin-right: auto; margin-bottom: 40px; text-align: center; }

/* Additional utilities used by arunkumar.html conversions */
.dark-bg { background: rgba(0, 0, 0, 0.2); }
.bg-faint-white { background: rgba(255, 255, 255, 0.02); }
.btn-green { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; border: none; padding: 12px 35px; border-radius: 50px; font-weight: bold; display: inline-flex; align-items: center; gap: 10px; }
.btn-pink { background: linear-gradient(135deg, #ff6b9d, #c06bf5); color: #fff; border: none; padding: 12px 20px; border-radius: 12px; display: inline-flex; align-items: center; gap: 10px; }
.icon-24 { font-size: 24px; }
.mr-10 { margin-right: 10px; }
.visit-title { color: #ffd93d; font-size: 28px; margin-bottom: 20px; }
.lead-title { font-size: 18px; color: #fff; margin-bottom: 15px; font-weight: bold; }
.mb-15 { margin-bottom: 15px; }
.mb-8 { margin-bottom: 8px; }
.mb-10 { margin-bottom: 10px; }
.text-white { color: #fff; }
.footer-dark { background: rgba(0, 0, 0, 0.3); }
.youtube-icon { color: #FF0000; }
.text-small { font-size: 14px; }

        .organizers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .organizer-card {
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(192, 107, 245, 0.1));
            border-radius: 20px;
            padding: 35px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s;
        }

        .organizer-card:hover {
            transform: scale(1.05);
            border-color: #ffd93d;
            box-shadow: 0 20px 50px rgba(255, 215, 61, 0.3);
        }

        .organizer-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 20px;
            border: 3px solid #ffd93d;
            overflow: hidden;
        }

        .organizer-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .organizer-card h4 {
            font-size: 22px;
            color: #ffd93d;
            margin-bottom: 8px;
        }

        .organizer-card p {
            font-size: 14px;
            color: #e0d0ff;
            line-height: 1.6;
        }

        .notify-form {
            max-width: 600px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .form-group {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .form-control {
            flex: 1;
            padding: 15px 25px;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            font-size: 16px;
            transition: all 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: #ffd93d;
            background: rgba(255, 255, 255, 0.1);
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .notify-btn {
            padding: 15px 40px;
            background: linear-gradient(135deg, #ff6b9d, #c06bf5);
            border: none;
            border-radius: 50px;
            color: #fff;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.4s;
            box-shadow: 0 10px 30px rgba(192, 107, 245, 0.4);
        }

        .notify-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(192, 107, 245, 0.6);
        }

        .social-links {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            font-size: 24px;
            transition: all 0.3s;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .social-icon:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
        }

        .social-icon.whatsapp:hover { background: #25D366; border-color: #25D366; }
        .social-icon.instagram:hover { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
        .social-icon.youtube:hover { background: #FF0000; border-color: #FF0000; }
        .social-icon.facebook:hover { background: #1877f2; border-color: #1877f2; }


        @media (max-width: 768px) {
            .logo {
                font-size: 48px;
            }

            .tagline {
                font-size: 18px;
            }

            .countdown-item {
                padding: 15px 20px;
                min-width: 80px;
            }

            .countdown-number {
                font-size: 32px;
            }

            .section-title {
                font-size: 32px;
            }

            .description {
                font-size: 16px;
            }
        }


        .navbar {
            position: fixed;
            width: 100%;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(26, 11, 46, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            background: linear-gradient(135deg, #ff6b9d 0%, #c06bf5 50%, #ffd93d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            z-index: 1001;
        }

        .logo-name{
            font-size: 12px;
            font-weight: bold;
            background: linear-gradient(135deg, #f70d0d 0%, #d9f56b 50%, #11cc49 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            z-index: 1001;
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: #ffd93d;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff6b9d, #ffd93d);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 4px 0;
            transition: all 0.3s;
            border-radius: 3px;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 120px 20px 80px;
            position: relative;
            overflow: hidden;
        }

        .music-notes {
            position: absolute;
            font-size: 40px;
            opacity: 0.15;
            animation: float 15s infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-50px) rotate(180deg); }
        }

        .note1 { top: 20%; left: 10%; animation-delay: 0s; }
        .note2 { top: 60%; right: 15%; animation-delay: 3s; }
        .note3 { bottom: 20%; left: 20%; animation-delay: 6s; }
        .note4 { top: 40%; right: 25%; animation-delay: 9s; }

        .hero h1 {
            font-size: 72px;
            margin-bottom: 20px;
            margin-top: 20px;
            background: linear-gradient(135deg, #ff6b9d 0%, #c06bf5 50%, #ffd93d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 2s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.3); }
        }

        .hero p {
            font-size: 24px;
            margin-bottom: 40px;
            color: #e0d0ff;
            max-width: 800px;
        }

        .cta-button {
            padding: 18px 45px;
            font-size: 18px;
            background: linear-gradient(135deg, #ff6b9d, #c06bf5);
            border: none;
            border-radius: 50px;
            color: #fff;
            cursor: pointer;
            transition: all 0.4s;
            box-shadow: 0 10px 30px rgba(192, 107, 245, 0.4);
            font-weight: bold;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(192, 107, 245, 0.6);
        }

        .section {
            /* padding: 100px 50px; */
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 48px;
            text-align: center;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #ff6b9d, #ffd93d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .event-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s;
            cursor: pointer;
        }

        .event-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 50px rgba(192, 107, 245, 0.3);
        }

        .event-icon {
            font-size: 60px;
            margin-bottom: 20px;
        }

        .event-card h3 {
            font-size: 28px;
            margin-bottom: 15px;
            color: #ffd93d;
        }

        .event-card p {
            font-size: 16px;
            line-height: 1.8;
            color: #e0d0ff;
        }

        .organizers {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-top: 60px;
        }

        .organizer-card {
            text-align: center;
            padding: 40px;
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(192, 107, 245, 0.1));
            border-radius: 20px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s;
        }

        .organizer-card:hover {
            transform: scale(1.05);
            border-color: #ff6b9d;
        }

        .organizer-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6b9d, #c06bf5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            margin: 0 auto 25px;
            box-shadow: 0 10px 30px rgba(192, 107, 245, 0.5);
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.2);
        }

        .organizer-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-slider {
            position: relative;
            width: 100%;
            max-width: 900px;
            height: 500px;
            margin: 40px auto 40px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .slider-container {
            display: flex;
            transition: transform 0.6s ease-in-out;
            height: 100%;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(26, 11, 46, 0.8), rgba(45, 27, 78, 0.8));
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.9);
        }

        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
        }

        .slide-overlay h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: #ffd93d;
        }

        .slide-overlay p {
            font-size: 16px;
            color: #e0d0ff;
        }

        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #ffd93d;
            width: 30px;
            border-radius: 6px;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
        }

        .slider-nav:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .slider-nav.prev {
            left: 20px;
        }

        .slider-nav.next {
            right: 20px;
        }

        .organizer-card h3 {
            font-size: 26px;
            margin-bottom: 10px;
            color: #ffd93d;
        }

        .organizer-card p {
            color: #e0d0ff;
            font-size: 16px;
        }

        .features {
            background: rgba(255, 255, 255, 0.03);
            margin: 60px 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .feature-item {
            text-align: center;
            padding: 30px;
        }

        .feature-item .icon {
            font-size: 50px;
            margin-bottom: 20px;
        }

        .feature-item h4 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #ff6b9d;
        }

        .feature-item p {
            color: #e0d0ff;
            line-height: 1.6;
        }

        .classes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .class-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 35px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s;
            text-align: center;
        }

        .class-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 20px 50px rgba(255, 215, 61, 0.3);
            border-color: #ffd93d;
        }

        .class-icon {
            font-size: 50px;
            margin-bottom: 20px;
        }

        .class-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #ffd93d;
        }

        .class-card p {
            font-size: 15px;
            line-height: 1.7;
            color: #e0d0ff;
        }

        .whatsapp-button {
            padding: 18px 45px;
            font-size: 18px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border: none;
            border-radius: 50px;
            color: #fff;
            cursor: pointer;
            transition: all 0.4s;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .whatsapp-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
            background: linear-gradient(135deg, #128C7E, #075E54);
        }

        footer {
            background: rgba(0, 0, 0, 0.3);
            padding: 40px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        footer p {
            color: #e0d0ff;
            font-size: 16px;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 48px;
            }

            .hero p {
                font-size: 18px;
            }

            .navbar {
                padding: 20px 20px;
            }

            .logo {
                font-size: 22px;
            }

            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                max-width: 300px;
                background: rgba(26, 11, 46, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                transition: right 0.4s ease-in-out;
                border-left: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 20px;
            }

            .section {
                padding: 60px 20px;
            }

            .section-title {
                font-size: 36px;
            }

            .hero-slider {
                height: 300px;
                max-width: 100%;
            }

            .hero {
                padding: 100px 20px 60px;
            }

            .events-grid, .classes-grid {
                grid-template-columns: 1fr;
            }

            .slider-nav {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .slider-nav.prev {
                left: 10px;
            }

            .slider-nav.next {
                right: 10px;
            }
        }
    

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 50%, #1a0b2e 100%);
            color: #fff;
            overflow-x: hidden;
        }

        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 11, 46, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
            padding: 12px 0;
        }

         @media (max-width: 576px) {
              .hero-section {
    margin-top: 150px !important; /* margin on top */
  }

 
        }

        @media (max-width: 768px) {
            .header {
                padding: 15px 0;
            }

   .testimonial-card {
                padding: 20px;
            }

            .testimonial-avatar {
                font-size: 40px;
            }

            .whatsapp-style {
                padding: 12px;
            }
 }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s;
            height: 100%;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 50px rgba(192, 107, 245, 0.3);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .testimonial-avatar {
            font-size: 50px;
            color: #ffd93d;
        }

        .testimonial-header h4 {
            font-size: 18px;
            color: #fff;
            margin: 0;
            font-weight: bold;
        }

        .testimonial-role {
            font-size: 13px;
            color: #e0d0ff;
            margin: 0;
            font-style: italic;
        }

        .whatsapp-style {
            background: rgba(37, 211, 102, 0.1);
            border-left: 4px solid #25D366;
            padding: 15px;
            border-radius: 10px;
            position: relative;
            margin-bottom: 15px;
        }

        .testimonial-icon {
            position: absolute;
            top: -10px;
            right: 10px;
            font-size: 24px;
            color: #25D366;
            opacity: 0.5;
        }

        .whatsapp-style p {
            font-size: 15px;
            color: #e0d0ff;
            line-height: 1.6;
            margin: 0;
        }

        .testimonial-rating {
            display: flex;
            gap: 5px;
            color: #ffd93d;
            font-size: 18px;
        }

        .manasaara-brand {
            font-size: 18px;
            font-weight: bold;
            background: linear-gradient(135deg, #ff6b9d 0%, #c06bf5 50%, #ffd93d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            letter-spacing: 1px;
        }

        .manasaara-tagline {
            font-size: 11px;
            color: #e0d0ff;
            margin-top: 2px;
        }

        .teacher-header-profile {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .teacher-profile-pic {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #ffd93d;
        }

        .teacher-header-info h1 {
            font-size: 24px;
            font-weight: bold;
            color: #ffd93d;
            margin: 0;
            letter-spacing: 0.5px;
        }

        .teacher-header-tagline {
            font-size: 12px;
            color: #e0d0ff;
            font-style: italic;
            margin: 0;
        }

        .header-social {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s;
            border: 2px solid rgba(255, 255, 255, 0.2);
            margin: 0 3px;
        }

        .header-social:hover {
            transform: translateY(-3px);
        }

        .header-social.instagram:hover {
            background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
            border-color: #dd2a7b;
        }

        .header-social.youtube:hover {
            background: #FF0000;
            border-color: #FF0000;
        }

        .header-social.whatsapp:hover {
            background: #25D366;
            border-color: #25D366;
        }

        .header-social.facebook:hover {
            background: #1877f2;
            border-color: #1877f2;
        }

          .about-us {
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 130px 20px 60px;
            position: relative;
        }

        .hero-section {
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 130px 20px 60px;
            position: relative;
            margin-top: 20px;
        }

        .music-notes {
            position: absolute;
            font-size: 50px;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-100px) rotate(360deg); }
        }

        .note1 { top: 10%; left: 10%; animation-delay: 0s; }
        .note2 { top: 20%; right: 15%; animation-delay: 5s; }
        .note3 { bottom: 30%; left: 20%; animation-delay: 10s; }
        .note4 { bottom: 20%; right: 25%; animation-delay: 15s; }

        .profile-image {
            width: 350px;
            height: 350px;
            border-radius: 50%;
            object-fit: cover;
            border-image: linear-gradient(135deg, #ff6b9d, #c06bf5, #ffd93d) 1;
            box-shadow: 0 30px 80px rgba(192, 107, 245, 0.6);
            animation: profileGlow 3s ease-in-out infinite;
        }

        @keyframes profileGlow {
            0%, 100% { box-shadow: 0 30px 80px rgba(192, 107, 245, 0.6); }
            50% { box-shadow: 0 40px 100px rgba(255, 107, 157, 0.8); }
        }

        .profile-title {
            font-size: 52px;
            background: linear-gradient(135deg, #ff6b9d 0%, #c06bf5 50%, #ffd93d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .profile-subtitle {
            font-size: 22px;
            color: #ffd93d;
            margin-bottom: 8px;
            font-style: italic;
        }

        .profile-tagline {
            font-size: 16px;
            color: #e0d0ff;
            margin-bottom: 25px;
        }

        .profile-bio {
            font-size: 16px;
            color: #e0d0ff;
            line-height: 1.8;
            margin-bottom: 30px;
            text-align: left;
        }

        .social-links {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-bottom: 25px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            font-size: 20px;
            transition: all 0.3s;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .social-icon:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
        }

        .social-icon.instagram:hover { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
        .social-icon.youtube:hover { background: #FF0000; }
        .social-icon.whatsapp:hover { background: #25D366; }
        .social-icon.facebook:hover { background: #1877f2; }

        .section-title {
            font-size: 42px;
            text-align: center;
            background: linear-gradient(135deg, #ff6b9d, #ffd93d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .stats-section {
            background: rgba(0, 0, 0, 0.2);
            padding: 50px 20px;
        }

        .stat-number {
            font-size: 42px;
            font-weight: bold;
            color: #ffd93d;
        }

        .stat-label {
            font-size: 16px;
            color: #e0d0ff;
        }

        .expertise-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s;
            height: 100%;
        }

        .expertise-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 50px rgba(192, 107, 245, 0.4);
        }

        .expertise-card .icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .expertise-card h3 {
            font-size: 20px;
            color: #ffd93d;
            margin-bottom: 12px;
        }

        .expertise-card p {
            font-size: 15px;
            color: #e0d0ff;
            line-height: 1.6;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            height: 320px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .gallery-item img {
           
            object-fit: cover;
            transition: all 0.5s;
            display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
        }

        .gallery-item:hover img {
            transform: scale(1.15);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 20px;
            transform: translateY(100%);
            transition: all 0.4s;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay p {
            color: #ffd93d;
            font-size: 15px;
            margin: 0;
        }

        .achievement-item {
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(192, 107, 245, 0.1));
            padding: 25px;
            border-radius: 15px;
            border-left: 5px solid #ffd93d;
            transition: all 0.3s;
            margin-bottom: 20px;
        }

        .achievement-item:hover {
            transform: translateX(10px);
            border-left-color: #ff6b9d;
        }

        .achievement-item h4 {
            font-size: 18px;
            color: #ffd93d;
            margin-bottom: 8px;
        }

        .achievement-item p {
            color: #e0d0ff;
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
        }

        .cta-section {
            padding: 80px 20px;
            text-align: center;
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(192, 107, 245, 0.1));
        }

        .cta-section h2 {
            font-size: 38px;
            color: #ffd93d;
            margin-bottom: 15px;
        }

        .cta-section p {
            font-size: 18px;
            color: #e0d0ff;
            margin-bottom: 30px;
        }

        .whatsapp-button {
            padding: 16px 40px;
            font-size: 17px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border: none;
            border-radius: 50px;
            color: #fff;
            cursor: pointer;
            transition: all 0.4s;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            text-decoration: none;
        }

        .whatsapp-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
            color: #fff;
        }

        @media (max-width: 768px) {
            .teacher-header-profile {
                flex-direction: column;
                text-align: center;
            }

            .teacher-profile-pic {
                width: 50px;
                height: 50px;
            }

            .teacher-header-info h1 {
                font-size: 18px;
            }

            .teacher-header-tagline {
                font-size: 11px;
            }

            .profile-image {
                width: 250px;
                height: 250px;
            }

            .profile-title {
                font-size: 36px;
            }

            .profile-subtitle {
                font-size: 18px;
            }

            .section-title {
                font-size: 32px;
            }

            .gallery-item {
                height: 250px;
            }
        }