
       :root { --loader-size: 120px; --cloud-color: #4387f4; --arrows-color: #80b1ff; --bg-color: rgba(6, 11, 20, 0.92); --text-color: #ffffff; --animation-time: 1s; } .in-the-mood-for-love { position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; background: var(--bg-color); z-index: 99999; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: opacity 300ms ease, visibility 300ms ease; } .farewell-my-concubine { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; padding: 1rem 1.5rem; text-align: center; color: var(--text-color); max-width: 92vw; } .crouching-tiger-hidden-dragon { width: var(--loader-size); height: var(--loader-size); display: inline-block; } .crouching-tiger-hidden-dragon svg { width: 100%; height: 100%; } .in-the-mood-for-love rect { fill: var(--cloud-color); } .in-the-mood-for-love g:nth-child(3) { transform-origin: 50% 72.8938%; fill: var(--arrows-color); filter: drop-shadow(0 0 8px rgba(0,0,0,0.6)); animation: ln-rotation var(--animation-time) linear infinite; } #ln-shapes g g circle { animation: ln-cloud calc(var(--animation-time) * 2) linear infinite; } #ln-shapes g g circle:nth-child(2) { animation-delay: calc((var(--animation-time) * 2) / -3); } #ln-shapes g g circle:nth-child(3) { animation-delay: calc((var(--animation-time) * 2) / -1.5); } .in-the-mood-for-love svg #ln-lines g line { stroke-width: 5; transform-origin: 50% 50%; rotate: -65deg; animation: ln-lines calc(var(--animation-time) / 1.33) linear infinite; } @keyframes ln-rotation { 0% { transform: rotate(0deg); } 50% { transform: rotate(180deg); } 100% { transform: rotate(360deg); } } @keyframes ln-lines { 0% { transform: translateY(-10px); } 100% { transform: translateY(8px); } } @keyframes ln-cloud { 0% { cx: 20; cy: 60; r: 15; } 50% { cx: 50; cy: 45; r: 20; } 100% { cx: 80; cy: 60; r: 15; } } .a-touch-of-zen { font-family: system-ui, -apple-system, 'Poppins', 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--text-color); } .raise-the-red-lantern { width: 36px; height: 36px; border-radius: 50%; border: 4px solid rgba(255,255,255,0.12); border-top-color: rgba(255,255,255,0.9); animation: ln-fallback 1s linear infinite; display: none; } @keyframes ln-fallback { to { transform: rotate(360deg); } } .no-svg .crouching-tiger-hidden-dragon { display: none; } .no-svg .raise-the-red-lantern { display: block; } @media (prefers-reduced-motion: reduce) { .in-the-mood-for-love g:nth-child(3), #ln-shapes g g circle, .in-the-mood-for-love svg #ln-lines g line { animation: none !important; } } @media (max-width: 640px) { :root { --loader-size: 92px; } .a-touch-of-zen { font-size: 0.9rem; } } @media (min-width: 1280px) { :root { --loader-size: 140px; } } .to-live { opacity: 0; visibility: hidden; pointer-events: none; } 
        /* ---------- Navbar ---------- */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
    }
    .nav-logo {
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--text-dark);
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 30px;
    }
    .nav-links a {
      color: var(--text-light);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    .nav-links a:hover {
      color: var(--primary-color);
    }
    .nav-cta {
      background: var(--primary-color);
      color: var(--white);
      padding: 10px 20px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s ease;
    }
    .nav-cta:hover {
        background: #5a43e0;
    }
    .hamburger {
        display: none;
        cursor: pointer;
    }
    @media (max-width: 768px) {
        .nav-links, .nav-cta {
            display: none;
        }
        .hamburger {
            display: block;
        }
    }
    :root {
      --primary-color: #6C55F9;
      --bg-light-purple: #F7F5FF;
      --text-dark: #2F2E41;
      --text-light: #707070;
      --white: #FFFFFF;
      --border-color: #E8E6F7;
      --container-width: 1200px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
    
    /* Fallback color */
    background-color: #f8fafc; 

    /* Soft, multi-toned gradient background */
    background-image: 
        radial-gradient(at 0% 0%, hsla(243, 85%, 95%, 1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(217, 89%, 90%, 1) 0px, transparent 50%);
    
    /* Keep existing font styles */
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

    .shonar-kella {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 18px;
    }

    /* ---------- Slider ---------- */
    .goopy-gyne-bagha-byne {
      margin-top: 32px;
      display: flex;
      justify-content: center;
    }

    .pather-panchali {
      width: 100%;
      max-width: 1200px;
      position: relative;
    }

    .hirak-rajar-deshe {
      background: #c4b5fd;
      border-radius: 24px;
      padding: 44px;
      overflow: hidden;
      display: flex;
      align-items: center;
      gap: 36px;
      min-height: 320px;
      position: relative;
    }

    .meghe-dhaka-tara {
      display: flex;
      align-items: center;
      gap: 36px;
      width: 100%;
      opacity: 0;
      visibility: hidden;
      position: absolute;
      left: 0;
      top: 44px; /* Align with padding */
      transition: opacity 0.0s ease, visibility 0.0s ease;
      pointer-events: none;
    }

    .meghe-dhaka-tara.autograph {
      opacity: 1;
      visibility: visible;
      position: relative;
      top: 0;
      pointer-events: auto;
    }

    .baishe-srabon {
      flex: 1;
      max-width: 55%;
      text-align: left;
    }

    .baishe-srabon h1 {
      font-size: 36px;
      line-height: 1.12;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .baishe-srabon p {
      color: var(--text-light);
      font-size: 15px;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .bibaho-obhijaan {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      background: var(--primary-color);
      color: #fff;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 600;
    }

    .play-icon {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #fff;
      color: var(--primary-color);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    .chotushkone {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 45%;
    }

    .chotushkone img {
      width: 100%;
      height: auto;
      max-width: 420px;
      display: block;
    }
    
    @keyframes slideInFromBottom {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes slideInFromTop {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .meghe-dhaka-tara.autograph .baishe-srabon,
    .meghe-dhaka-tara.autograph .chotushkone {
      animation: slideInFromBottom 0.7s cubic-bezier(0.25, 1, 0.5, 1) both;
    }

    .meghe-dhaka-tara.autograph .chotushkone {
      animation-delay: 0.1s;
    }

    .praktan-abhimukhe .meghe-dhaka-tara.autograph .baishe-srabon,
    .praktan-abhimukhe .meghe-dhaka-tara.autograph .chotushkone {
      animation-name: slideInFromTop;
    }

    /* Responsive */
    @media (max-width: 880px) {
      .hirak-rajar-deshe { padding: 28px; border-radius: 18px; }
      .baishe-srabon { max-width: 60%; }
      .chotushkone { max-width: 40%; }
      .baishe-srabon h1 { font-size: 28px; }
    }

    @media (max-width: 640px) {
      .hirak-rajar-deshe {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        min-height: 380px;
        text-align: center;
      }
      .meghe-dhaka-tara { align-items: center; flex-direction: column; }
      .baishe-srabon, .chotushkone { max-width: 100%; }
      .baishe-srabon h1 { font-size: 22px; }
    }
    .promo-container {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-top: 20px;
    }
    .promo-block {
      background: #e6e0ff;
      border-radius: 24px;
      padding: 24px;
      width: calc(50% - 10px);
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .promo-img {
      width: auto;
      height: 100px;
      border-radius: 16px;
      object-fit: cover;
      flex-shrink: 0;
    }
    .promo-text {
      text-align: left;
    }
    .promo-text h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
        color: var(--text-dark);
    }
    .promo-text p {
        font-size: 0.95rem;
        color: var(--text-light);
        line-height: 1.5;
    }
            /* Global font styles */
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
        /* Hover effects for logos (cannot be done inline) */
        .sasura-bada-paisawala:hover {
            opacity: 1 !important; /* Use !important to override inline style */
            filter: grayscale(0%) !important;
            transform: scale(1.1) !important;
        }
    .hero-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; padding: 40px 20px; max-width: 1400px; margin: 0 auto; } .infernal-affairs-link { text-decoration: none; } .the-grandmaster { margin: 0; background: transparent; box-shadow: 0px 8px 28px -9px rgba(0, 0, 0, 0.45); position: relative; width: 240px; height: 330px; border-radius: 16px; overflow: hidden; transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; flex-shrink: 0; } .the-grandmaster:hover { transform: translateY(-10px) scale(1.03); box-shadow: 0px 18px 45px -9px rgba(0, 0, 0, 0.35); } .house-of-flying-daggers { position: absolute; width: 540px; height: 700px; opacity: 0.6; left: 0; top: 0; margin-left: -50%; margin-top: -70%; background: linear-gradient(744deg, #af40ff, #5b42f3 60%, #00ddeb); } .red-sorghum-icon { width: 3em; margin-top: -1em; padding-bottom: 1em; } .ip-man-infotop { text-align: center; font-size: 20px; position: absolute; top: 5.6em; left: 0; right: 0; color: rgb(255, 255, 255); font-weight: 600; display: flex; flex-direction: column; align-items: center; } .lust-caution-desc { font-size: 14px; font-weight: 300; position: relative; top: 1.5em; text-transform: none; line-height: 1.5; padding: 0 20px; color: rgba(255, 255, 255, 0.9); } .house-of-flying-daggers:nth-child(2), .house-of-flying-daggers:nth-child(3) { top: 210px; } .in-action .house-of-flying-daggers { border-radius: 40%; animation: wave 3000ms infinite linear; } .house-of-flying-daggers { border-radius: 40%; animation: wave 55s infinite linear; } .in-action .house-of-flying-daggers:nth-child(2) { animation-duration: 4000ms; } .house-of-flying-daggers:nth-child(2) { animation-duration: 50s; } .in-action .house-of-flying-daggers:nth-child(3) { animation-duration: 5000ms; } .house-of-flying-daggers:nth-child(3) { animation-duration: 45s; } @keyframes wave { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @media (max-width: 768px) { .hero-container { flex-direction: column; align-items: center; overflow-x: hidden; } }

/* --- Base Section --- */
.rangasthalam {
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
}

.rangasthalam .mayabazar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* --- Content --- */
.athadu {
  flex: 1;
  text-align: left;
}

.eega {
  color: #2563eb;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.baahubali {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}

.baahubali span {
  color: #2563eb;
}

.jersey {
  color: #475569;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
}

/* --- Highlights --- */
.pokiri {
  display: flex;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.arjun-reddy {
  flex: 1;
  min-width: 220px;
  background: #f9fafb;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.arjun-reddy:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(37, 99, 235, 0.15);
}

.arjun-reddy img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.arjun-reddy h3 {
  color: #1e3a8a;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.arjun-reddy p {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* --- Illustration --- */
.pushpa {
  flex: 1;
  display: flex;
  justify-content: center;
}

.rrr {
  width: 100%;
  max-width: 480px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .rangasthalam .mayabazar {
    flex-direction: column;
    text-align: center;
  }

  .pushpa {
    order: 2;
  }

  .athadu {
    order: 1;
    text-align: center;
  }

  .pokiri {
    justify-content: center;
  }

  .baahubali {
    font-size: 1.8rem;
  }

  .jersey {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .arjun-reddy {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .arjun-reddy img {
    width: 40px;
    height: 40px;
  }

  .rrr {
    max-width: 300px;
  }

  .baahubali {
    font-size: 1.5rem;
  }

  .jersey {
    font-size: 0.9rem;
  }
}

/* Base Section */
.intouchables {
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
}

.intouchables .le-grand-bleu {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left Illustration */
.amelie {
  flex: 1;
  display: flex;
  justify-content: center;
}

.la-vie-en-rose {
  width: 100%;
  max-width: 500px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Right Content */
.un-prophete {
  flex: 1;
  text-align: left;
}

.le-samourai {
  color: #2563eb;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.les-choristes {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.a-bout-de-souffle {
  color: #475569;
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.6;
}

/* Each Reason */
.le-diner-de-cons {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  transition: transform 0.3s ease, background 0.3s ease;
  border-radius: 10px;
  padding: 10px;
}

.le-diner-de-cons:hover {
  transform: translateX(10px);
  background: #f8fafc;
}

.le-papillon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #e0e7ff;
  padding: 10px;
}

.les-quatre-cents-coups h3 {
  color: #1e3a8a;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.les-quatre-cents-coups p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
  .intouchables .le-grand-bleu {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .amelie {
    order: -1;
  }

  .un-prophete {
    text-align: center;
  }

  .le-diner-de-cons {
    justify-content: left;
    text-align: left;
  }

  .la-vie-en-rose {
    max-width: 400px;
  }

  .les-choristes {
    font-size: 1.7rem;
  }
}

@media (max-width: 600px) {
  .le-diner-de-cons {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .le-papillon {
    width: 40px;
    height: 40px;
  }

  .les-choristes {
    font-size: 1.5rem;
  }

  .a-bout-de-souffle {
    font-size: 0.9rem;
  }

  .les-quatre-cents-coups h3 {
    font-size: 1rem;
  }

  .les-quatre-cents-coups p {
    font-size: 0.85rem;
  }

  .la-vie-en-rose {
    max-width: 300px;
  }
}


section.the-godfather {
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.the-godfather h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
}

.the-godfather p.gone-with-the-wind {
  color: #6b7280;
  font-size: 1rem;
  margin-top: 8px;
  margin-bottom: 60px;
}

.lawrence-of-arabia {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.citizen-kane {
  width: 220px;
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.citizen-kane:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
}

.citizen-kane::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, #93c5fd, #3b82f6);
  transform: translate(-10px, 10px);
  z-index: -1;
  opacity: 0.35;
}

.citizen-kane img {
  width: 110px;
  height: auto;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.citizen-kane h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.citizen-kane p {
  font-size: 0.9rem;
  color: #475569;
}

.the-bridge-on-the-river-kwai {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 2rem;
}

@media (max-width: 900px) {
  .lawrence-of-arabia {
    flex-direction: column;
  }
  .the-bridge-on-the-river-kwai {
    transform: rotate(90deg);
  }
}

    /* FAQ Section */
/* FAQ Section */
.prashn-khand {
  padding: 100px 20px;
  color: #1e293b;
  font-family: 'Poppins', sans-serif;
}

.prashn-khand .dhaancha {
  max-width: 900px;
  margin: 0 auto;
}

.prashn-shirshak {
  text-align: center;
  margin-bottom: 60px;
}

.prashn-shirshak .neeli-rekha {
  width: 70px;
  height: 4px;
  background: #2563eb;
  border-radius: 5px;
  margin: 0 auto 20px;
}

.prashn-shirshak h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1e293b;
}

.prashn-shirshak h2 span {
  color: #2563eb;
}

.prashn-shirshak p {
  color: #475569;
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FAQ List */
.prashn-suchi {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ Item */
.prashn-mad {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  padding: 20px 25px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.prashn-mad:hover {
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
  transform: translateY(-3px);
}

.prashn-mad h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #1e3a8a;
  position: relative;
  padding-right: 25px;
}

/* Arrow Indicator */
.prashn-mad h3::after {
  content: '▾';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2rem;
  color: #2563eb;
  transition: transform 0.3s ease;
}

/* Answer Hidden by Default */
.prashn-uttar {
  display: none;
  margin-top: 10px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.prashn-mad.sakriya h3::after {
  transform: rotate(-180deg);
}

.prashn-mad.sakriya .prashn-uttar {
  display: block;
}

/* Link */
.kadi {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}

.kadi:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .prashn-shirshak h2 {
    font-size: 2rem;
  }
  .prashn-khand {
    padding: 70px 15px;
  }
}

/* Main Section */
.hellaro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Left side content */
.gujjubhai-the-great {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  text-align: left;
  z-index: 1;
}

.gujjubhai-the-great img {
  width: 120px;
  margin-bottom: 25px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.gujjubhai-the-great h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.gujjubhai-the-great p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.karsandas-pay-and-use {
  list-style: none;
  padding: 0;
  margin: 0;
}

.karsandas-pay-and-use li {
  margin-bottom: 15px;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.karsandas-pay-and-use li strong {
  color: #38bdf8;
}

/* Right Side Form */
.wrong-side-raju {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.25);
  z-index: 1;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input, textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #f8fafc;
  font-size: 1rem;
  padding: 14px 16px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

input::placeholder, textarea::placeholder {
  color: #94a3b8;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.4);
}

/* Buttons */
button {
  background: linear-gradient(90deg, #3b82f6, #0ea5e9);
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
}

/* Responsive */
@media (max-width: 900px) {
  .hellaro {
    flex-direction: column;
    text-align: center;
  }
  .gujjubhai-the-great {
    text-align: center;
  }
  .wrong-side-raju {
    width: 100%;
  }
}
/* --- Polished Mobile Menu --- */
@media (max-width: 768px) {
  /* The main navigation link container */
  .nav-links {
    /* Layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px; /* Increased spacing between links */

    /* Full-screen Overlay */
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 1000;

    /* Hide by default & prepare for animation */
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1), opacity 0.4s ease, visibility 0.4s;
  }

  /* When the menu is active/open */
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  /* Style for individual menu links */
  .nav-links a {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
  }
  
  /* Ensure the hamburger is always on top */
  .hamburger {
    z-index: 1001; 
  }

  /* Style the 'Get Started' button to be consistent with links */
  .nav-cta {
    display: block;
    padding: 12px 30px;
    font-size: 1.2rem;
  }
}

/* --- Body & Icon Animation --- */

/* Prevents the main page from scrolling when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Styles for animating the hamburger icon to a close 'X' */
.hamburger svg {
  overflow: visible; /* Prevents lines from being clipped during animation */
}

.hamburger svg line {
  transition: transform 0.3s ease-in-out, opacity 0.2s ease;
  transform-origin: center;
}

body.mobile-menu-open .hamburger svg line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
body.mobile-menu-open .hamburger svg line:nth-child(2) {
  opacity: 0;
}
body.mobile-menu-open .hamburger svg line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

    /* What Our Clients Say Section */
.parasite {
  padding: 100px 20px;
  background-color: #f8fafc; 
}

.parasite-header {
  text-align: center;
  margin-bottom: 60px;
}

.parasite-header .gone-with-the-wind {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gisaengchung-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.the-parks-residence {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  border-top: 4px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.the-parks-residence:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(108, 85, 249, 0.15);
}

.quote-icon {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 5rem;
  color: #dddddd;
  font-weight: 900;
  line-height: 1;
  z-index: 0;
  opacity: 0.8;
}

.the-quote {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
  z-index: 1;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  z-index: 1;
}

.client-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  object-fit: cover;
}

.client-info h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 600;
  margin: 0;
}

.client-info p {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin: 0;
}

/* Responsive adjustments for testimonials */
@media (max-width: 992px) {
  .gisaengchung-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gisaengchung-grid {
    grid-template-columns: 1fr;
  }
}
/* Our Numbers Section - Themed */
.the-matrix {
  padding: 10px 20px;
  background-color: #F9F8FF; /* Fallback color */
  background-image: radial-gradient(circle at 1% 1%, hsla(250, 100%, 99%, 1) 0px, transparent 50%),
                    radial-gradient(circle at 99% 99%, hsla(245, 100%, 98%, 1) 0px, transparent 50%);
}

/* New Section Header */
.matrix-header {
  text-align: center;
  margin-bottom: 80px;
}

.matrix-header .gone-with-the-wind {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reloaded-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 60px;
  justify-items: center;
}

/* Base card styling, adapted from your example */
.neo-stat {
  width: 220px;
  height: 280px;
  padding: 8px;
  border-radius: 1rem;
  overflow: visible;
  background: var(--background);
  position: relative;
  z-index: 1;
}

/* The two rotated background layers */
.neo-stat::before,
.neo-stat::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  z-index: -1;
  transition: opacity 0.5s ease;
}

/* Inner content wrapper */
.trinity-info-wrap {
  background: #292b2c;
  color: #292b2c; /* Initial text color matches background (hidden) */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 0.7rem;
  position: relative;
  z-index: 2;
  transition: color 0.8s ease;
  padding: 20px;
  text-align: center;
}

/* --- Hover Effects --- */
.neo-stat:hover::before,
.neo-stat:hover::after {
  opacity: 0;
}

.neo-stat:hover .trinity-info-wrap {
  color: var(--hover-color); /* Reveal text with a new color on hover */
}

/* Make icons and text inherit the new color */
.neo-stat:hover .agent-smith-icon svg,
.neo-stat:hover .revolutions-number,
.neo-stat:hover .morpheus-title,
.neo-stat:hover .the-oracle-desc {
    color: inherit;
}

/* --- Unique Gradients & Colors for Each Card --- */

/* Card 1: Global Service */
.neo-stat:nth-child(1) {
  --background: linear-gradient(to right, #74ebd5 0%, #acb6e5 100%);
  --hover-color: #74ebd5;
}
.neo-stat:nth-child(1)::before {
  background: linear-gradient(to bottom right, #f6d365 0%, #fda085 100%);
  transform: rotate(3deg);
}
.neo-stat:nth-child(1)::after {
  background: linear-gradient(to top right, #84fab0 0%, #8fd3f4 100%);
  transform: rotate(-3deg);
}

/* Card 2: 24/7 Support */
.neo-stat:nth-child(2) {
  --background: linear-gradient(to right, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%);
  --hover-color: #ff8177;
}
.neo-stat:nth-child(2)::before {
  background: linear-gradient(to bottom right, #5ee7df 0%, #b490ca 100%);
  transform: rotate(3deg);
}
.neo-stat:nth-child(2)::after {
  background: linear-gradient(to top right, #d4fc79 0%, #96e6a1 100%);
  transform: rotate(-3deg);
}

/* Card 3: Client Satisfaction */
.neo-stat:nth-child(3) {
  --background: linear-gradient(to right, #89f7fe 0%, #66a6ff 100%);
  --hover-color: #89f7fe;
}
.neo-stat:nth-child(3)::before {
  background: linear-gradient(to bottom right, #ff758c 0%, #ff7eb3 100%);
  transform: rotate(3deg);
}
.neo-stat:nth-child(3)::after {
  background: linear-gradient(to top right, #f093fb 0%, #f5576c 100%);
  transform: rotate(-3deg);
}

/* --- Styling for content inside the card --- */
.agent-smith-icon {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.agent-smith-icon svg {
    width: 30px;
    height: 30px;
    color: #292b2c; /* Initially hidden */
}
.revolutions-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.morpheus-title {
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.the-oracle-desc {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 840px) {
  .reloaded-grid {
    gap: 80px 40px;
  }
}
@media (max-width: 540px) {
  .reloaded-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
}
.neeli-rekha {
  width: 70px;
  height: 4px;
  background: #2563eb;
  border-radius: 5px;
  margin: 0 auto 20px;
}
/* The container for the animation */
.mouse-scroll-icon {
  --mouse-color: #292b2c; /* Color of the icon */
  --mouse-width: 30px;
  --mouse-height: 50px;
  --border-width: 2px;
  
  width: var(--mouse-width);
  height: var(--mouse-height);
  border: var(--border-width) solid var(--mouse-color);
  border-radius: 25px; /* Creates the oval mouse shape */
  position: relative;
  margin: 40px auto; /* Example positioning */
}

/* The scrolling dot, created with the ::before pseudo-element */
.mouse-scroll-icon::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--mouse-color);
  border-radius: 50%;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  /* Link to the keyframe animation */
  animation: scroll-dot 2.5s infinite;
}

/* The ripple burst, created with the ::after pseudo-element */


/* Keyframe animation for the scrolling dot */
@keyframes scroll-dot {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, 20px);
    opacity: 1;
  }
  80%, 100% {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
}

/* Keyframe animation for the ripple burst */
@keyframes ripple-burst {
  0%, 50% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
/* Blog / Insights Section */
/* Blog / Insights Section */
.the-insider {
  padding: 100px 20px;
  background-color: #f8fafc;
}

.insider-header {
  text-align: center;
  margin-bottom: 60px;
}

.insider-header .gone-with-the-wind {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pulp-fiction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Individual Blog Post Card */
.kill-bill-post {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.kill-bill-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(108, 85, 249, 0.12);
}

/* --- Card internal styles --- */
.post-image-wrap { height: 200px; overflow: hidden; }
.post-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.kill-bill-post:hover .post-image-wrap img { transform: scale(1.05); }
.post-content-wrap { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.post-category { display: inline-block; font-size: 0.8rem; font-weight: 600; color: var(--primary-color); background-color: var(--bg-light-purple); padding: 4px 10px; border-radius: 99px; margin-bottom: 15px; align-self: flex-start; }
.post-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.post-title a { color: var(--text-dark); text-decoration: none; transition: color 0.3s ease; }
.post-title a:hover { color: var(--primary-color); }
.post-excerpt { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; flex-grow: 1; }
.post-read-more { margin-top: 20px; font-weight: 600; color: var(--primary-color); text-decoration: none; transition: opacity 0.3s ease; }
.post-read-more:hover { opacity: 0.8; }

/* "View More" button styles */
.insider-footer {
  text-align: center;
  margin-top: 50px;
}

.view-more-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.view-more-btn:hover {
  background-color: #5a43e0; /* A slightly darker shade */
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .pulp-fiction-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pulp-fiction-grid {
    grid-template-columns: 1fr;
  }
}
    
    /* Navbar Logo Styling */
.nav-logo img {
  height: 40px; /* Adjust the height as needed */
  width: auto;
  vertical-align: middle; /* Improves alignment */
}
/* --- Mobile Responsive Adjustments --- */
@media (max-width: 768px) {
  /* Promo Blocks */
  .promo-container {
    flex-direction: column; /* Stack the blocks vertically */
  }

  .promo-block {
    width: 100%; /* Make each block full-width */
    flex-direction: column; /* Stack the image and text inside the block */
    text-align: center;
    padding: 20px;
  }
  
  .promo-img {
    height: 80px; /* Adjust image size for mobile */
    margin-bottom: 15px;
  }
  
  .promo-text h3 {
    font-size: 1.1rem;
  }

  /* Header Slider Refinements */
  .hirak-rajar-deshe {
    min-height: auto; /* Allow height to adjust to content */
    padding: 40px 20px;
  }

  .baishe-srabon {
    /* The existing rule for text-align: center is good */
  }
  
  .baishe-srabon h1 {
    font-size: 1.5rem; /* Slightly larger for better impact */
    line-height: 1.2;
  }
  
  .baishe-srabon p {
    font-size: 0.95rem; /* Improve readability */
  }

  /* Adjusts the main content container padding on mobile */
  .shonar-kella {
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .pushpa {
    display: none;
  }
}
/* Reusable CTA Section */
.goodfellas-cta {
  padding: 80px 20px;
}

.goodfellas-cta .cta-content {
  background: linear-gradient(105deg, var(--primary-color, #6c55f9) 0%, #5a43e0 100%);
  color: var(--white, #ffffff);
  text-align: center;
  padding: 60px 40px;
  border-radius: 24px;
  box-shadow: 0 20px 40px -15px rgba(108, 85, 249, 0.5);
  position: relative;
  overflow: hidden; /* This is crucial to contain the bubbles */
}

/* Optional: Adds a subtle decorative pattern */
.goodfellas-cta .cta-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(20px);
}

.cta-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1; /* Keeps text above bubbles */
}

.cta-subheading {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 30px;
  opacity: 0.9;
  position: relative;
  z-index: 1; /* Keeps text above bubbles */
}

.cta-button {
  display: inline-block;
  background: var(--white, #ffffff);
  color: var(--primary-color, #6c55f9);
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
  position: relative;
  z-index: 1; /* Keeps button above bubbles */
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  background-color: #f0edff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .goodfellas-cta {
    padding: 60px 20px;
  }
  .cta-heading {
    font-size: 1.8rem;
  }
  .cta-subheading {
    font-size: 1rem;
  }
  .goodfellas-cta .cta-content {
    padding: 40px 25px;
  }
}

/* --- New Bubble Animation Styles --- */

/* 1. The Keyframe Animation */
@keyframes move-bubbles {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(20px) translateX(-30px);
  }
  50% {
    transform: translateY(-15px) translateX(20px);
  }
  75% {
    transform: translateY(10px) translateX(35px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

/* 2. The Bubble Container */
.bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Places it behind the content (which has z-index: 1) */
}

/* 3. The General Bubble Style */
.bubble {
  position: absolute;
  display: block;
  border-radius: 50%;
  /* Removed general opacity: 0.6 here */
  filter: blur(1px); /* Softens the bubble edges */
  animation: move-bubbles infinite;
}

/* 4. Individual Bubble Variations - NOW ALL WITH ALPHA 0.5 */

.bubble:nth-child(1) {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5); /* Changed to 0.5 */
  top: 10%;
  left: 15%;
  animation-duration: 20s;
  animation-delay: 0s;
}

.bubble:nth-child(2) {
  width: 20px;
  height: 20px;
  background: rgba(137, 219, 255, 0.5); /* Changed to 0.5 */
  top: 25%;
  left: 40%;
  animation-duration: 25s;
  animation-delay: 3s;
}

.bubble:nth-child(3) {
  width: 60px;
  height: 60px;
  background: rgba(255, 159, 243, 0.5); /* Changed to 0.5 */
  top: 60%;
  left: 10%;
  animation-duration: 18s;
  animation-delay: 1s;
}

.bubble:nth-child(4) {
  width: 35px;
  height: 35px;
  background: rgba(254, 202, 87, 0.5); /* Changed to 0.5 */
  top: 80%;
  left: 30%;
  animation-duration: 22s;
  animation-delay: 5s;
}

.bubble:nth-child(5) {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.5); /* Changed to 0.5 */
  top: 15%;
  left: 80%;
  animation-duration: 30s;
  animation-delay: 2s;
}

.bubble:nth-child(6) {
  width: 25px;
  height: 25px;
  background: rgba(137, 219, 255, 0.5); /* Changed to 0.5 */
  top: 50%;
  left: 90%;
  animation-duration: 19s;
  animation-delay: 6s;
}

.bubble:nth-child(7) {
  width: 70px;
  height: 70px;
  background: rgba(255, 159, 243, 0.5); /* Changed to 0.5 */
  top: 75%;
  left: 70%;
  animation-duration: 28s;
  animation-delay: 8s;
}

.bubble:nth-child(8) {
  width: 15px;
  height: 15px;
  background: rgba(254, 202, 87, 0.5); /* Changed to 0.5 */
  top: 40%;
  left: 5%;
  animation-duration: 17s;
  animation-delay: 4s;
}

.bubble:nth-child(9) {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.5); /* Changed to 0.5 */
  top: 85%;
  left: 50%;
  animation-duration: 24s;
  animation-delay: 9s;
}

.bubble:nth-child(10) {
  width: 30px;
  height: 30px;
  background: rgba(137, 219, 255, 0.5); /* Changed to 0.5 */
  top: 5%;
  left: 55%;
  animation-duration: 26s;
  animation-delay: 7s;
}
