    /* Shutter Animation */
    #shutter-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 9999;
        display: flex;
        pointer-events: none;
        animation: fadeOutWrapper 0s 2.5s forwards;
    }

    .shutter-panel {
        width: 50%;
        height: 100%;
        background: #6e9ada;
    }

    .shutter-panel.left {
        animation: slideOutLeft 1.9s 0.19s cubic-bezier(0.1, 0.1, 0.1, 0.1) forwards;
    }

    .shutter-panel.right {
        animation: slideOutRight 1.5s 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
    }


    @keyframes fadeOutWrapper {
        to {
            visibility: hidden;
        }
    }

    @keyframes slideOutLeft {
        from { transform: translateX(0); }
        to { transform: translateX(-100%); }
    }

    @keyframes slideOutRight {
        from { transform: translateX(0); }
        to { transform: translateX(100%); }
    }

    /* General Styles */    
    body {
    font-family: 'Times New Roman', serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f9;
    color: #333;
    }
    /* Header Styling */
    #header {
    background: linear-gradient(120deg, rgba(13,71,161,0.6), rgba(255,255,255,0.4)),
                url('https://images.pexels.com/photos/5530484/pexels-photo-5530484.jpeg') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    min-height: 150vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    /* extra styling */
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 0 25px rgba(13,71,161,0.6), 0 0 50px rgba(255,255,255,0.5);

    animation: gradientMove 8s ease infinite alternate;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}


    #header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
        animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .header-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 10;
    }

    #header .logo img {
    width: 100px;
    height: 100px;
    padding: 10px;
    border-radius: 50%;
    background: #6e99da00;
    padding: 5px;
    }

    #header .logo span {
    font-size: 1.5rem;
    font-weight: bold;
    }

    #header .nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    }   

    #header .nav-links li a {
    color: #fefeff;
    text-decoration: none;
    font-size: 19px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0s ease-in-out;
    }

    #header .nav-links li a:hover {
        color: #42a5f5;
        transition: background 1s, color 1s;
    }

    #header .cta-btn, .hero-btn {
    background-color: #eeeaea;
    color: #363333;
    text-transform: uppercase;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 10px;
    border-radius: 25px;
    transition: all 0.5s ease-in-out;
    }

    #header .cta-btn:hover, .hero-btn:hover {
    background-color: #0660ba;
    transform: scale(1.1s);
    color: white;
    }

    .hero-content { z-index: 5; padding: 0 20px; }
    .hero-content h1 {
        font-size: 5.55rem;
        margin-bottom: 20px;
        font-weight: 700;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    }
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btn { padding: 15px 30px; font-size: 1.2rem; border-radius: 50px; }





    #header .cta-btn, .hero-btn {
    background-color: #eeeaea;
    color: #363333;
    text-transform: uppercase;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 10px;
    border-radius: 25px;
    transition: all 0.5s ease-in-out;
    }

    #header .cta-btn:hover, .hero-btn:hover {
    background-color: #0660ba;
    transform: scale(1.1s);
    color: white;
    }




/* ==== HEADER STYLING ==== */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  background: #ffffff00;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Logo left */
.logo img {
  height: 50px;
}

/* Center nav */
.navigation {
  flex: 1;
  text-align: center;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #e6eef8;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #7ec7ff;
}

/* Right button */
.nav-right {
  display: flex;
  align-items: center;
}

.register-link {
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  color: #fff !important;
  padding: 9px 16px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(59,130,246,0.25);
}

.register-link:hover {
  background: linear-gradient(90deg, #0891b2, #2563eb);
  transform: scale(1.05);
}

/* Mobile hamburger hidden by default */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
}

