/* ==========================================================================
   ALNIKAAHMUBARAK — PREMIUM MATRIMONIAL WEBSITE
   Main Stylesheet
   Design tokens: Emerald & Gold, Playfair Display + Poppins
   Signature motif: the Mihrab Arch (used for the hero frame, profile
   cards and the halal-process cards) + an 8-point Islamic star lattice
   used as an ambient background pattern.
   ========================================================================== */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand palette (from brief) */
  --color-primary: #0E5E4E;
  --color-primary-dark: #08362C;
  --color-primary-light: #146F5C;
  --color-secondary: #D4AF37;
  --color-accent: #CFAF57;
  --color-bg: #F8F8F5;
  --color-white: #FFFFFF;
  --color-text: #222222;
  --color-text-soft: #5B6461;
  --color-gray-light: #F2F2F2;

  /* Gradients */
  --gradient-emerald: linear-gradient(135deg, #0E5E4E 0%, #0A4438 100%);
  --gradient-gold: linear-gradient(135deg, #E9C766 0%, #D4AF37 55%, #B4892A 100%);
  --gradient-veil: linear-gradient(180deg, rgba(8, 54, 44, .92) 0%, rgba(14, 94, 78, .75) 55%, rgba(14, 94, 78, .55) 100%);

  /* Typography */
  --font-display: 'Poppins', serif;
  --font-body: 'Poppins', sans-serif;

  /* Radii & shadow */
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 40px rgba(14, 94, 78, .10);
  --shadow-card: 0 18px 45px rgba(14, 54, 44, .14);
  --shadow-gold: 0 12px 30px rgba(212, 175, 55, .35);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .45s;
}

/* ---------- 2. RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: var(--font-display);
  color: var(--color-primary-dark);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--dur) var(--ease);
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--color-secondary);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

.container-xl {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad {
  padding: 70px 0;
}

.section-pad-sm {
  padding: 70px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--color-secondary);
}

.section-heading {
  font-size: clamp(28px, 3.4vw, 44px);
  margin-bottom: 16px;
}

.section-sub {
  max-width: 640px;
  color: var(--color-text-soft);
  font-size: 16px;
}

.text-center-wrap {
  max-width: 700px;
  margin: 0 auto;
}

/* Gold underline flourish */
.flourish {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin: 18px auto 0;
}

.flourish span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
}

.flourish .line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
  border-radius: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(212, 175, 55, .45);
  color: var(--color-primary-dark);
}

.btn-outline-light {
  background: transparent;
  color: #000000;
  border-color: rgba(0, 0, 0, 0.55);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

.btn-primary-solid {
  background: linear-gradient(135deg, #E9C766 0%, #D4AF37 55%, #B4892A 100%);
  color: #fff;
}

.btn-primary-solid:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.btn-ghost-primary {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-ghost-primary:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 13px;
}

/* ---------- 3. ISLAMIC LATTICE PATTERN (signature ambient texture) ---------- */
.lattice-bg {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cg fill='none' stroke='%23D4AF37' stroke-opacity='0.18' stroke-width='1'%3E%3Cpath d='M45 2 L83 45 L45 88 L7 45 Z'/%3E%3Ccircle cx='45' cy='45' r='16'/%3E%3Cpath d='M45 2 L45 88 M2 45 L88 45'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 90px 90px;
}

/* ---------- 4. TOP BAR ---------- */
.topbar {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  padding: 9px 0;
  position: relative;
  z-index: 1050;
}

.topbar a {
  color: rgba(255, 255, 255, .85);
}

.topbar a:hover {
  color: var(--color-secondary);
}

.topbar .topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-right: 24px;
}

.topbar .topbar-item i {
  color: var(--color-secondary);
}

.topbar-socials a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  margin-left: 8px;
  font-size: 12px;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.topbar-socials a:hover {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* ---------- 5. HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: transparent;
  padding: 3px 0;
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.site-header.is-scrolled {
  background: rgba(248, 248, 245, .92);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(14, 54, 44, .08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: #08362c;
  transition: color var(--dur) var(--ease);
}

.site-header.is-scrolled .brand {
  color: var(--color-primary-dark);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  font-size: 20px;
  box-shadow: var(--shadow-gold);
}

.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: .2em;
  font-weight: 500;
  color: var(--color-secondary);
  text-transform: uppercase;
}

.main-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  color: rgba(0, 0, 0, 0.9);
  margin: 0 4px;
  padding: 8px 5px !important;
  position: relative;
}

.site-header.is-scrolled .main-nav .nav-link {
  color: var(--color-text);
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--color-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  transform: scaleX(1);
}

.main-nav .nav-link:hover {
  color: var(--color-secondary);
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.navbar-toggler .bi {
  font-size: 26px;
  color: #000000;
}

.site-header.is-scrolled .navbar-toggler .bi {
  color: var(--color-primary-dark);
}

@media (min-width:992px) {
  .navbar-collapse {
    background: transparent !important;
  }
}

@media (max-width:991.98px) {
  .navbar-collapse {
    background: var(--color-white);
    margin-top: 16px;
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow-card);
  }

  .main-nav .nav-link {
    color: var(--color-text) !important;
  }

  .main-nav .nav-link::after {
    display: none;
  }
}

/* ---------- 6. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* background: var(--gradient-emerald); */
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 70px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='%23D4AF37' stroke-opacity='0.14' stroke-width='1'%3E%3Cpath d='M70 4 L130 70 L70 136 L10 70 Z'/%3E%3Ccircle cx='70' cy='70' r='26'/%3E%3Cpath d='M70 4 L70 136 M4 70 L136 70'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 140px 140px;
  opacity: .5;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, .35), transparent 65%);
  filter: blur(10px);
  animation: float 9s ease-in-out infinite;
}

