﻿/* Shukria Air */
@charset "UTF-8";
.topbar {
  background: var(--emerald-deep);
  color: var(--cream);
  padding: 0.6rem 0;
  font-size: 0.78em;
}
.topbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.topbar-info {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  justify-content: center;
}
.topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.92;
}
.topbar-info i {
  color: var(--gold-light);
}
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 246, 236, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(6, 60, 44, 0.04);
  will-change: transform;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
  gap: 1.8rem;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.logo-mark {
  width: clamp(2.6rem, 2.3rem + 1.2vw, 3.2rem);
  height: clamp(2.6rem, 2.3rem + 1.2vw, 3.2rem);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, var(--emerald-light), var(--emerald-deep));
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-family: 'Marcellus', serif;
  font-size: 1.2em;
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
}
.logo-text {
  line-height: 1.1;
}
.logo-text .name {
  font-family: 'Anek Bangla', 'Marcellus', serif;
  font-size: 1.2em;
  color: var(--emerald-deep);
  white-space: nowrap;
  font-weight: 600;
}
.nav-menu {
  display: flex;
  gap: 0.1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-menu a {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  font-size: 0.875em;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--radius-full);
  transition: color var(--ease-soft), background var(--ease-soft), font-weight var(--ease-soft);
  position: relative;
  white-space: nowrap;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0.15rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-menu a:hover {
  background: rgba(201, 163, 92, 0.1);
  color: var(--emerald-deep);
}
.nav-menu a:hover::after {
  width: 45%;
}
.nav-menu a.active {
  background: rgba(201, 163, 92, 0.15);
  color: var(--emerald-deep);
  font-weight: 700;
}
.nav-menu a.active::after {
  width: 55%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  padding-left: 1rem;
  border-left: 1px solid var(--border);
}
@media (max-width: 1120px) {
  .nav {
    gap: 1rem;
  }
  .nav-phone {
    display: none;
  }
  .nav-actions {
    gap: 0.5rem;
    padding-left: 0.8rem;
  }
  .nav-menu a {
    padding: 0.4rem 0.65rem;
    font-size: 0.82em;
  }
}
@media (max-width: 980px) {
  .nav {
    gap: 1rem;
  }
  .nav-actions {
    border-left: none;
    padding-left: 0;
    gap: 0.6rem;
  }
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--emerald-deep);
  font-size: 0.94em;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(10, 92, 68, 0.04);
  transition: background var(--ease-soft);
}
.nav-phone:hover {
  background: rgba(10, 92, 68, 0.08);
}
.nav-phone i {
  color: var(--gold-dark);
  font-size: 0.88em;
}
.menu-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--emerald-deep);
  color: var(--cream);
  font-size: 1.1em;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}