/* Mobile view */
@media (max-width: 900px) {
  .header-container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .navigation {
    width: 100%;
    order: 3;
    text-align: center;
    margin-top: 10px;
  }

  .nav-links {
    flex-direction: column;
    background: #081428;
    padding: 10px 0;
    border-radius: 8px;
  }

  .hamburger-menu {
    display: block;
  }
}



    /* New Section Styles */
    main {
        width: 100%;
    }

    .section-heading {
        text-align: center;
        padding: 0 20px;
        margin-bottom: 50px;
    }

    .section-heading h2 {
        font-size: 2.8rem;
        color: #0d47a1;
        margin-bottom: 10px;
    }

    .section-heading p {
        font-size: 1.1rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }

    /* About Section - Re-styling for consistency */
    .about-section {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px;
        padding: 100px 5%;
        background-color: #ffffff;
        flex-wrap: wrap;
    }
    .about-image { flex-basis: 45%; min-width: 320px; }
    .about-image img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
    .about-text { flex-basis: 45%; min-width: 320px; }
    .about-text h2 { font-size: 5.8rem; color: #0d47a1; margin-bottom: 20px; }
    .about-text p { font-size: 1.4rem; line-height: 1.7; color: #555; }

    /* Courses Section */
    .courses-section {
        padding: 100px 8%;
        background-color: #f4f7f9;
    }

    .courses-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        max-width: 1600px;
        margin: 0 auto;
    }

    .course-card {
        background: #fff;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s, box-shadow 0.3s;
        border-left: 5px solid #1976d2;
    }

    .course-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .course-card h3 {
        font-size: 2.0rem;
        color: #0d47a1;
        margin: 0 0 15px;
    }

    .course-card p {
        font-size: 1.0rem;
        line-height: 1.6;
        color: #666;
        margin: 0;
    }





    .know-more-wrapper {
    text-align: center;
    margin-top: 20px;
    }

    .know-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #1e90ff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    }

    .know-more-btn:hover {
    background: #0b6fc2;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    }





    /* Registration showcase styles (scoped) */
    .reg-showcase { padding: 28px 16px; font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; background: #f8fafc; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-title { font-size: 20px; margin-bottom: 18px; color:#0f172a; }

    /* Row and cards */
    .reg-row { display: flex; gap: 14px; justify-content: space-between; align-items: stretch; flex-wrap: nowrap; }
    .reg-card { background: #fff; border-radius: 10px; box-shadow: 0 6px 18px rgba(15,23,42,0.06); overflow: hidden; width: 32%; display:flex; flex-direction: column; align-items: center; text-align:center; padding: 14px; transition: transform .18s ease, box-shadow .18s ease; }
    .reg-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(15,23,42,0.08); }

    .reg-img { width: 84px; height: 84px; border-radius: 8px; overflow: hidden; margin-bottom: 10px; }
    .reg-img img { width:100%; height:100%; object-fit:cover; display:block; }

    /* body */
    .reg-name { font-size: 16px; margin: 4px 0; color:#0b1220; }
    .reg-short { font-size: 13px; color:#6b7280; margin-bottom: 12px; }

    /* button */
    .btn-view { background: #0b6efd; border: none; color: #fff; padding: 8px 12px; border-radius: 8px; cursor: pointer; font-size: 13px; transition: opacity .15s ease; }
    .btn-view:hover { opacity: .9; }

    /* Modal */
    .modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; background: rgba(3,7,18,0.45); z-index: 9999; padding: 20px; }
    .modal-content { width: 920px; max-width: 96%; background: #fff; border-radius: 12px; display: flex; gap: 18px; padding: 18px; position: relative; box-shadow: 0 20px 60px rgba(2,6,23,0.4); }
    .modal-left { flex: 0 0 260px; display:flex; align-items:center; justify-content:center; }
    .modal-left img { width:220px; height:220px; object-fit:cover; border-radius:8px; border: 1px solid #e6e9ef; }
    .modal-right { flex: 1; padding-right: 8px; }
    .modal-close { position:absolute; top: 10px; right: 12px; background:transparent; border:none; font-size:28px; cursor:pointer; color:#374151; }

    /* details */
    .details-list { margin-top: 10px; list-style: none; padding: 0; color:#374151; }
    .details-list li { padding: 6px 0; border-bottom: 1px dashed #eef2f7; font-size:14px; }
    .muted { color:#6b7280; margin:0; }
    .small-note { margin-top: 12px; color:#475569; font-size:13px; }

    /* Responsive: stack on small screens */
    @media (max-width: 880px) {
    .reg-row { flex-direction: column; gap: 12px; }
    .reg-card { width: 100%; flex-direction: row; text-align:left; align-items:center; padding: 12px; }
    .reg-img { width:64px; height:64px; margin-right:12px; }
    .modal-content { flex-direction: column; }
    .modal-left img { width: 100%; height: auto; max-height: 320px; }
    }



    /* ---------- Why Choose Us Section ---------- */
    #why-choose-us {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0px;
    text-align: center;
    }

    #why-choose-us .why-top-image {
    margin-bottom: 10px;
    }

    #why-choose-us .why-top-image img {
    max-width: 160px; /* adjust size as needed */
    height: auto;
    display: block;
    margin: 0 auto;
    }

    #why-choose-us h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text, #305591);
    }

    /* Grid layout */
    .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    text-align: left; /* cards text align left */
    }

    /* Card style */
    .why-card {
    background: #1a1f2e;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    }

    .why-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: var(--accent-2, #60a5fa);
    }

    .why-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--muted, #cbd5e1);
    line-height: 1.5;
    }

    .why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.5);
    border-color: var(--accent, #2dd4bf);
    }

    /* Bottom big image */
    .why-bottom-image {
    margin-top: 40px;
    text-align: center;
    }

    .why-bottom-image img {
    max-width: 1600px; /* adjust size as per your need */
    width: 1200px;
    height: auto;
    align-items: center;
    display: inline-block;
    }











    /* Enhanced Notice Section with Full Style & Animation + Heading Support */
    .simple-notice {
        padding: 32px 0;
        background: linear-gradient(90deg, #e3f0ff 0%, #f7faff 100%);
        animation: fadeInNotice 1.2s ease;
    }

    /* Notice Section Heading */
    .notice-section-heading {
        text-align: center;
        font-size: 2.5rem;
        color: #0d47a1;
        font-weight: 700;
        margin-bottom: 28px;
        letter-spacing: 1px;
        text-shadow: 0 2px 8px rgba(13,71,161,0.07);
        font-family: 'Times New Roman', serif;
    }
    @media (max-width: 900px) {
        .notice-section-heading {
            font-size: 1.5rem;
            margin-bottom: 16px;
        }
    }

    @keyframes fadeInNotice {
        from { opacity: 0; transform: translateY(-40px);}
        to { opacity: 1; transform: translateY(0);}
    }

    /* Notice Heading (works for both notice and wish) */
    .notice-heading,
    .wish-heading {
        text-align: center;
        font-size: 2.1rem;
        color: #0d47a1;
        font-weight: 700;
        margin-bottom: 18px;
        letter-spacing: 1px;
        text-shadow: 0 2px 8px rgba(13,71,161,0.07);
        font-family: 'Times New Roman', serif;
    }
    @media (max-width: 900px) {
        .notice-heading,
        .wish-heading {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }
    }

    .notice-inner {
        max-width: 1600px;
        margin: 0 auto;
        display: flex;
        gap: 36px;
        align-items: stretch;
        background: linear-gradient(120deg, #e3f0ff 60%, #f7faff 100%);
        padding: 24px;
        border-radius: 18px;
        box-shadow: 0 12px 32px rgba(2,6,23,0.13);
        animation: slideInNotice 1.3s cubic-bezier(.7,.2,.3,1);
    }
    @keyframes slideInNotice {
        from { opacity: 0; transform: scale(.95);}
        to { opacity: 1; transform: scale(1);}
    }
    .notice-part {
        flex: 1;
        display: flex;
        gap: 32px;
        align-items: center;
        padding: 24px;
        border-radius: 14px;
        position: relative;
        box-shadow: 0 4px 18px rgba(13,71,161,0.07);
        transition: box-shadow 0.3s;
    }
    .notice-part:hover {
        box-shadow: 0 8px 32px rgba(13,71,161,0.13);
        transform: translateY(-4px) scale(1.02);
        transition: box-shadow 0.3s, transform 0.3s;
    }

    /* Alert Left */
    .alert-part {
        background: linear-gradient(120deg,#b8bec9 60%,#6e9ada 100%);
        border: 1px solid #6e9ada33;
        box-shadow: 0 2px 12px #6e9ada22;
        animation: alertPulse 2.5s infinite alternate;
    }
    @keyframes alertPulse {
        0% { box-shadow: 0 2px 12px #6e9ada22;}
        100% { box-shadow: 0 8px 32px #6e9ada44;}
    }
    .notice-img {
        width: 180px;
        height: 180px;
        object-fit: cover;
        border-radius: 12px;
        flex-shrink: 0;
        border: 2px solid #fff;
        box-shadow: 0 2px 12px #6e9ada22;
        animation: imgPop 1.2s cubic-bezier(.7,.2,.3,1);
    }
    @keyframes imgPop {
        from { opacity: 0; transform: scale(.8);}
        to { opacity: 1; transform: scale(1);}
    }
    .notice-content h4 {
        margin: 0 0 10px 0;
        color: #ffd166;
        font-size: 2.2rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-shadow: 0 2px 8px #3332;
        animation: textFadeIn 1.2s;
    }
    .notice-content p {
        margin: 0;
        color: #2d3a4d;
        font-size: 1.25rem;
        line-height: 1.5;
        font-weight: 500;
        animation: textFadeIn 1.5s;
    }
    @keyframes textFadeIn {
        from { opacity: 0; transform: translateY(20px);}
        to { opacity: 1; transform: translateY(0);}
    }

    /* Dismiss Button */
    .notice-close {
        position: absolute;
        top: 12px;
        right: 12px;
        background: #fff;
        border: none;
        color: #6e9ada;
        font-size: 1.2rem;
        cursor: pointer;
        padding: 8px 14px;
        border-radius: 50px;
        box-shadow: 0 2px 8px #6e9ada22;
        transition: background 0.2s, color 0.2s;
        z-index: 2;
    }
    .notice-close:hover {
        background: #6e9ada;
        color: #fff;
    }

    /* Wish Right */
    .wish-part {
        background: linear-gradient(120deg,#6a6262 60%,#4c749c 100%);
        border: 1px solid #1976d233;
        justify-content: center;
        box-shadow: 0 2px 12px #1976d222;
        animation: wishPulse 2.5s infinite alternate;
    }
    @keyframes wishPulse {
        0% { box-shadow: 0 2px 12px #1976d222;}
        100% { box-shadow: 0 8px 32px #1976d244;}
    }
    .wish-content h4 {
        margin: 0 0 10px 0;
        color: #ffffff;
        font-size: 2.3rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-shadow: 0 2px 8px #3332;
        animation: textFadeIn 1.2s;
    }
    .wish-content p {
        margin: 0;
        color: #dff5e6;
        font-size: 1.1rem;
        line-height: 1.5;
        font-weight: 500;
        animation: textFadeIn 1.5s;
    }

    /* Responsive: stack on small screens */
    @media (max-width: 900px) {
        .notice-inner { flex-direction: column; gap: 24px; padding: 12px;}
        .notice-part { flex-direction: column; gap: 18px; padding: 16px;}
        .notice-img { width: 100px; height: 100px;}
        .notice-content h4, .wish-content h4 { font-size: 1.3rem;}
        .notice-content p, .wish-content p { font-size: 1rem;}
        .notice-heading,
        .wish-heading,
        .notice-section-heading {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }
    }
    @media (max-width: 600px) {
        .simple-notice { padding: 12px 0;}
        .notice-inner { padding: 4px;}
        .notice-img { width: 60px; height: 60px;}
        .notice-part { padding: 8px;}
    }






    /* Teachers Section Wrapper */
    .teacher_gallery_section_wrapper {
        padding: 100px 5%;
        background: #fff;
    }

    .teacher_gallery_section {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        max-width: 1400px;
        margin: 0 auto;
    }
    .teacher_card {
        background: #f4f7f9;
        border-radius: 10px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
        text-align: center;
        width: 320px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .teacher_card:hover { transform: translateY(-10px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); }
    .teacher_image img { width: 100%; height: 320px; object-fit: cover; object-position: top; }
    .teacher_info { padding: 25px; }
    .teacher_info h3 { font-size: 1.5rem; color: #0d47a1; margin-bottom: 10px; }
    .teacher_info p { font-size: 1rem; color: #555; margin: 5px 0; }

   
   
  /* ===== Full Width Social Media Section ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
  --primary: #0b5fff;
  --accent: #06b6d4;
  --muted: #6b7280;
  --light-bg: #f3f8ff;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 14px;
}

/* MAIN SECTION (Full width) */
.social-media-section {
  width: 100%;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 50%, #eef5ff 100%);
  color: #0f172a;
  padding: 80px 0;
  box-sizing: border-box;
  overflow: hidden;
}

/* MAIN HEADING */
.section-heading {
  text-align: center;
  margin-bottom: 60px;
}
.section-heading h1 {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-heading p {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 auto;
  max-width: 900px;
}

/* COMMON CONTAINER FOR EACH BLOCK */
.google-reviews,
.instagram-section,
.gallery-section {
  width: 100%;
  margin: 0;
  padding: 40px 4%;
  box-sizing: border-box;
}

/* GOOGLE REVIEWS (Center wide card) */
.google-reviews {
  background: var(--white);
  border-radius: 0;
  box-shadow: inset 0 0 25px rgba(11, 95, 255, 0.05);
  text-align: center;
}
.google-reviews h2 {
  color: #0b5fff;
  margin-bottom: 8px;
}
.google-reviews p {
  color: #555;
  margin-bottom: 20px;
}
.google-reviews .elfsight-app-ceb12a4f-8da4-40f7-94d5-e8c3e38dd436 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* INSTAGRAM SECTION (Full-width scroll) */
.instagram-section {
  background: linear-gradient(90deg, #eef5ff, #ffffff, #eef5ff);
}
.instagram-section h2 {
  color: #0b5fff;
  text-align: center;
  margin-bottom: 6px;
}
.instagram-section p {
  color: #555;
  text-align: center;
  margin-bottom: 20px;
}

/* INSTAGRAM CAROUSEL */
.insta-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 15px 3%;
  scrollbar-width: none;
}
.insta-carousel::-webkit-scrollbar {
  display: none;
}
.insta-item {
  flex: 0 0 22%;
  min-width: 280px;
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.insta-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(11, 95, 255, 0.12);
}
.insta-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* GALLERY SECTION (Full width auto scroll) */
.gallery-section {
  background: linear-gradient(180deg, #f9fcff 0%, #ffffff 100%);
  text-align: center;
}
.gallery-section h2 {
  color: #0b5fff;
}
.gallery-section p {
  color: #555;
  margin-bottom: 20px;
}

/* MARQUEE EFFECT */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 12px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 20px;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-track img {
  width: 340px;
  height: 210px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(11, 95, 255, 0.08);
  transition: transform 0.3s ease;
}
.marquee-track img:hover {
  transform: scale(1.05);
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* PAUSE ON HOVER */
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .insta-item {
    flex: 0 0 40%;
  }
  .insta-item img {
    height: 180px;
  }
  .marquee-track img {
    width: 260px;
    height: 160px;
  }
}

@media (max-width: 600px) {
  .section-heading h1 {
    font-size: 1.6rem;
  }
  .insta-item {
    flex: 0 0 70%;
  }
  .google-reviews,
  .instagram-section,
  .gallery-section {
    padding: 30px 2%;
  }
}


   

    /* Contact Section */
    .how_to_reach_us_sec {
        padding: 100px 5%;
        background: #f4f7f9;
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: 40px;
        flex-wrap: wrap;
    }
    .form_container, .map_container {
        flex: 1;
        min-width: 400px;
        max-width: 650px;
    }
    .form_container {
        background: #ffffff;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }
    .map_container {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        min-height: 500px;
    }
    .contact_us_form fieldset { border: none; padding: 0; margin: 0; }
    .contact_us_form legend { font-size: 1.8rem; color: #0d47a1; margin-bottom: 25px; font-weight: bold; }
    .contact_us_form label { display: block; font-weight: bold; margin-bottom: 8px; }
    .contact_us_form input[type="text"],
    .contact_us_form input[type="email"],
    .contact_us_form input[type="tel"],
    .contact_us_form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
    }
    .contact_us_form input[type="submit"] {
    background: #1976d2;
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s;
    width: 100%;
    }
    .contact_us_form input[type="submit"]:hover { background: #0d47a1; }

    /* Google Rating */
    #google-rating-section {
    text-align: center;
    background-color: #fff;
    padding: 60px 20px;
    }
    #google-rating-section h2 { font-size: 2rem; color: #0d47a1; }
    #google-rating-section p { font-size: 1.1rem; color: #333; }





    /* Sticky CTA bar - Redesigned */
    .sticky-cta {
        position: fixed;
        right: 24px;
        bottom: 24px;
        z-index: 9999;
        display: flex;
        align-items: flex-end;
        flex-direction: column;
        gap: 14px;
        pointer-events: auto;
        font-family: 'Segoe UI', Inter, Arial, sans-serif;
    }






    /* Footer */
    .footer { background-color: #0d47a1; color: #fff; padding: 60px 5% 0; }
    .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 30px;
    }
    .footer-section { flex: 1; min-width: 250px; }
    .footer-section h3 { font-size: 1.2rem; margin-bottom: 20px; text-transform: uppercase; }
    .footer-section p, .footer-section ul li a { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.8); text-decoration: none; }
    .footer-section ul { list-style: none; padding: 0; }
    .footer-section ul li { margin-bottom: 10px; }
    .footer-section ul li a:hover { color: #fff; }
    .social-icons { display: flex; gap: 15px; margin-top: 20px; }
    .icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background-size: 60%; background-position: center; background-repeat: no-repeat; transition: transform 0.3s ease; }
    .icon:hover { transform: scale(1.1); }
    .facebook { background-color: #fff; background-image: url('https://upload.wikimedia.org/wikipedia/commons/5/51/Facebook_f_logo_%282019%29.svg'); }
    .instagram { background-color: #fff; background-image: url('https://upload.wikimedia.org/wikipedia/commons/a/a5/Instagram_icon.png'); }
    .twitter { background-color: #fff; background-image: url('https://upload.wikimedia.org/wikipedia/en/6/60/Twitter_Logo_as_of_2021.svg'); }
    .linkedin { background-color: #fff; background-image: url('https://upload.wikimedia.org/wikipedia/commons/c/c9/Linkedin.svg'); }
    .footer-bottom { text-align: center; padding: 25px; border-top: 1px solid #1976d2; font-size: 1rem; margin-top: 40px; }

    /* Old styles to hide */
    .fixedbg, .fixedbg2, .fixedbg3, .fixedbg4, .fixedbg5, .best_wish_sec, .moving-gallery-section, .heading_of_courses, .Explore_our_courses, .know_more_ul {
        display: none;
    }

    /* Hamburger Menu Icon */
    .hamburger-menu {
        display: none; /* Hidden by default */
        cursor: pointer;
        z-index: 15;
        background: none;
        border: none;
        padding: 0;
    }

    .hamburger-line {
        width: 30px;
        height: 3px;
        background-color: #fff;
        margin: 6px 0;
        transition: 0.4s;
    }

    /* Responsive Navigation */
    @media (max-width: 992px) { 
        #header .nav-links {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            width: 100%;
        }

        .hamburger-menu {
            display: block;
        }

        .navigation {
            position: fixed; /* Changed from absolute */
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(13, 71, 161, 0.98);
            transform: translateX(-100%);
            transition: transform 0.5s ease-in-out;
            z-index: 14; /* Below hamburger */
        }

        .navigation.nav-active {
            transform: translateX(0);
        }

        .navigation.nav-active .nav-links {
            display: flex;
        }

        #header .nav-links li {
            opacity: 0;
            transform: translateX(-20px);
            animation: navLinkFade 0.5s ease forwards;
        }

        .navigation.nav-active .nav-links li:nth-child(1) { animation-delay: 0.2s; }
        .navigation.nav-active .nav-links li:nth-child(2) { animation-delay: 0.3s; }
        .navigation.nav-active .nav-links li:nth-child(3) { animation-delay: 0.4s; }
        .navigation.nav-active .nav-links li:nth-child(4) { animation-delay: 0.5s; }
        .navigation.nav-active .nav-links li:nth-child(5) { animation-delay: 0.6s; }
        .navigation.nav-active .nav-links li:nth-child(6) { animation-delay: 0.7s; }

        @keyframes navLinkFade {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Hamburger animation to X */
        .hamburger-menu.toggle .hamburger-line:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        .hamburger-menu.toggle .hamburger-line:nth-child(2) {
            opacity: 0;
        }
        .hamburger-menu.toggle .hamburger-line:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }
    }
    
    
    
    
    
    .btn-primary {
  background: #00c3ff;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0093cc;
}

.btn-support {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-left: 10px;
}

.btn-support:hover {
  background: #1fa955;
}