.hero-blob.b1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -100px;
}

.hero-blob.b2 {
  width: 280px;
  height: 280px;
  bottom: -80px;
  left: -60px;
  animation-delay: -3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-22px) translateX(14px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  color: #000000;
  font-size: clamp(34px, 4.6vw, 58px);
  margin-bottom: 22px;
}

.hero-content h1 em {
  color: var(--color-secondary);
  font-style: normal;
}

.hero-content p.lead-text {
  color: rgba(0, 0, 0, 0.82);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(0, 0, 0, 0.85);
}

.hero-trust-item i {
  color: var(--color-secondary);
  font-size: 18px;
}

/* Hero visual: mihrab arch frame */
.hero-visual {
  position: relative;
  z-index: 2;
}

.arch-frame {
  position: relative;
  width: min(420px, 86%);
  margin: 0 auto;
  aspect-ratio: 3/4;
  border-radius: 220px 220px 20px 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04));
  border: 1px solid rgba(212, 175, 55, .5);
  padding: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
}

.arch-frame-inner {
  width: 100%;
  height: 100%;
  border-radius: 200px 200px 10px 10px;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.arch-frame-inner .couple-illustration {
  width: 80%;
  opacity: .92;
}

.arch-frame-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .4), transparent 60%); */
}

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 5.5s ease-in-out infinite;
}

.floating-card i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-emerald);
  color: var(--color-secondary);
  font-size: 16px;
}

.floating-card .fc-title {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--color-primary-dark);
}

.floating-card .fc-sub {
  font-size: 11px;
  color: var(--color-text-soft);
}

.fc-1 {
  top: 6%;
  left: 0%;
  animation-delay: -1s;
}

.fc-2 {
  bottom: 16%;
  right: -10%;
  animation-delay: -2.5s;
}

.fc-3 {
  bottom: -4%;
  left: 6%;
  animation-delay: -4s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-cue .dot {
  width: 6px;
  height: 10px;
  border-radius: 6px;
  background: var(--color-secondary);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(8px);
    opacity: .4;
  }
}

/* ---------- 7. REVEAL ON SCROLL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

/* ---------- 8. ABOUT ---------- */
.about-media {
  position: relative;
}

.about-media .arch-frame {
  width: 100%;
  aspect-ratio: 4/4.6;
}

.about-badge {
  position: absolute;
  bottom: -26px;
  right: -18px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 20px 26px;
  text-align: center;
  border: 1px solid var(--color-gray-light);
}

.about-badge .num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--color-primary);
  font-weight: 700;
}

.about-badge .lbl {
  font-size: 11.5px;
  letter-spacing: .06em;
  color: var(--color-text-soft);
  text-transform: uppercase;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--color-text);
}