.hero {
  position: relative;
  padding: clamp(3rem, 5vw + 2rem, 6.5rem) 0;
  background:
    radial-gradient(ellipse at 75% 25%, rgba(201, 163, 92, 0.18), transparent 60%),
    linear-gradient(160deg, #0a3d2e 0%, #062418 55%, #04130d 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201, 163, 92, 0.08), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(201, 163, 92, 0.06), transparent 35%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' fill='none' stroke='%23c9a35c' stroke-opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(201, 163, 92, 0.15);
  border: 1px solid rgba(201, 163, 92, 0.35);
  color: var(--gold-light);
  font-size: 0.82em;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}
.hero-eyebrow .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 163, 92, 0.2);
  animation: pulse 2.5s ease-in-out infinite;
}
.hero h1 {
  font-size: 3em;
  margin-bottom: 0.7rem;
  color: #fff;
}
.hero h1 .accent {
  color: var(--gold-light);
  font-style: italic;
  display: inline-block;
}
.hero .lead {
  font-size: 1.05em;
  color: rgba(250, 246, 236, 0.85);
  max-width: 62ch;
  margin-bottom: 1.2rem;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: 'Anek Bangla', sans-serif;
  font-size: 1.8em;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.84em;
  letter-spacing: 0.02em;
  color: rgba(250, 246, 236, 0.7);
  margin-top: 0.4rem;
  font-weight: 500;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: visible;
}
.kaaba-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.kaaba-glow {
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(201, 163, 92, 0.4), transparent 60%);
  filter: blur(40px);
}
.kaaba-img {
  position: relative;
  width: min(85%, 380px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1.5rem;
  border: 2px solid rgba(201, 163, 92, 0.3);
  animation: gentle-glow 6s ease-in-out infinite;
}
.floating-card {
  position: absolute;
  background: rgba(250, 246, 236, 0.97);
  color: var(--ink);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 77, 58, 0.08);
  font-size: 0.78em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: float 4s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  z-index: 2;
}
.floating-card:hover {
  transform: scale(1.05);
  z-index: 10;
}
.floating-card .icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-size: 0.85em;
}
.floating-card-1 {
  top: 6%;
  left: 2%;
}
.floating-card-2 {
  bottom: 8%;
  right: 2%;
  animation-delay: -2s;
}
.floating-card strong {
  display: block;
  font-size: 0.88em;
  font-family: 'Anek Bangla', sans-serif;
  font-weight: 600;
}
.floating-card small {
  color: var(--muted);
}
.how-section {
  background:
    linear-gradient(180deg, rgba(6, 60, 44, 0.93), rgba(6, 60, 44, 0.97)),
    radial-gradient(ellipse at 30% 20%, rgba(201, 163, 92, 0.2), transparent 60%);
  color: var(--cream);
  padding: clamp(3rem, 5vw + 1.5rem, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='%23c9a35c' stroke-opacity='0.06'%3E%3Cpath d='M40 5l35 35-35 35L5 40z'/%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.how-inner {
  position: relative;
  z-index: 2;
}
.how-section h2 {
  font-size: 2.4em;
  color: #fff;
  margin-bottom: 0.8rem;
}
.how-section .sub {
  color: rgba(250, 246, 236, 0.7);
  max-width: 56ch;
  margin: 0 auto;
  font-size: 1em;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.step-card {
  position: relative;
  padding: 1.8rem 1.3rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 163, 92, 0.12);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color 0.35s, background 0.35s;
}
.step-card:hover {
  background: rgba(201, 163, 92, 0.06);
  border-color: rgba(201, 163, 92, 0.4);
}
.step-num {
  position: absolute;
  top: -0.6rem;
  right: 1rem;
  font-family: 'Anek Bangla', sans-serif;
  font-size: 2em;
  font-weight: 700;
  color: rgba(201, 163, 92, 0.3);
}
.step-icon {
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 163, 92, 0.2), rgba(201, 163, 92, 0.05));
  border: 1px solid rgba(201, 163, 92, 0.3);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 1.25em;
}
.step-card h3 {
  color: #fff;
  font-size: 1.1em;
  margin-bottom: 0.5rem;
}
.step-card p {
  color: rgba(250, 246, 236, 0.7);
  font-size: 0.88em;
  line-height: 1.55;
}
.packages { padding: clamp(3.5rem, 6vw + 1rem, 6rem) 0; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%); position: relative; }
.packages h2 { font-size: 2.4em; color: var(--emerald-deep); margin-bottom: 0.8rem; text-align: center; }
.packages .section-sub, .section-sub { text-align: center; color: var(--ink-soft); max-width: 60ch; margin: 0 auto 3rem; font-size: 1em; }
.packages-meta { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.pkg-meta-pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.1rem; border-radius: var(--radius-full); background: #fff; border: 1px solid var(--border); color: var(--emerald-deep); font-size: 0.85em; font-weight: 600; }
.pkg-meta-pill i { color: var(--gold-dark); }
.packages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.pkg-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem 1.8rem 1.8rem; display: flex; flex-direction: column; position: relative; transition: border-color var(--ease-out); }
.pkg-card:hover { border-color: rgba(201, 163, 92, 0.35); }
.pkg-card.featured { border-color: rgba(201, 163, 92, 0.35); border-width: 2px; }
.pkg-badge { font-size: 0.78em; font-weight: 700; color: var(--emerald); letter-spacing: 0.08em; margin-bottom: 1rem; display: block; }
.pkg-popular { position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--emerald-deep); font-size: 0.7em; font-weight: 700; padding: 0.25rem 1rem; border-radius: var(--radius-full); white-space: nowrap; }
.pkg-price-area { display: inline-flex; align-items: baseline; gap: 0.3rem; flex-wrap: wrap; margin-bottom: 1rem; background: linear-gradient(180deg, rgba(10,92,68,0.03) 0%, rgba(201,163,92,0.06) 100%); padding: 0.7rem 1.2rem; border-radius: var(--radius-lg); border: 1px solid rgba(201,163,92,0.12); width: fit-content; max-width: 100%; }
.pkg-currency { font-size: 1em; font-weight: 700; color: var(--gold-dark); }
.pkg-amount { font-size: 2.4em; font-weight: 800; color: var(--emerald-deep); line-height: 1; }
.pkg-range { font-size: 0.8em; color: var(--muted); }
.pkg-per { font-size: 0.8em; color: var(--muted); }
.pkg-features { flex: 1; margin-bottom: 1.4rem; display: flex; flex-direction: column; gap: 0.45rem; }
.pkg-features li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.88em; color: var(--ink-soft); line-height: 1.45; }
.pkg-features i { color: var(--emerald); font-size: 0.8em; margin-top: 0.2rem; flex-shrink: 0; }
.pkg-cta { width: 100%; }
@media (max-width: 880px) { .packages-grid { grid-template-columns: 1fr; } .pkg-popular { top: -0.6rem; font-size: 0.68em; padding: 0.22rem 0.85rem; } }
.why {
  padding: clamp(3.5rem, 6vw + 1rem, 6rem) 0;
  background: var(--cream);
  position: relative;
}
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.why-content h2 {
  font-size: 2.3em;
  margin-bottom: 1.2rem;
  color: var(--emerald-deep);
}
.why-content .lead {
  color: var(--ink-soft);
  font-size: 1em;
  margin-bottom: 1.5rem;
}
.why-features {
  margin-top: 1.5rem;
}
.why-features li {
  display: flex;
  gap: 0.9rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed var(--border);
  color: var(--ink-soft);
  font-size: 0.95em;
}
.why-features li:last-child {
  border-bottom: none;
}
.why-features i {
  color: var(--emerald);
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.why-features strong {
  color: var(--emerald-deep);
}
.why-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat-card {
  background: linear-gradient(160deg, #eaf3ee, #d8e8df);
  border: 1px solid rgba(10, 92, 68, 0.12);
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.3rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease-out);
}
.stat-card:hover {
  border-color: rgba(201, 163, 92, 0.3);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 163, 92, 0.18), transparent 70%);
}
.stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--emerald);
  font-size: 1.3em;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}
