
    /* ========================================= */
    /*          YOUR ORIGINAL CSS STYLES         */
    /* ========================================= */
    @import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');


    /* 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)    */
    /* =================================================== */
    
.hero {
  position: relative;
  height: 100vh; /* Full screen height */
  overflow: hidden;
}

.bg-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 0; /* Keep on same layer as overlay */
  pointer-events: auto; /* This allows interaction */
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* dark overlay for readability */
  z-index: 0;
}

.hero-content {
    pointer-events: none;
  position: relative;
  z-index: 1; /* keep text/buttons on top */
  color: white;
  text-align: center;
  top: 30%;
  padding: 10px;
  transform: translateY(-50%);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

    
    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; flex-direction: row;  align-items: center; gap: 10px; }
    .logo-img { height: 40px; width: auto; }
    .brand-name { 
      font-family: "Noto Serif", serif;
      font-optical-sizing: auto;
      font-size: 32px; 
      font-weight: bold; 
      color: #756199; 
    }
    
    .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); }

    /* Tariff Section */
.tariff {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #faf7ff, #f0ebff);
  text-align: center;
  font-family: "Noto Serif", serif;
}

.tariff .section-title {
  font-size: 2.8rem;
  color: #2D1764;
  margin-bottom: 0.8rem;
  position: relative;
  display: inline-block;
}

.tariff .section-title::after {
  content: "";
  display: block;
  height: 3px;
  width: 60%;
  margin: 0.5rem auto;
  background: linear-gradient(90deg, #E62926, #6A11CB);
  border-radius: 3px;
}

.tariff-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
  font-style: italic;
}

.tariff-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.tariff-card {
  background: #fff;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tariff-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230,41,38,0.07) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.4s ease;
}

.tariff-card:hover::before {
  transform: scale(1);
}

.tariff-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.tariff-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #2D1764;
  font-weight: 600;
}

.tariff-card .price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #E62926;
}

.tariff-card .price span {
  font-size: 1rem;
  font-weight: normal;
  color: #666;
}

.tariff-note {
  margin-top: 3rem;
  font-size: 0.95rem;
  color: #444;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .tariff .section-title { font-size: 2.2rem; }
  .tariff-card h3 { font-size: 1.2rem; }
  .tariff-card .price { font-size: 1.1rem; }
}


    /* 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: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease-in-out;
      }
      
      .nav-links.active {
        right: 0; 
      }

      .nav-links a {
        font-size: 1.5rem; 
      }

      .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; padding: 0 1rem; gap: 1.2rem; line-height: 1.4;}
  }
  