.about-list li i {
  color: var(--color-secondary);
  font-size: 18px;
  margin-top: 2px;
}

/* ---------- 9. WHY CHOOSE US ---------- */
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(14, 94, 78, .06);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14, 94, 78, .09), rgba(212, 175, 55, .16));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
  color: var(--color-primary);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-emerald);
  color: var(--color-secondary);
}

.feature-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14.5px;
  margin-bottom: 0;
}

/* ---------- 10. SERVICES ---------- */
.service-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.service-top {
  background: var(--gradient-emerald);
  padding: 32px 26px 46px;
  position: relative;
  color: #fff;
}

.service-top .lattice-bg {
  position: absolute;
  inset: 0;
  opacity: .6;
}

.service-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--color-secondary);
  position: relative;
}

.service-top h3 {
  color: #fff;
  font-size: 20px;
  margin: 10px 0 0;
  position: relative;
}

.service-icon-float {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-primary-dark);
  position: absolute;
  bottom: -26px;
  left: 26px;
  box-shadow: var(--shadow-gold);
}

.service-body {
  padding: 44px 26px 26px;
}

.service-body p {
  font-size: 14.5px;
}

.service-link {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link i {
  transition: transform var(--dur) var(--ease);
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* ---------- 11. CONNECT TIMELINE ---------- */
.timeline-wrap {
  position: relative;
  padding-top: 20px;
}

.timeline-thread {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-secondary) 0 10px, transparent 10px 20px);
  display: none;
}

@media (min-width:992px) {
  .timeline-thread {
    display: block;
  }
}

.timeline-step {
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.timeline-bead {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--color-white);
  border: 2px solid var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-primary);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.timeline-step:hover .timeline-bead {
  background: var(--gradient-gold);
  color: var(--color-primary-dark);
  transform: scale(1.08);
}

.timeline-step h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.timeline-step p {
  font-size: 13px;
  margin: 0;
}

/* ---------- 12. HALAL PROCESS ---------- */
.halal-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 0;
  text-align: center;
  height: 100%;
  overflow: visible;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  padding-top: 44px;
  padding-bottom: 30px;
  padding-inline: 22px;
  position: relative;
  margin-top: 34px;
}

.halal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.halal-arch {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 68px;
  border-radius:50px;
  background: var(--gradient-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 26px;
  box-shadow: var(--shadow-card);
}

.halal-card h3 {
  font-size: 17px;
  margin: 16px 0 8px;
}

.halal-card p {
  font-size: 13.5px;
  margin: 0;
}

/* ---------- 13. PROFILES ---------- */
.section-dark {
  background: var(--gradient-emerald);
  position: relative;
  color: #fff;
}

.section-dark .lattice-bg {
  position: absolute;
  inset: 0;
  opacity: .5;
}

.section-dark .section-heading {
  color: #fff;
}

.section-dark .section-sub {
  color: rgba(255, 255, 255, .75);
}

.profile-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  height: 100%;
}

.profile-media {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.profile-media .avatar-fill {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #fff;
  transition: transform .6s var(--ease);
}

.profile-card:hover .avatar-fill {
  transform: scale(1.08);
}

.profile-verified {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gradient-gold);
  color: var(--color-primary-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: var(--shadow-gold);
}

.profile-body {
  padding: 22px 22px 24px;
}

.profile-body h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.profile-meta {
  list-style: none;
  padding: 0;
  margin: 12px 0 18px;
  font-size: 13.5px;
  color: var(--color-text-soft);
}

.profile-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.profile-meta i {
  color: var(--color-primary);
  width: 16px;
}

/* ---------- 14. SUCCESS STORIES ---------- */
.story-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.story-media {
  height: 210px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 44px;
}

.story-date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(8, 54, 44, .75);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11.5px;
  padding: 6px 12px;
  border-radius: 20px;
}

.story-body {
  padding: 24px;
}

.story-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.story-body p {
  font-size: 14px;
}

/* ---------- 15. TESTIMONIALS (glassmorphism) ---------- */
.testimonial-section {
  position: relative;
  background: var(--gradient-emerald);
  overflow: hidden;
}

.testimonial-section .lattice-bg {
  position: absolute;
  inset: 0;
  opacity: .4;
}

.testimonial-card {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  color: #fff;
  height: 100%;
}