.stat-num {
  font-family: 'Anek Bangla', sans-serif;
  font-size: 2.3em;
  font-weight: 700;
  color: var(--emerald-deep);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-num .suffix {
  color: var(--gold-dark);
}
.stat-label {
  font-size: 0.9em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.stat-meta {
  font-size: 0.78em;
  color: var(--muted);
}
.process {
  padding: clamp(3.5rem, 6vw + 1rem, 6rem) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  position: relative;
}
.process h2 {
  font-size: 2.4em;
  color: var(--emerald-deep);
  margin-bottom: 0.8rem;
  text-align: center;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  position: relative;
}
.process-step:not(:last-child)::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 1.2rem;
  right: -0.7rem;
  color: rgba(201, 163, 92, 0.35);
  font-size: 0.8em;
  z-index: 2;
  pointer-events: none;
}
.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.process-step .num {
  width: 3.6rem;
  height: 3.6rem;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(201, 163, 92, 0.3);
  display: grid;
  place-items: center;
  font-family: 'Anek Bangla', sans-serif;
  font-size: 1.3em;
  font-weight: 700;
  color: var(--emerald-deep);
  position: relative;
  transition: transform var(--ease-out), background var(--ease-out), color var(--ease-out), border-color var(--ease-out);
}
.process-step .num::after {
  display: none;
}
.process-step:hover .num {
  transform: scale(1.08);
  background: var(--emerald-deep);
  color: var(--gold-light);
  border-color: var(--emerald-deep);
}
.process-step h3 {
  font-size: 1.05em;
  color: var(--emerald-deep);
  margin-bottom: 0.6rem;
  padding: 0 0.4rem;
}
.process-step p {
  font-size: 0.85em;
  color: var(--ink-soft);
  padding: 0 0.5rem;
  line-height: 1.55;
}
.affiliations {
  padding: clamp(3.5rem, 6vw + 1rem, 6rem) 0;
  background: #fff;
}
.affiliations h2 {
  font-size: 2.4em;
  color: var(--emerald-deep);
  text-align: center;
  margin-bottom: 0.6rem;
}
.affiliations .section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 3rem;
  font-size: 1em;
}
.aff-block {
  margin-bottom: 2.5rem;
}
.aff-block:last-child {
  margin-bottom: 0;
}
.aff-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.aff-title h3 {
  font-size: 1.2em;
  color: var(--emerald-deep);
}
.aff-title .line {
  flex: 1;
  min-width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.aff-title .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--cream-warm);
  color: var(--gold-dark);
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.aff-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.aff-logo {
  aspect-ratio: 3 / 2;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.8rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.aff-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(201, 163, 92, 0.06));
  opacity: 0;
  transition: opacity 0.3s;
}
.aff-logo:hover {
  border-color: rgba(201, 163, 92, 0.3);
}
.aff-logo:hover::before {
  opacity: 1;
}
.aff-logo .icon {
  font-size: 1.5em;
  color: var(--emerald);
  margin-bottom: 0.4rem;
}
.aff-logo-img {
  width: auto;
  height: 2.4rem;
  max-width: 90%;
  object-fit: contain;
  margin-bottom: 0.85rem;
  display: block;
}
.aff-logo .name {
  font-family: 'Anek Bangla', sans-serif;
  font-size: 0.82em;
  color: var(--emerald-deep);
  line-height: 1.15;
  font-weight: 500;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
}
.faqs {
  padding: clamp(3.5rem, 6vw + 1rem, 6rem) 0;
  background: linear-gradient(180deg, var(--cream-warm), var(--cream));
}
.faqs-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.faqs-intro h2 {
  font-size: 2.4em;
  color: var(--emerald-deep);
  margin-bottom: 1rem;
}
.faqs-intro p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-size: 1em;
}
.faqs-help {
  background: var(--emerald-deep);
  color: var(--cream);
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 1rem;
  align-items: center;
}
.faqs-help .icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(201, 163, 92, 0.18);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.faqs-help .text {
  font-size: 0.9em;
}
.faqs-help .text strong {
  display: block;
  font-family: 'Anek Bangla', sans-serif;
  font-size: 1.1em;
  margin-bottom: 0.2rem;
  font-weight: 700;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--ease-out);
}
.faq-item.open {
  border-color: rgba(201, 163, 92, 0.3);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--emerald-deep);
  font-size: 0.98em;
  width: 100%;
  text-align: left;
}
.faq-q .arrow {
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--cream);
  color: var(--emerald);
  display: grid;
  place-items: center;
  transition: transform var(--ease-out), background var(--ease-out), color var(--ease-out);
}
.faq-item.open .arrow {
  transform: rotate(180deg);
  background: var(--gold);
  color: #fff;
}
.faq-a {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  padding: 0 1.3rem;
  color: var(--ink-soft);
  font-size: 0.92em;
  line-height: 1.6;
}
.faq-item.open .faq-a {
  padding: 0 1.3rem 1.3rem;
}
.cta {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background:
    linear-gradient(135deg, rgba(6, 60, 44, 0.95), rgba(4, 30, 22, 0.95)),
    radial-gradient(circle at 20% 30%, rgba(201, 163, 92, 0.3), transparent 60%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 5l35 35-35 35L5 40z' fill='none' stroke='%23c9a35c' stroke-opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}
.cta h2 {
  font-size: 2.2em;
  color: #fff;
  margin-bottom: 0.6rem;
}
.cta p {
  color: rgba(250, 246, 236, 0.8);
  font-size: 1.02em;
  max-width: 50ch;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}
.cta-phone {
  font-family: 'Anek Bangla', sans-serif;
  font-size: 1.9em;
  font-weight: 700;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.cta-phone i {
  font-size: 0.7em;
}
.footer {
  background: #031a12;
  color: rgba(250, 246, 236, 0.7);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer .logo-text .name {
  color: var(--cream);
}
.footer-col h4 {
  color: var(--gold-light);
  font-family: 'Anek Bangla', sans-serif;
  font-size: 1.05em;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col p {
  font-size: 0.9em;
  margin-top: 1rem;
  line-height: 1.7;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul a {
  font-size: 0.88em;
  color: rgba(250, 246, 236, 0.65);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-col ul a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.footer-contact li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.88em;
  margin-bottom: 0.7rem;
}
.footer-contact i {
  color: var(--gold);
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(250, 246, 236, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82em;
  color: rgba(250, 246, 236, 0.5);
}
.footer-social {
  display: flex;
  gap: 0.6rem;
}
.footer-social a {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(250, 246, 236, 0.08);
  display: grid;
  place-items: center;
  color: var(--cream);
  font-size: 0.85em;
  transition: background 0.25s, transform 0.25s, color 0.25s;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--emerald-deep);
  transform: translateY(-2px);
}
.whatsapp-float {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6em;
  z-index: 9999;
}
.whatsapp-float::after {
  content: 'সাহায্য লাগবে?';
  position: absolute;
  right: 4.2rem;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--ink);
  font-family: 'Anek Bangla', sans-serif;
  font-size: 0.48em;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.5rem 0.9rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  pointer-events: none;
}
.testimonials {
  padding: clamp(3.5rem, 6vw + 1rem, 6rem) 0;
  background: #fff;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  text-align: left;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.82em;
  margin-bottom: 0.8rem;
}
.testimonial-card p {
  font-size: 0.92em;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 0.8rem;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--emerald-deep);
  font-size: 0.88em;
  font-weight: 600;
}
.testimonial-dots {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.testimonial-dots .dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.testimonial-dots .dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
@media (max-width: 880px) {
  .testimonial-grid {
    display: flex;
    overflow: hidden;
    scroll-snap-type: x mandatory;
  }
  .testimonial-card {
    min-width: 100%;
    scroll-snap-align: start;
  }
  .testimonial-dots {
    display: flex;
  }
}
.countdown-bar {
  text-align: center;
  margin: 0 auto 2rem;
  padding: 0.7rem 1.5rem;
  background: var(--emerald-deep);
  color: var(--gold-light);
  border-radius: var(--radius-full);
  display: table;
  font-size: 0.9em;
  font-weight: 500;
}
.countdown-bar i {
  margin-right: 0.4rem;
}
.countdown-bar strong {
  color: #fff;
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}
.cta-form input,
.cta-form textarea {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: inherit;
  font-size: 0.92em;
  outline: none;
  transition: border-color var(--ease-soft);
}
.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}
.cta-form input:focus,
.cta-form textarea:focus {
  border-color: var(--gold-light);
}
.cta-form .btn {
  align-self: flex-start;
}
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--emerald-deep);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 0.9em;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  box-shadow: 0 2px 12px rgba(6,60,44,0.2);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 0.7rem 1rem;
  z-index: 9997;
  border-top: 1px solid var(--border);
  gap: 0.6rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}
.mobile-cta-bar .btn {
  flex: 1;
  font-size: 0.85em;
  padding: 0.7rem 1rem;
}
@media (max-width: 980px) {
  .mobile-cta-bar {
    display: flex;
  }
  .whatsapp-float {
    bottom: 5.5rem;
  }
  .back-to-top {
    bottom: 5.5rem;
  }
}
#preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99999;
  display: grid;
  place-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-spinner {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@media (max-width: 980px) {
  .nav-phone {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 0 4%;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
    z-index: 999;
    will-change: max-height, opacity;
  }
  .nav-menu.open {
    max-height: 500px;
    opacity: 1;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .nav-menu li {
    width: 100%;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .nav-menu.open li {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-menu.open li:nth-child(1) { transition-delay: 0.03s; }
  .nav-menu.open li:nth-child(2) { transition-delay: 0.06s; }
  .nav-menu.open li:nth-child(3) { transition-delay: 0.09s; }
  .nav-menu.open li:nth-child(4) { transition-delay: 0.12s; }
  .nav-menu.open li:nth-child(5) { transition-delay: 0.15s; }
  .nav-menu.open li:nth-child(6) { transition-delay: 0.18s; }
  .nav-menu.open li:nth-child(7) { transition-delay: 0.21s; }
  .nav-menu.open li:nth-child(8) { transition-delay: 0.24s; }
  .nav-menu a {
    width: 100%;
    padding: 1rem;
    border-radius: 0.6rem;
    font-size: 1.05em;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
  }
  .nav-menu li:last-child a {
    border-bottom: none;
  }
  .nav-menu a::after {
    display: none;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .process-step:not(:last-child)::before {
    top: 1.2rem;
    right: -0.5rem;
    font-size: 0.7em;
  }
}
@media (max-width: 880px) {
  .hero h1 { font-size: 2.2em; }
  .hero .lead { font-size: 0.95em; max-width: 100%; }
  .hero-stat .num { font-size: 1.4em; }
  .hero-stat .lbl { font-size: 0.76em; }
  .how-section h2 { font-size: 1.8em; }
  .how-section .sub { font-size: 0.9em; }
  .step-card h3 { font-size: 1em; }
  .step-card p { font-size: 0.82em; }
  .step-num { font-size: 1.5em; }
  .packages h2,
  .process h2,
  .affiliations h2,
  .faqs-intro h2 { font-size: 1.8em; }
  .section-sub,
  .process .section-sub { font-size: 0.9em; }
  .why-content h2 { font-size: 1.75em; }
  .why-content .lead { font-size: 0.9em; }
  .why-features li { font-size: 0.88em; }
  .stat-num { font-size: 1.6em; }
  .pkg-name { font-size: 1.25em; }
  .pkg-price .amount { font-size: 1.5em; }
  .pkg-features li { font-size: 0.85em; }
  .cta h2 { font-size: 1.7em; }
  .cta p { font-size: 0.92em; }
  .cta-phone { font-size: 1.5em; }
  .packages h2,
  .process h2,
  .affiliations h2,
  .faqs-intro h2,
  .faqs-intro p,
  .how-section h2,
  .section-head,
  .section-head h2,
  .section-head .sub,
  .why-content h2,
  .why-content .lead,
  .cta-inner,
  .cta h2,
  .cta p {
    text-align: left !important;
  }
  .packages .section-sub,
  .section-sub,
  .affiliations .section-sub,
  .how-section .sub {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  .section-eyebrow {
    justify-content: flex-start !important;
  }
  .section-eyebrow::before,
  .section-eyebrow::after {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero-content {
    max-width: 100%;
    margin: 0;
  }
  .hero-eyebrow,
  .hero-ctas,
  .hero-stats {
    justify-content: flex-start;
  }
  .hero-visual {
    display: block;
    max-width: 340px;
    margin: 2rem auto 0;
    aspect-ratio: 1 / 1;
    width: 100%;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .faqs-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .aff-logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .countdown-bar {
    display: block;
    border-radius: var(--radius-md);
    text-align: left;
    font-size: 0.82em;
  }
  .packages-meta {
    justify-content: flex-start;
    gap: 0.6rem;
  }
}
@media (max-width: 760px) {
  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta p {
    margin-inline: auto;
  }
  .cta-actions {
    align-items: center;
  }
  .cta h2 { font-size: 1.6em; }
  .cta-phone { font-size: 1.4em; }
}
@media (max-width: 560px) {
  .nav-actions .btn {
    padding: 0.55rem 1rem;
    font-size: 0.72em;
  }
}
@media (max-width: 520px) {
  .hero h1 { font-size: 1.8em; }
  .hero .lead { font-size: 0.88em; }
  .hero-eyebrow { font-size: 0.74em; }
  .hero-stat .num { font-size: 1.2em; }
  .how-section h2 { font-size: 1.5em; }
  .section-eyebrow { font-size: 0.74em; }
  .packages h2,
  .process h2,
  .affiliations h2,
  .faqs-intro h2 { font-size: 1.5em; }
  .why-content h2 { font-size: 1.45em; }
  .cta h2 { font-size: 1.4em; }
  .cta-phone { font-size: 1.3em; }
  .pkg-name { font-size: 1.15em; }
  .pkg-price .amount { font-size: 1.35em; }
  .stat-num { font-size: 1.4em; }
  .faq-q { font-size: 0.9em; }
  .faq-a { font-size: 0.85em; }
  .btn { font-size: 0.8em; }
  .packages h2,
  .process h2,
  .affiliations h2,
  .faqs-intro h2,
  .faqs-intro p,
  .how-section h2,
  .section-head,
  .section-head h2,
  .section-head .sub,
  .why-content h2,
  .why-content .lead,
  .cta-inner,
  .cta h2,
  .cta p,
  .packages .section-sub,
  .section-sub,
  .affiliations .section-sub,
  .how-section .sub {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  .section-eyebrow {
    justify-content: flex-start !important;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .process-step:not(:last-child)::before {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    top: auto;
    bottom: -0.15rem;
    left: 2.8rem;
    right: auto;
    font-size: 0.65em;
    color: rgba(201, 163, 92, 0.3);
    z-index: 2;
    pointer-events: none;
  }
  .process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-left: 1rem;
  }
  .process-step .num {
    margin: 0;
    flex-shrink: 0;
  }
  .process-step .step-content {
    display: flex;
    flex-direction: column;
  }
  .process-step h3,
  .process-step p {
    text-align: left;
    padding: 0;
  }
  .process-step p {
    margin-top: 0.3rem;
  }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.6em; }
  .hero .lead { font-size: 0.84em; }
  .hero-stat .num { font-size: 1.1em; }
  .hero-stat .lbl { font-size: 0.7em; }
  .floating-card {
    font-size: 0.7em;
    padding: 0.5rem 0.7rem;
    gap: 0.35rem;
  }
  .floating-card strong { font-size: 0.78em; }
  .floating-card .icon { width: 1.6rem; height: 1.6rem; font-size: 0.7em; }
  .floating-card-1 {
    left: 1%;
  }
  .floating-card-2 {
    right: 1%;
  }
  .aff-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}