 :root {
    --bg-main: #060e0d;
    --bg-card: rgba(15, 33, 30, 0.75);
    --border-gold: rgba(243, 176, 59, 0.3);
    --gold: #f3b03b;
    --gold-glow: rgba(243, 176, 59, 0.5);
    --teal-neon: #00ffd5;
    --text-primary: #ffffff;
    --text-secondary: #a3c2bd;
    --whatsapp-bg: #25d366;
    --telegram-bg: #229ed9;
    --radius-lg: 22px;
    --radius-md: 14px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Hind Siliguri', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }

  .wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
  a { text-decoration: none; color: inherit; }

  /* ---------- HEADER ---------- */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(6, 14, 13, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
  .logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Tiro Bangla', serif; font-size: 1.45rem; font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 15px var(--gold-glow);
  }
  .logo-icon {
    width: 40px; height: 40px; border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), #b87d19);
    display: flex; align-items: center; justify-content: center;
    color: #000; font-weight: 900; font-size: 1.25rem;
    box-shadow: 0 0 15px var(--gold-glow);
  }
  .nav-btn {
    background: linear-gradient(135deg, var(--telegram-bg), #0f74a6);
    color: #fff; padding: 10px 22px; border-radius: 100px;
    font-weight: 700; font-size: 0.9rem;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 18px rgba(34, 158, 217, 0.4);
    transition: all 0.3s ease;
  }
  .nav-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(34, 158, 217, 0.6); }

  /* ---------- HERO SECTION (UPDATED IMAGE & TEXT WIDTH) ---------- */
 .hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  background-color: #060e0d;
  overflow: hidden;
}

/* ব্যাকগ্রাউন্ড ইমেজের ফিক্সড লেআউট */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* পুরো সেকশনে সুন্দরভাবে ফিট করার জন্য */
  object-position: center top; /* ছবির ওপরের অংশ বা মুখ ঠিক রাখতে */
  opacity: 0.4; /* লেখার নিচে ছবি যেন বেশি ব্রাইট না লাগে, প্রয়োজনে কম বা বেশি করতে পারেন */
}