.testimonial-stars {
  color: var(--color-secondary);
  font-size: 14px;
  margin-bottom: 14px;
}

.testimonial-card p {
  color: rgba(255, 255, 255, .88);
  font-size: 14.5px;
  font-style: italic;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  font-weight: 700;
}

.testimonial-person h5 {
  color: #fff;
  font-size: 14.5px;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
}

.testimonial-person span {
  font-size: 12px;
  color: rgba(255, 255, 255, .65);
}

/* ---------- 16. STATS / ACROSS PROFESSIONS ---------- */
.stat-block {
  text-align: center;
}

.stat-num {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-primary);
    font-size: clamp(32px, 4vw, 60px);
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2px;
    background: #ffffff;
    padding: 10px;
}

.stat-label {
    font-size: 20px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: .05em;
    background: linear-gradient(135deg, #E9C766 0%, #D4AF37 55%, #B4892A 100%);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.chip {
  padding: 10px 20px;
  border-radius: 30px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  font-size: 13.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(14, 94, 78, .08);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.chip i {
  color: var(--color-secondary);
}

.chip:hover {
  background: var(--gradient-emerald);
  color: #fff;
  transform: translateY(-3px);
}

.chip:hover i {
  color: var(--color-secondary);
}

/* ---------- 17. BLOGS ---------- */
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.blog-media {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
}

.blog-tag {
  position: absolute;
  margin: 14px;
  background: var(--gradient-gold);
  color: var(--color-primary-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

.blog-body {
  padding: 22px 24px 26px;
}

.blog-meta {
  font-size: 12px;
  color: var(--color-text-soft);
  margin-bottom: 10px;
  display: flex;
  gap: 14px;
}

.blog-body h3 {
  font-size: 17.5px;
  margin-bottom: 10px;
}

.blog-body p {
  font-size: 14px;
}

/* ---------- 18. FAQ ---------- */
.accordion-item {
  border: none;
  margin-bottom: 14px;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--color-primary-dark);
  padding: 20px 24px;
  background: var(--color-white);
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-emerald);
  color: #fff;
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(1) sepia(1) saturate(4) hue-rotate(0deg);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--color-secondary);
}

.accordion-body {
  padding: 22px;
  font-size: 14.5px;
  color: var(--color-text-soft);
  background: var(--color-white);
}

/* ---------- 19. CTA BANNER ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gradient-emerald);
  padding: 70px 50px;
  text-align: center;
  color: #fff;
}

.cta-banner .lattice-bg {
  position: absolute;
  inset: 0;
  opacity: .5;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(26px, 3.4vw, 40px);
  position: relative;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, .8);
  position: relative;
  max-width: 560px;
  margin: 0 auto 30px;
}

.cta-banner .btn {
  position: relative;
}

/* ---------- 20. ENQUIRY FORM ---------- */
.enquiry-panel {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 46px;
  position: relative;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.form-control,
.form-select {
  border: 1.5px solid var(--color-gray-light);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14.5px;
  background: var(--color-bg);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .15);
  background: #fff;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #c0392b;
}

.invalid-feedback {
  font-size: 12px;
}

.form-control.is-valid,
.form-select.is-valid {
  border-color: var(--color-primary);
}

/* ---------- 21. CONTACT ---------- */
.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  height: 100%;
}

.contact-info-card i {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, rgba(14, 94, 78, .09), rgba(212, 175, 55, .16));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 20px;
}

.contact-info-card h4 {
  font-size: 15.5px;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 13.5px;
  margin: 0;
}

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  min-height: 320px;
  background: var(--gradient-emerald);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .75);
  text-align: center;
  padding: 30px;
}

.map-frame .lattice-bg {
  position: absolute;
  inset: 0;
  opacity: .4;
}

/* ---------- 22. FOOTER ---------- */
.site-footer {
  background: #062A22;
  color: rgba(255, 255, 255, .72);
  position: relative;
  overflow: hidden;
}

.site-footer .lattice-bg {
  position: absolute;
  inset: 0;
  opacity: .25;
}

.footer-top {
  padding: 80px 0 40px;
  position: relative;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand .brand-mark {
  width: 44px;
  height: 44px;
}

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 21px;
  color: #fff;
}

.site-footer p {
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
}

