
    /* ========================================= */
    /*          YOUR ORIGINAL CSS STYLES         */
    /* ========================================= */

    /* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html {
        scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: #2D1764; /* Dark purple text */
      background-color: #F6F6F6;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 0 2rem;
    }

    /* =================================================== */
    /*  NAVIGATION STYLES (WITH CRITICAL FIXES APPLIED)    */
    /* =================================================== */
    
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000; /* CRITICAL FIX #1: This brings the header to the top layer so it's always clickable */
      background-color: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
    }
    
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 0;
    }

    .logo-container { display: flex; align-items: center; gap: 10px; }
    .logo-img { height: 40px; width: auto; }
    .brand-name { font-size: 24px; font-weight: bold; color: #e63946; }
    
    .nav-links { list-style: none; display: flex; gap: 2rem; }
    .nav-links a { text-decoration: none; color: #2D1764; font-weight: 500; transition: color 0.3s ease; }
    .nav-links a:hover { color: #E62926; }

    /* Hamburger Menu is hidden on desktop by default in the media query */
    .hamburger-menu { display: none; }


    /* Hero Section - YOUR ORIGINAL STYLES RESTORED */
    .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      font-family: 'Poppins', sans-serif;
    }

    .bg-video {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: -2;
    }

    .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(3px);
      z-index: -1;
    }

    .hero-content h1 {
      font-size: 3.5rem;
      animation: zoomFade 10s ease-in-out infinite;
    }

    .hero-content p {
      font-size: 1.2rem;
      margin: 1rem 0;
      animation: zoomFade 10s ease-in-out infinite;
    }
    
    /* YOUR ORIGINAL GLASSY BUTTON STYLE RESTORED */
    .hero-content .btn {
      display: inline-block;
      margin-top: 1.5rem;
      padding: 12px 28px;
      font-size: 1rem;
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid #fff;
      border-radius: 30px;
      backdrop-filter: blur(4px);
      transition: 0.3s ease;
      text-decoration: none;
    }

    .hero-content .btn:hover {
      background: #ffd700;
      color: #2D1764;
      border-color: #ffd700;
    }
    
    /* YOUR ORIGINAL KEYFRAME ANIMATION RESTORED */
    @keyframes zoomFade {
      0% { opacity: 0; transform: translateY(20px) scale(0.95); }
      20% { opacity: 1; transform: translateY(0) scale(1); }
      80% { opacity: 1; transform: translateY(-10px) scale(1.03); }
      100% { opacity: 0; transform: translateY(20px) scale(0.95); }
    }

    /* Features Section */
    .features {
      display: flex;
      justify-content: space-around;
      padding: 4rem 2rem;
      background: #F6F6F6;
      text-align: center;
      flex-wrap: wrap; /* Added for better responsiveness */
      gap: 1rem;      /* Added for better spacing */
    }

    .feature-box {
      flex: 1;
      min-width: 200px; /* Added for better wrapping */
      margin: 0 1rem;
      padding: 2rem;
      background-color: #FFFFFF;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s ease, background-color 0.3s;
    }

    .feature-box:hover {
      transform: translateY(-10px);
      background-color: #EFEAFD; /* Light purple hover */
    }

    .feature-box i { font-size: 2.8rem; margin-bottom: 1rem; color: #d4af37; }
    .feature-box h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }

    /* Generic Section Styles */
    .about, .gallery, .testimonials, .cta { padding: 4rem 2rem; text-align: center; }
    .gallery h2, .about-section h2, .testimonials h2 { font-size: 2.5rem; color: #2D1764; margin-bottom: 40px; }

    /* Gallery */
    .gallery { background-color: #fff; }
    .gallery-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: auto; }
    .gallery-item img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; }
    .gallery-item img:hover { transform: scale(1.05); }

    /* About Section */
    .about-section { background-color: #f6f6f6; }
    .about-container { max-width: 900px; margin: auto; color: #2D1764; }
    .about-section p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 15px; text-align: justify; }

    /* Testimonials - YOUR ORIGINAL BORDER-LESS STYLE RESTORED */
    .testimonials { background-color: #F6F6F6; }
    .testimonials-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
    .testimonial-card { background-color: #FFFFFF; padding: 2rem; max-width: 350px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); text-align: left; transition: transform 0.3s ease; }
    .testimonial-card:hover { transform: translateY(-8px); }
    .testimonial-card p { font-size: 1rem; line-height: 1.6; color: #333; margin-bottom: 1rem; }
    .testimonial-card h4 { font-size: 1rem; color: #2D1764; font-weight: 600; }

    /* CTA Section */
    .cta { background-color: #2D1764; color: white; }
    .cta .btn { margin-top: 1rem; padding: 0.75rem 1.5rem; background-color: #E62926; color: white; border-radius: 5px; text-decoration: none; }
    .cta .btn:hover { background-color: #C2181B; }

    /* Footer */
    .footer { background-color: #000; color: #fff; padding: 3rem 2rem; }
    .footer-container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; }
    .footer-left { flex: 1; min-width: 200px; text-align: center; }
    .footer-logo { width: 100px; margin-bottom: 0.5rem; }
    .footer-left h3 { font-size: 1.3rem; font-weight: 600; }
    .footer-right { flex: 2; min-width: 300px; }
    .footer-right p, .footer-right a { color: #fff; font-size: 0.95rem; margin-bottom: 0.4rem; text-decoration: none; }
    .footer-right i { margin-right: 0.5rem; color: #d4af37; }

    /* ========================================= */
    /*      RESPONSIVE STYLES (WITH FIXES)       */
    /* ========================================= */
    
    @media (max-width: 992px) {
      .features { flex-direction: column; align-items: center; gap: 2rem; }
      .feature-box { margin: 0; width: 80%; }
      .gallery-container { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .hamburger-menu {
        display: block; /* Show the hamburger */
        cursor: pointer;
        font-size: 2rem;
      }

      .nav-links {
        /* This transforms the menu into a slide-out panel */
        position: fixed;
        top: 0;
        right: -100%; /* Start hidden off-screen */
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background-color: #FFFFFF;
        
        display: flex; /* Still use flex for alignment */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease-in-out;
      }
      
      .nav-links.active {
        right: 0; /* Slide into view */
      }

      .nav-links a {
        font-size: 1.5rem; /* Make links bigger */
      }

      .hero-content h1 { font-size: 2.5rem; }
      .hero-content p { font-size: 1rem; }
      .gallery-container { grid-template-columns: 1fr; }
      .gallery-item img { height: 250px; }
      .about-section p { text-align: left; }
      .footer-container { flex-direction: column; text-align: center; align-items: center; gap: 2rem; }
    }
  