/* লেখার কনটেন্ট যেন ইমেজের উপরে থাকে */
.hero .wrap {
  position: relative;
  z-index: 2;
}
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(243, 176, 59, 0.15);
    border: 1px solid var(--border-gold);
    padding: 6px 20px; border-radius: 100px;
    font-size: 0.88rem; color: var(--gold); font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(243, 176, 59, 0.2);
  }
  .dot-ping {
    width: 9px; height: 9px; border-radius: 50%; background: var(--teal-neon);
    box-shadow: 0 0 10px var(--teal-neon);
    animation: pulse 1.5s infinite;
  }
  @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.3; transform: scale(1.3); } }

  /* Fixed Hero Title Lines & Width */
  .hero-title {
    font-family: 'Tiro Bangla', serif;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    line-height: 1.35; margin: 0 auto 20px; font-weight: 700;
    max-width: 820px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.9);
  }
  .hero-title span {
    background: linear-gradient(135deg, #ffffff 20%, var(--gold) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .hero-desc {
    font-size: 1.08rem; color: var(--text-secondary); max-width: 650px;
    margin: 0 auto 36px; font-weight: 400; text-shadow: 0 2px 10px rgba(0,0,0,0.9);
  }

  /* CALL TO ACTION BUTTONS */
  .cta-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
  .btn-main {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 32px; border-radius: 100px; font-weight: 700; font-size: 1.02rem;
    transition: all 0.3s ease; position: relative; overflow: hidden;
  }
  .btn-tg {
    background: linear-gradient(135deg, #229ed9, #1178a8); color: #fff;
    box-shadow: 0 10px 28px rgba(34, 158, 217, 0.45);
  }
  .btn-tg:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(34, 158, 217, 0.65); }
  
  .btn-wa {
    background: linear-gradient(135deg, #25d366, #128c3e); color: #021a0a;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  }
  .btn-wa:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6); }

  .hero-stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px; max-width: 800px; margin: 0 auto;
    background: var(--bg-card); border: 1px solid var(--border-gold);
    padding: 22px; border-radius: var(--radius-lg); backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
  }
  .stat-item b { display: block; font-size: 1.75rem; color: var(--gold); font-weight: 700; }
  .stat-item span { font-size: 0.85rem; color: var(--text-secondary); }

  /* ---------- SECTION HEADER ---------- */
  .section { padding: 80px 0; }
  .sec-head { text-align: center; max-width: 600px; margin: 0 auto 45px; }
  .sec-tag { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; display: block; }
  .sec-title { font-family: 'Tiro Bangla', serif; font-size: clamp(1.8rem, 3.2vw, 2.4rem); color: #fff; }

  /* ---------- PRICING & MEMBERSHIP ---------- */
  .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
  .price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg); padding: 34px 28px;
    position: relative; transition: all 0.3s ease;
    backdrop-filter: blur(14px);
  }
  .price-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 20px 45px rgba(0,0,0,0.6); }
  .price-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(180deg, rgba(243, 176, 59, 0.12) 0%, var(--bg-card) 100%);
    box-shadow: 0 0 30px rgba(243, 176, 59, 0.15);
  }
  .card-badge {
    position: absolute; top: -14px; right: 24px;
    background: linear-gradient(135deg, var(--gold), #d48b13);
    color: #000; font-weight: 700; font-size: 0.75rem;
    padding: 5px 14px; border-radius: 100px;
    box-shadow: 0 4px 12px var(--gold-glow);
  }
  .price-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
  .price-amount { font-size: 2.2rem; font-weight: 800; color: var(--gold); margin-bottom: 16px; }
  .price-amount span { font-size: 0.88rem; color: var(--text-secondary); font-weight: 400; }
  
  .feature-list { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
  .feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--text-secondary); }
  .feature-list li::before { content: "✓"; color: var(--teal-neon); font-weight: bold; }

  /* ---------- PROFILES ---------- */
  .profile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
  .profile-card {
    background: var(--bg-card); border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08); overflow: hidden;
    transition: all 0.3s ease; position: relative;
  }
  .profile-card:hover { transform: translateY(-6px); border-color: var(--gold); }
  .profile-img-wrap { position: relative; height: 260px; overflow: hidden; }
  .profile-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
  .profile-card:hover .profile-img-wrap img { transform: scale(1.07); }
  
  .status-tag {
    position: absolute; top: 12px; left: 12px;
    background: rgba(6, 14, 13, 0.85); backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 255, 213, 0.3); color: var(--teal-neon);
    font-size: 0.72rem; padding: 4px 12px; border-radius: 100px;
    display: flex; align-items: center; gap: 6px; font-weight: 600;
  }
  .profile-details { padding: 18px; }
  .profile-name { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
  .profile-sub { font-size: 0.85rem; color: var(--text-secondary); }

  /* ---------- NEW SECTION: FAQ & SUPPORT ---------- */
  .faq-section {
    background: linear-gradient(180deg, transparent 0%, rgba(15, 33, 30, 0.4) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  .faq-accordion { max-width: 800px; margin: 0 auto 50px; display: flex; flex-direction: column; gap: 14px; }
  .faq-item {
    background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md); overflow: hidden; transition: all 0.3s ease;
  }
  .faq-item:hover { border-color: var(--border-gold); }
  .faq-question {
    padding: 18px 22px; font-weight: 600; font-size: 1.02rem;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; color: #fff;
  }
  .faq-question span { font-size: 1.3rem; color: var(--gold); transition: transform 0.3s ease; }
  .faq-answer {
    padding: 0 22px 18px; color: var(--text-secondary); font-size: 0.94rem; display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.04); padding-top: 12px;
  }
  .faq-item.active .faq-answer { display: block; }
  .faq-item.active .faq-question span { transform: rotate(45deg); }

  /* DIRECT CONTACT BOX */
  .support-box {
    background: linear-gradient(135deg, rgba(243, 176, 59, 0.15), rgba(15, 33, 30, 0.8));
    border: 1px solid var(--gold); border-radius: var(--radius-lg);
    padding: 36px 24px; text-align: center; max-width: 800px; margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  }
  .support-box h3 { font-family: 'Tiro Bangla', serif; font-size: 1.8rem; color: #fff; margin-bottom: 10px; }
  .support-box p { color: var(--text-secondary); margin-bottom: 24px; font-size: 1rem; }

  /* ---------- LIVE TOAST NOTIFICATION ---------- */
  .toast-notif {
    position: fixed; bottom: 24px; left: 24px; z-index: 999;
    background: rgba(15, 33, 30, 0.95);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(14px); border-radius: var(--radius-md);
    padding: 12px 20px; display: flex; align-items: center; gap: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.7);
    transform: translateY(120px); opacity: 0; transition: all 0.5s ease;
  }
  .toast-notif.active { transform: translateY(0); opacity: 1; }
  .toast-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: bold; color: #000; flex-shrink: 0; }
  .toast-text p { font-size: 0.88rem; font-weight: 600; color: #fff; }
  .toast-text span { font-size: 0.75rem; color: var(--teal-neon); }

  /* ---------- FLOATING BUTTONS ---------- */
  .float-chat-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 1000; display: flex; flex-direction: column; gap: 12px; }
  .float-btn {
    width: 58px; height: 58px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
  }
  .float-btn:hover { transform: scale(1.1); }
  .float-btn.tg { background: var(--telegram-bg); }
  .float-btn.wa { background: var(--whatsapp-bg); color: #000; }

  /* ---------- ONE-LINE FOOTER ---------- */
  footer {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(3, 8, 7, 0.95);
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-secondary);
  }
  footer span { color: var(--gold); font-weight: 600; }

  @media (max-width: 768px) {
    .hero { padding: 130px 0 60px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .toast-notif { left: 12px; right: 12px; bottom: 90px; }
	 }