.footer-heading {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 22px;
  letter-spacing: .02em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: 5px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.footer-socials a:hover {
  background: var(--gradient-gold);
  color: var(--color-primary-dark);
  transform: translateY(-4px);
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 8px;
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  padding: 5px;
}

.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 16px;
  color: #fff;
  font-size: 13.5px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.newsletter-form button {
  border: none;
  background: var(--gradient-gold);
  color: var(--color-primary-dark);
  border-radius: 50px;
  padding: 0 20px;
  font-weight: 600;
  font-size: 13px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
  position: relative;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .55);
}

.footer-bottom a:hover {
  color: var(--color-secondary);
}

/* ---------- 23. FLOATING UTILITIES ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 12px 26px rgba(37, 211, 102, .45);
  z-index: 1200;
  animation: pulseWA 2.4s ease-in-out infinite;
}

@keyframes pulseWA {

  0%,
  100% {
    box-shadow: 0 12px 26px rgba(37, 211, 102, .45);
  }

  50% {
    box-shadow: 0 12px 26px rgba(37, 211, 102, .75), 0 0 0 10px rgba(37, 211, 102, .12);
  }
}

.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-gold);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------- 24. PRELOADER ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(212, 175, 55, .25);
  border-top-color: var(--color-secondary);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#preloader span {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ---------- 25. MISC ---------- */
.divider-gold {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .5), transparent);
  margin: 0;
}

.bg-soft-emerald {
  background:#b07b0917;
}
.journey{
    background: linear-gradient(180deg, #ffffff4a 0%, #f8f8f5 100%);
}


 
.call-float-btn{
    position: fixed;
    left: 26px;
    bottom: 100px; /* WhatsApp button ke upar ya niche adjust kar sakte ho */
    width: 58px;
    height: 58px;
    background: #f44336;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    z-index: 99999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    animation: callPulse 1.8s infinite;
    transition: 0.3s ease;
}

.call-float-btn:hover{
    background: #084298;
    color: #fff;
    transform: scale(1.08);
}

@keyframes callPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(255, 113, 113, 0.6);
    }
    70%{
        box-shadow: 0 0 0 18px rgba(13,110,253,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(13,110,253,0);
    }
}

@media (max-width:768px){
    .call-float-btn{
        width:55px;
        height:55px;
        left:15px;
        bottom:85px;
        font-size:24px;
    }
}




.anm-global-section{
    padding:60px 20px 60px;
    background:#f7f4ea;
    position:relative;
    overflow:hidden;
}

.anm-global-container{
    max-width:1140px;
    margin:auto;
}

.anm-global-heading{
    text-align:center;
    margin-bottom:60px;
}

.anm-global-heading span{
    display:inline-block;
    background:linear-gradient(135deg, #E9C766 0%, #D4AF37 55%, #B4892A 100%);
    color:#fff;
    padding:8px 22px;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

.anm-global-heading h2{
    margin:20px 0 18px;
    font-size:42px;
    line-height:1.3;
    color:#1d1d1d;
    font-weight:700;
}

.anm-global-heading p{
    max-width:720px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:30px;
}

.anm-global-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:28px;
}

.anm-country-box{
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(15px);
    border:1px solid rgba(212,175,55,.25);
    border-radius:22px;
    padding:35px 20px;
    text-align:center;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.anm-country-box::before{
    content:"";
    position:absolute;
    width:140%;
    height:4px;
    background:linear-gradient(90deg,#d4af37,#f8dc7b,#d4af37);
    left:-20%;
    top:0;
}

.anm-country-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.anm-country-icon{
    width:78px;
    height:78px;
    margin:auto;
    border-radius:50%;
    background:#fff8e3;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    margin-bottom:18px;
    box-shadow:0 8px 25px rgba(212,175,55,.2);
}

.anm-country-box h4{
    font-size:20px;
    color:#222;
    margin:0;
    font-weight:600;
}

/* Tablet */

@media(max-width:992px){

.anm-global-grid{
grid-template-columns:repeat(2,1fr);
}

.anm-global-heading h2{
font-size:34px;
}

}

/* Mobile */

@media(max-width:576px){

.anm-global-section{
padding:70px 15px;
}

.anm-global-grid{
grid-template-columns:1fr;
gap:20px;
}

.anm-global-heading h2{
font-size:28px;
}

.anm-global-heading p{
font-size:15px;
line-height:26px;
}

.anm-country-box{
padding:28px 18px;
}

}




.anmProfileCard{
    width:100%;
     margin:auto;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    position:relative;
    /* box-shadow:0 15px 40px rgba(0,0,0,.08); */
    transition:.4s;
    border:1px solid rgba(212,175,55,.25);
}

.anmProfileCard:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.anmProfileBadge{
    position:absolute;
    top:18px;
    right:18px;
    background:#d4af37;
    color:#fff;
    font-size:13px;
    padding:2px 15px;
    border-radius:30px;
    z-index:10;
    font-weight:600;
}

.anmProfileImage{
    /* height:340px; */
    overflow:hidden;
}

.anmProfileImage img{
    width:100%;
     object-fit:cover;
    transition:.5s;
}

.anmProfileCard:hover img{
    transform:scale(1.08);
}

.anmProfileContent{
    padding:12px;
}

.anmProfileContent h3{
    margin:0;
    font-size:15px;
    color:#222;
    font-weight:700;
}

.anmProfileID{
    display:block;
    margin:8px 0 20px;
    color:#b8860b;
    font-size:14px;
    font-weight:600;
}

.anmProfileInfo{
    list-style:none;
    margin:0;
    padding:0;
}

.anmProfileInfo li{
    display:flex;
    justify-content:space-between;
    padding:2px 0;
    border-bottom:1px solid #eee;
    font-size:15px;
}

.anmProfileInfo li strong{
    color:#444;
    font-size:10px;
}

.anmProfileInfo li span{
    color:#2e2e2e;
    font-size:10px;
}

.anmViewProfileBtn{
    display:block;
    text-align:center;
    margin-top:25px;
    text-decoration:none;
    background:#d4af37;
    color:#fff;
    padding:5px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.anmViewProfileBtn:hover{
    background:#b88d17;
}

@media(max-width:768px){

.anmProfileCard{
    max-width:100%;
}

.anmProfileImage{
    height:300px;
}

.logo-img{
  max-width: 70px !important;
}
}









.logo-img{
  max-width: 150px;
}













.testimonial-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-top{
    text-align:center;
    margin-bottom:20px;
}

.testimonial-top img{
   border-radius: 20px;
    object-fit:cover;
    border:4px solid #d4af37;
    margin-bottom:15px;
}

.testimonial-info h5{
    margin:0;
    font-size:20px;
    font-weight:600;
    color:#222;
}

.testimonial-info span{
    font-size:14px;
    color:#777;
}

.testimonial-stars{
    text-align:center;
    color:#d4af37;
    margin-bottom:15px;
    font-size:14px;
}

.testimonial-card p{
    text-align:center;
    color:#555;
    line-height:1.8;
    font-size:15px;
    margin:0;
    position:relative;
}
 








.anm-legal-section{
    padding:60px 20px;
    background:#faf9f7;
}

.anm-legal-container{
    max-width:1300px;
    margin:auto;
}

.anm-legal-head{
    text-align:center;
    margin-bottom:60px;
}

.anm-legal-head span{
    display:inline-block;
    color:#9c7b3f;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.anm-legal-head h1{
    font-size:48px;
    color:#1f1f1f;
    margin-bottom:15px;
}

.anm-legal-head p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.9;
}

.anm-legal-content{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,.06);
}

.anm-legal-block{
    padding-bottom:30px;
    margin-bottom:30px;
    border-bottom:1px solid #ececec;
}

.anm-legal-block:last-child{
    border-bottom:none;
    margin-bottom:0;
    padding-bottom:0;
}

.anm-legal-block h2{
    font-size:24px;
    color:#222;
    margin-bottom:15px;
}

.anm-legal-block p{
    color:#666;
    line-height:1.9;
    margin:0;
}

@media(max-width:768px){

    .anm-legal-head h1{
        font-size:34px;
    }

    .anm-legal-content{
        padding:30px;
    }

    .anm-legal-block h2{
        font-size:20px;
    }
}









 .profileSwiper .swiper-button-prev{
     color: #dfbb4f;
}

.profileSwiper .swiper-button-next{
     color: #dfbb4f;
}

 