:root {
    --purple-dark: #4a0066;
    --purple-mid: #6b007a;
    --purple-hero: #5c0070;
    --red-cta: #d91c2a;
    --red-hover: #b5101d;
    --white: #ffffff;
    --off-white: #f9f4fc;
    --gold: #e8c44a;
    --text-muted: #6b6b6b;
    --border: #e0daea;
    --input-bg: #fafafa;
    --shadow: 0 20px 60px rgba(74,0,102,0.18);
    --shadow-card: 0 8px 40px rgba(74,0,102,0.13);
  }
 
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    overflow-x: hidden;
    min-height: 100vh;
  }
 
  /* ─── HEADER ─────────────────────────────────────── */
  /* .header {
    background: #220122;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(74,0,102,0.08);
    animation: slideDown 0.6s ease forwards;
  }
  .header-logo img {
    height: 62px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(74,0,102,0.12));
    transition: transform 0.3s ease;
  }
  .header-logo img:hover { transform: scale(1.04); } */

  .header {
  background: #220122;
  padding: 12px 24px;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

/* INNER FLEX */
.header-inner {
  width: 90%;
  /* max-width: 1200px;  */
  margin: 0 auto;      /* center align */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.header-logo img {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.header-logo img:hover {
  transform: scale(1.04);
}

/* BUTTON */
.enquire-btn {
  background: #ffcc00;
  color: #220122;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.enquire-btn:hover {
  background: #fff;
  color: #220122;
}
 
  /* ─── HERO SECTION ───────────────────────────────── */
  .hero {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-hero) 40%, #7a0090 70%, var(--purple-mid) 100%);
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: center;
    padding: 0;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255,255,255,0.04) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    top: -60px; right: 340px;
    width: 320px; height: 320px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 50%;
    animation: rotateSlow 20s linear infinite;
    pointer-events: none;
  }
  .hero-inner {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 440px 400px;
    align-items: end;
    gap: 0;
    padding: 0 5px 0 15px;
    position: relative;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
  }
 
  /* LEFT: text */
  .hero-text {
    padding: 60px 0 50px;
    animation: fadeUp 0.8s ease 0.2s both;
  }
  .badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: var(--white);
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
    padding: 5px 14px; border-radius: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    animation: fadeUp 0.8s ease 0.35s both;
  }
  .badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 60px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 18px;
    animation: fadeUp 0.8s ease 0.45s both;
    text-shadow: 0 4px 20px rgba(0,0,0,0.25);
  }
  .hero-subtitle {
    font-size: 14px; font-weight: 400;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
    max-width: 300px;
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease 0.55s both;
  }
  .cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--red-cta);
    color: var(--white);
    font-size: 14px; font-weight: 700; letter-spacing: 0.02em;
    padding: 14px 28px; border-radius: 8px;
    text-decoration: none;
    cursor: pointer; border: none;
    box-shadow: 0 6px 24px rgba(217,28,42,0.45);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeUp 0.8s ease 0.65s both;
    position: relative; overflow: hidden;
  }
  .cta-btn::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
  }
  .cta-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 32px rgba(217,28,42,0.5); }
  .cta-btn:hover::after { transform: translateX(100%); }
  .cta-arrow { font-size: 18px; transition: transform 0.3s ease; }
  .cta-btn:hover .cta-arrow { transform: translateX(5px); }
 
  /* badges image */
  .badges-row {
    display: flex; gap: 12px; margin-top: 32px;
    animation: fadeUp 0.8s ease 0.75s both;
  }
  .badges-img {
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
    transition: transform 0.3s ease;
  }
  .badges-img:hover { transform: scale(1.05); }
 
  /* CENTER: woman image */
  .hero-image {
    display: flex; align-items: flex-end; justify-content: center;
    height: 100%; min-height: 520px;
    position: relative;
    animation: fadeUp 0.9s ease 0.3s both;
  }
  .hero-image img {
    height: 500px; max-height: 520px;
    object-fit: contain; object-position: bottom;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    transition: transform 0.4s ease;
  }
  .hero-image img:hover { transform: scale(1.02); }
 
  /* RIGHT: form card */
  .form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: var(--shadow);
    margin: 30px 0;
    animation: slideLeft 0.8s cubic-bezier(0.34, 1.4, 0.64, 1) 0.4s both;
    position: relative;
    overflow: hidden;
  }
  .form-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--red-cta), var(--purple-mid), var(--gold));
  }
  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px; font-weight: 800;
    color: #1a1a2e; margin-bottom: 4px;
  }
  .form-subtitle {
    font-size: 12.5px; color: var(--text-muted);
    margin-bottom: 20px; font-weight: 400;
  }
  .field-group { margin-bottom: 14px; }
  .field-label {
    display: block; font-size: 12px; font-weight: 600;
    color: #333; margin-bottom: 5px; letter-spacing: 0.02em;
  }
  .field-input {
    width: 100%;
    background: var(--input-bg);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 13px; font-family: 'DM Sans', sans-serif;
    color: #222;
    outline: none;
    transition: all 0.25s ease;
    appearance: none;
  }
  .field-input::placeholder { color: #bbb; }
  .field-input:focus {
    border-color: var(--purple-mid);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(107,0,122,0.08);
    transform: translateY(-1px);
  }
 
.select-wrap {
  position: relative;
}

.select-wrap select {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* ARROW */
.select-wrap::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
  .row-half {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  }
 
  .check-row {
    display: flex; align-items: flex-start; gap: 8px;
    margin: 14px 0;
  }
  .check-row input[type="checkbox"] {
    width: 16px; height: 16px; flex-shrink: 0;
    accent-color: var(--purple-mid); margin-top: 2px;
    cursor: pointer;
  }
  .check-row label {
    font-size: 11.5px; color: var(--text-muted); cursor: pointer; line-height: 1.4;
  }
 
  .submit-btn {
    width: 100%;
    background: var(--red-cta);
    color: var(--white);
    font-size: 15px; font-weight: 700; font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.04em;
    padding: 14px;
    border: none; border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 6px 22px rgba(217,28,42,0.4);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative; overflow: hidden;
  }
  .submit-btn::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%); transition: transform 0.4s ease;
  }
  .submit-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(217,28,42,0.5); }
  .submit-btn:hover::after { transform: translateX(100%); }
  .submit-btn:active { transform: translateY(0); }
 
  /* ─── ANIMATIONS ─────────────────────────────────── */
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes slideLeft {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
 
  /* ─── MOBILE ─────────────────────────────────────── */
  @media (max-width: 900px) {

    body {
      overflow-x: hidden;
    }
    .hero-image{
        display: none;
    }

    /* .header {
      padding: 10px 16px;
      overflow: hidden;
      justify-content: center;
    }

    .header-logo img {
      height: 44px;
      max-width: 90%;
      width: auto;
      object-fit: contain;
    } */

    .hero {
      min-height: unset;
      overflow: hidden; /* kill all overflow including decorative circle */
    }

    /* hide decorative rotating circle on mobile */
    .hero::after {
      display: none;
    }

    .hero-inner {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto;
      align-items: center;
      padding: 28px 16px 0 16px; /* no bottom padding — form card handles it */
      gap: 0;
      width: 100%;
      max-width: 100%;
    }

    /* ORDER: text → image → form */
    .hero-text {
      order: 1;
      padding: 24px 0 16px;
      text-align: center;
    }

    .hero-subtitle {
      max-width: 100%;
    }

    .badges-row {
      justify-content: center;
      margin-top: 20px;
    }

    .badges-img {
      /* height: 56px; */
    }

    .cta-btn {
      margin: 0 auto;
      display: inline-flex;
    }

    /* ── FIX: hero-image gap was caused by min-height: 520px ── */
    .hero-image {
      order: 2;
      min-height: unset;   /* KEY FIX — removes the 520px empty space */
      height: auto;
      padding-top: 16px;
      justify-content: center;
      align-items: flex-end;
    }

    .hero-image img {
      height: 220px;
      max-height: 240px;
      filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
    }

    .form-card {
      order: 3;
      margin: 0 0 0 0;
      border-radius: 20px 20px 0 0; /* rounded top, flat bottom */
      padding: 24px 18px 32px;
      width: 100%;
      margin-bottom: 15px;
    }
  }

  @media (max-width: 480px) {
      .header-logo img {
    height: 42px;   /* 🔥 perfect visible size */
  }
    .hero-title { font-size: 32px; }
    .hero-image img { height: 180px; }
    /* .badges-img { height: 48px; } */
  }

  /* ─── MOBILE ─────────────────────────────────────── */
@media (max-width: 768px) {

  .header {
    padding: 10px 14px;
  }

  .header-logo img {
    height: 45px;   /* 🔥 increase from 38px */
  }

  .enquire-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
   .header-inner {
    width: 95%;
  }
}

/* EXTRA SMALL */
@media (max-width: 480px) {
  .header-logo img {
    height: 34px;
  }

  .enquire-btn {
    padding: 6px 12px;
    font-size: 11px;
  }
}

  .nm-why-compact {
  padding: 50px 20px;
}

.nm-why-container {
  /* max-width: 1100px; */
  width: 90%;
  margin: auto;
  text-align: center;
}

.nm-why-container h2 {
  font-size: 30px;
  color: #0f2060;
  margin-bottom: 35px;
}

/* GRID */
.nm-why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.nm-card {
  position: relative;
  padding: 25px 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: left;
  overflow: hidden;
  transition: 0.3s;
  min-height: 160px;
}

.nm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* BIG BG NUMBER */
.nm-bg-num {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 60px;
  font-weight: 800;
  color: rgba(15,32,96,0.06);
}

/* TITLE */
.nm-card h3 {
  font-size: 20px;
  color: #0f2060;
  margin-bottom: 8px;
}

/* TEXT */
.nm-card p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.5;
}

/* HOVER ACCENT LINE */
.nm-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #0f2060;
  transform: scaleX(0);
  transition: 0.3s;
}

.nm-card:hover::after {
  transform: scaleX(1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nm-why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .nm-why-cards {
    grid-template-columns: 1fr;
  }
}

/* ─── SPECIALISATIONS SECTION ──────────────────── */
.spec-section {
  background: #f0eaf5;
  padding: 64px 24px 72px;
  overflow: hidden;
}
.spec-header {
  text-align: center;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.spec-header.visible { opacity: 1; transform: translateY(0); }
.spec-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 10px;
}
.spec-header p { font-size: 14px; color: #6b6b6b; margin: 0; }
 
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  /* max-width: 1100px; */
  width: 90%;
  margin: 0 auto 36px;
}
 
.spec-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px;
  border: 1.5px solid #ede8f5;
  cursor: pointer;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.spec-card.visible { opacity: 1; transform: translateY(0); }
.spec-card:hover { box-shadow: 0 12px 40px rgba(74,0,102,0.14); border-color: #a855c8; transform: translateY(-4px); }
.spec-card.active { background: #5c0070; border-color: #5c0070; }
.spec-card.active .card-title { color: #fff; }
.spec-card.active .card-desc { color: rgba(255,255,255,0.72); }
.spec-card.active .card-link { color: #f4a0ff; }
.spec-card.active .icon-wrap { background: rgba(255,255,255,0.18); }
.spec-card.active .icon-wrap svg { color: #fff; }
 
.icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: #f5ecfc;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s;
}
.icon-wrap svg { width: 22px; height: 22px; color: #d91c2a; transition: color 0.3s; }
.card-title { font-size: 15px; font-weight: 700; color: #1a1a2e; margin: 0 0 8px; line-height: 1.3; transition: color 0.3s; }
.card-desc { font-size: 12.5px; color: #6b6b6b; line-height: 1.55; margin: 0 0 18px; transition: color 0.3s; }
.card-link { font-size: 12.5px; font-weight: 600; color: #d91c2a; display: inline-flex; align-items: center; gap: 5px; text-decoration: none; transition: color 0.3s, gap 0.25s; }
.spec-card:hover .card-link { gap: 8px; }
 
.view-all-wrap {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
}
.view-all-wrap.visible { opacity: 1; transform: translateY(0); }
 
.view-all-btn {
  display: inline-flex; align-items: center; gap: 12px;
  border: 2px solid #5c0070; border-radius: 40px;
  padding: 12px 24px 12px 32px;
  font-size: 15px; font-weight: 700; color: #5c0070;
  background: transparent; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
}
.view-all-btn:hover { background: #5c0070; color: #fff; }
.view-all-btn:hover .btn-circle { background: #fff; }
.view-all-btn:hover .btn-circle svg { color: #5c0070; }
 
#mobToggleBtn {
  display: none;
  align-items: center; gap: 10px;
  border: 2px solid #5c0070; border-radius: 40px;
  padding: 11px 22px 11px 28px;
  font-size: 14px; font-weight: 700; color: #5c0070;
  background: transparent; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
}
#mobToggleBtn:hover { background: #5c0070; color: #fff; }
#mobToggleBtn:hover .btn-circle { background: #fff; }
#mobToggleBtn:hover .btn-circle svg { color: #5c0070; }
 
.btn-circle {
  width: 36px; height: 36px; border-radius: 50%;
  background: #d91c2a;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.btn-circle svg { width: 16px; height: 16px; color: #fff; transition: color 0.3s; }
 
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 600px) {
  .spec-section { padding: 40px 16px 52px; }
  .cards-grid { grid-template-columns: 1fr; gap: 12px; }
  .spec-card { padding: 22px 18px; }
  .view-all-btn { display: none !important; }
  #mobToggleBtn { display: inline-flex; }
}
 
/* ─── CERTIFICATE SECTION ──────────────────────── */
.cert-section {
  background: linear-gradient(135deg, #4a0066 0%, #5c0070 45%, #7a0090 100%);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}
.cert-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.cert-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.cert-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cert-text { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.cert-text.visible { opacity: 1; transform: translateX(0); }
 
.section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.section-tag::before { content: ''; width: 6px; height: 6px; background: #e8c44a; border-radius: 50%; }
 
.cert-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cert-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cert-points { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cert-points li {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; color: rgba(255,255,255,0.85);
}
.cert-points li::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(232,196,74,0.15);
  border: 1.5px solid #e8c44a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8c44a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
 
.cert-image-wrap {
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.cert-image-wrap.visible { opacity: 1; transform: translateX(0); }
 
.cert-img-frame {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(12px);
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.cert-img-frame img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.cert-badge-row {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; justify-content: center; flex-wrap: wrap;
}
.cert-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,196,74,0.15);
  border: 1px solid rgba(232,196,74,0.4);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px; font-weight: 600;
  color: #e8c44a;
}
 
/* ─── FEE SECTION ──────────────────────────────── */
.fee-section {
  background: #f0eaf5;
  padding: 72px 24px;
}
.fee-inner { max-width: 1100px; margin: 0 auto; }
 
.fee-header {
  text-align: center;
  margin-bottom: 52px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fee-header.visible { opacity: 1; transform: translateY(0); }
.fee-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.fee-header p { font-size: 14px; color: #6b6b6b; max-width: 520px; margin: 0 auto; line-height: 1.6; }
 
.fee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}
 
.fee-card {
  border-radius: 22px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}
.fee-card.visible { opacity: 1; transform: translateY(0); }
.fee-card:hover { box-shadow: 0 16px 48px rgba(74,0,102,0.18); transform: translateY(-4px); }
 
.fee-card.card-annual { background: #5c0070; color: #fff; }
.fee-card.card-semester { background: #fff; border: 2px solid #ede8f5; }
 
.fee-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 150px; height: 150px;
  border-radius: 50%;
  pointer-events: none;
}
.fee-card.card-annual::before { background: rgba(255,255,255,0.06); }
.fee-card.card-semester::before { background: rgba(92,0,112,0.04); }
 
.fee-option-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.fee-card.card-annual .fee-option-label { color: rgba(255,255,255,0.6); }
.fee-card.card-semester .fee-option-label { color: #a855c8; }
 
.fee-option-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  margin-bottom: 24px; line-height: 1.25;
}
.fee-card.card-annual .fee-option-title { color: #fff; }
.fee-card.card-semester .fee-option-title { color: #1a1a2e; }
 
.fee-amount-wrap { margin-bottom: 24px; }
.fee-currency {
  font-size: 18px; font-weight: 600; vertical-align: top;
  margin-top: 6px; display: inline-block;
}
.fee-card.card-annual .fee-currency { color: rgba(255,255,255,0.7); }
.fee-card.card-semester .fee-currency { color: #5c0070; }
 
.fee-amount {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 800; line-height: 1;
}
.fee-card.card-annual .fee-amount { color: #e8c44a; }
.fee-card.card-semester .fee-amount { color: #5c0070; }
 
.fee-period { font-size: 12.5px; margin-left: 4px; }
.fee-card.card-annual .fee-period { color: rgba(255,255,255,0.55); }
.fee-card.card-semester .fee-period { color: #888; }
 
.fee-divider { height: 1px; margin-bottom: 20px; }
.fee-card.card-annual .fee-divider { background: rgba(255,255,255,0.15); }
.fee-card.card-semester .fee-divider { background: #ede8f5; }
 
.fee-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.fee-perks li { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.fee-card.card-annual .fee-perks li { color: rgba(255,255,255,0.82); }
.fee-card.card-semester .fee-perks li { color: #444; }
 
.perk-dot {
  width: 18px; height: 18px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.fee-card.card-annual .perk-dot { background: rgba(232,196,74,0.2); }
.fee-card.card-semester .perk-dot { background: rgba(92,0,112,0.1); }
.perk-dot svg { width: 10px; height: 10px; }
.fee-card.card-annual .perk-dot svg { color: #e8c44a; }
.fee-card.card-semester .perk-dot svg { color: #5c0070; }
 
.fee-cta {
  width: 100%; padding: 13px; border-radius: 10px;
  font-size: 14px; font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer; border: none;
  transition: all 0.3s ease;
}
.fee-card.card-annual .fee-cta { background: #e8c44a; color: #3a0050; }
.fee-card.card-annual .fee-cta:hover { background: #f0d060; transform: translateY(-2px); }
.fee-card.card-semester .fee-cta { background: #5c0070; color: #fff; box-shadow: 0 6px 20px rgba(92,0,112,0.3); }
.fee-card.card-semester .fee-cta:hover { background: #4a0066; transform: translateY(-2px); }
 
.fee-note {
  text-align: center; margin-top: 28px;
  font-size: 13px; color: #888;
  opacity: 0; transition: opacity 0.5s ease 0.5s;
}
.fee-note.visible { opacity: 1; }
.fee-note span { color: #5c0070; font-weight: 600; }
 
/* Mobile */
@media (max-width: 768px) {
  .cert-inner { grid-template-columns: 1fr; gap: 36px; }
  .cert-image-wrap { order: -1; }
  .cert-img-frame { max-width: 100%; }
  .fee-grid { grid-template-columns: 1fr; gap: 16px; max-width: 440px; }
  .fee-card { padding: 28px 24px; }
  .fee-amount { font-size: 42px; }
}
@media (max-width: 480px) {
  .cert-section { padding: 48px 16px; }
  .fee-section { padding: 48px 16px; }
}

/* ─── ADMISSION PROCESS SECTION ────────────────── */
.adm-section {
  background: #fff;
  padding: 72px 24px 80px;
  overflow: hidden;
}
.adm-header {
  text-align: center; margin-bottom: 60px;
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.adm-header.visible { opacity: 1; transform: translateY(0); }
 
.adm-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: #f5ecfc; border: 1px solid #ddc8f0;
  color: #5c0070; font-size: 11px; font-weight: 700; letter-spacing: .08em;
  padding: 5px 16px; border-radius: 20px; margin-bottom: 16px;
}
.adm-tag::before { content: ''; width: 6px; height: 6px; background: #d91c2a; border-radius: 50%; }
 
.adm-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  color: #1a1a2e; margin-bottom: 10px;
}
.adm-header p { font-size: 14px; color: #6b6b6b; max-width: 480px; margin: 0 auto; line-height: 1.6; }
 
.adm-timeline {
  max-width: 900px; margin: 0 auto;
  position: relative;
}
.adm-timeline::before {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, #5c0070, #d91c2a);
  opacity: .18; border-radius: 2px;
}
 
.adm-step {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: start;
  /* margin-bottom: 40px; */
  opacity: 0; transform: translateY(30px);
  transition: opacity .55s ease, transform .55s ease;
}
.adm-step.visible { opacity: 1; transform: translateY(0); }
.adm-step:last-child { margin-bottom: 0; }
 
.adm-step.even .step-card { order: 3; grid-column: 3; }
.adm-step.even .step-center { order: 2; grid-column: 2; }
.adm-step.even .step-empty { order: 1; grid-column: 1; }
.adm-step.odd .step-card { order: 1; grid-column: 1; }
.adm-step.odd .step-center { order: 2; grid-column: 2; }
.adm-step.odd .step-empty { order: 3; grid-column: 3; }
 
.step-center {
  display: flex; flex-direction: column; align-items: center;
  padding-top: 20px; position: relative; z-index: 2;
}
.step-bubble {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 6px 24px rgba(74,0,102,.22);
  transition: transform .3s ease;
}
.step-bubble:hover { transform: scale(1.1); }
.adm-step:nth-child(1) .step-bubble { background: #5c0070; color: #fff; }
.adm-step:nth-child(2) .step-bubble { background: #d91c2a; color: #fff; }
.adm-step:nth-child(3) .step-bubble { background: #5c0070; color: #fff; }
.adm-step:nth-child(4) .step-bubble { background: #e8c44a; color: #3a0050; }
 
.step-card {
  background: #fff; border: 1.5px solid #ede8f5;
  border-radius: 18px; padding: 26px 24px;
  margin: 8px 12px;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s;
}
.step-card:hover {
  box-shadow: 0 12px 40px rgba(74,0,102,.13);
  border-color: #c084e0; transform: translateY(-3px);
}
 
.step-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.adm-step:nth-child(1) .step-icon { background: #f5ecfc; }
.adm-step:nth-child(2) .step-icon { background: #fdecea; }
.adm-step:nth-child(3) .step-icon { background: #f5ecfc; }
.adm-step:nth-child(4) .step-icon { background: #fdf9e6; }
.step-icon svg { width: 18px; height: 18px; }
.adm-step:nth-child(1) .step-icon svg { color: #5c0070; }
.adm-step:nth-child(2) .step-icon svg { color: #d91c2a; }
.adm-step:nth-child(3) .step-icon svg { color: #5c0070; }
.adm-step:nth-child(4) .step-icon svg { color: #b8960a; }
 
.step-num-label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 8px;
}
.adm-step:nth-child(1) .step-num-label { color: #5c0070; }
.adm-step:nth-child(2) .step-num-label { color: #d91c2a; }
.adm-step:nth-child(3) .step-num-label { color: #5c0070; }
.adm-step:nth-child(4) .step-num-label { color: #b8960a; }
 
.step-title { font-size: 17px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; line-height: 1.25; }
.step-desc { font-size: 13px; color: #6b6b6b; line-height: 1.65; }
 
.adm-cta {
  display: flex; justify-content: center; margin-top: 56px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s ease .3s, transform .5s ease .3s;
}
.adm-cta.visible { opacity: 1; transform: translateY(0); }
.adm-cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #d91c2a; color: #fff;
  font-size: 15px; font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  padding: 14px 32px; border-radius: 10px; border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(217,28,42,.35);
  transition: all .3s ease;
}
.adm-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(217,28,42,.45); }
 
/* Mobile */
@media (max-width: 700px) {
  .adm-section { padding: 48px 16px 60px; }
  .adm-header { margin-bottom: 40px; }
  .adm-timeline::before { left: 26px; transform: none; }
  .adm-step {
    grid-template-columns: 56px 1fr;
    margin-bottom: 28px;
  }
  .adm-step.odd .step-card,
  .adm-step.even .step-card { order: 2; grid-column: 2; margin: 8px 0 8px 8px; }
  .adm-step.odd .step-center,
  .adm-step.even .step-center { order: 1; grid-column: 1; }
  .adm-step.odd .step-empty,
  .adm-step.even .step-empty { display: none; }
  .step-card { margin: 8px 0 8px 8px; padding: 20px 18px; }
  .step-bubble { width: 44px; height: 44px; font-size: 16px; }
}
 
.nm-lead {
  padding: 70px 20px;
  background: #f7f8fc;
}

.nm-lead-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.nm-lead h2 {
  font-size: 34px;
  color: #2b0f2f;
  margin-bottom: 40px;
}

/* GRID */
.nm-lead-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* CARD */
.nm-lead-card {
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  background: #fff;
  position: relative;
}

/* TOP */
.nm-top {
  background: #3b1547;
  color: #fff;
  padding: 25px 15px 40px;
  position: relative;
}

/* ANGLED CUT */
.nm-top::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background: #c9a96a;
  transform: skewY(-5deg);
}

/* BOTTOM */
.nm-bottom {
  background: #c9a96a;
  padding: 35px 15px 20px;
  min-height: 140px;
}

/* TEXT */
.nm-top h3 {
  font-size: 16px;
  line-height: 1.4;
}

.nm-bottom p {
  font-size: 13.5px;
  color: #222;
  line-height: 1.5;
}

/* HOVER */
.nm-lead-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* MOBILE */
@media (max-width: 992px) {
  .nm-lead-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .nm-lead-grid {
    grid-template-columns: 1fr;
  }

  .nm-lead h2 {
    font-size: 26px;
  }
}
/* SECTION */
.nm-stats {
  position: relative;
  padding: 80px 20px;
  background: url('images/statesbg.webp') center/cover no-repeat;
  color: #fff;
  text-align: center;
}

/* DARK OVERLAY */
.nm-overlay {
  position: absolute;
  /* inset: 0; */
  background: rgba(0,0,0,0.6);
}

/* CONTENT */
.nm-stats-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: auto;
}

.nm-stats h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

/* ROW */
.nm-stats-row {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* CARD */
.nm-stat-card {
  flex: 1;
  padding: 25px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  transition: 0.3s;
}

/* CENTER ACTIVE */
.nm-stat-card.active {
  background: #b8860b;
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* TEXT */
.nm-stat-card h3 {
  font-size: 28px;
  font-weight: 700;
}

.nm-stat-card p {
  font-size: 14px;
  opacity: 0.9;
}

/* HOVER */
.nm-stat-card:hover {
  transform: translateY(-5px);
}

/* MOBILE */
@media (max-width: 768px) {
  .nm-stats-row {
    flex-direction: column;
  }

  .nm-stat-card.active {
    transform: none;
  }
}

.nm-about-sec {
  padding: 60px 20px;
  background: #f5f6fb;
}

.nm-about-wrap {
  /* max-width: 1100px; */
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, #3b1547, #1d0b2f);
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* subtle glow */
.nm-about-wrap::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.08);
  filter: blur(100px);
  top: -50px;
  right: -50px;
}

/* LEFT */
.nm-about-content {
  width: 55%;
}

.nm-about-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.nm-about-content p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 12px;
}

/* BUTTON */
.nm-about-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #ff6a3d;
  color: #fff;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.nm-about-btn:hover {
  background: #ff5126;
  transform: translateY(-2px);
}

/* RIGHT IMAGE */
.nm-about-img {
  width: 45%;
  text-align: right;
}

.nm-about-img img {
  width: 100%;
  max-width: 380px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  transition: 0.4s;
}

.nm-about-img img:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .nm-about-wrap {
    flex-direction: column;
    padding: 25px;
    width: 100%;
  }

  .nm-about-content,
  .nm-about-img {
    width: 100%;
    text-align: left;
  }

  .nm-about-img img {
    margin-top: 15px;
  }
}

.nm-faq-pro {
  padding: 60px 20px;
  background: #f7f8fc;
}

.nm-faq-wrap {
  max-width: 900px;
  margin: auto;
}

.nm-faq-wrap h2 {
  text-align: center;
  font-size: 32px;
  color: #0f2060;
  margin-bottom: 40px;
}

/* ITEM */
.nm-faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);
  transition: 0.3s;
  overflow: hidden;
}

/* HOVER */
.nm-faq-item:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-color: #4f46e5;
}

/* ACTIVE */
.nm-faq-item.active {
  border-left: 4px solid #4f46e5;
}

/* QUESTION */
.nm-faq-q {
  width: 100%;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #0f2060;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  position: relative;
}

/* ICON */
.nm-faq-q::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: 0.3s;
}

.nm-faq-item.active .nm-faq-q::after {
  content: "−";
}

/* ANSWER */
.nm-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.nm-faq-a p {
  padding: 0 20px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ACTIVE OPEN */
.nm-faq-item.active .nm-faq-a {
  max-height: 500px;
}

.nm-footer {
  font-family: inherit;
}

/* TOP */
.nm-footer-top {
  background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
  padding: 40px 20px;
  text-align: center;
  color: #ddd;
}

/* DISCLAIMER */
.nm-disclaimer {
  max-width: 900px;
  margin: auto;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* LINKS */
.nm-footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

.nm-footer-links a {
  color: #ff6a3d;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}

/* UNDERLINE HOVER */
.nm-footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #ff6a3d;
  transition: 0.3s;
}

.nm-footer-links a:hover::after {
  width: 100%;
}

.nm-footer-links a:hover {
  color: #ff8a60;
}

/* DIVIDER */
.nm-footer-links span {
  color: #888;
}

/* BOTTOM */
.nm-footer-bottom {
  background: #e9e9e9;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  color: #333;
}

/* MOBILE */
@media (max-width: 576px) {
  .nm-footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .nm-footer-links span {
    display: none;
  }
}

.error-msg {
  font-size: 12px;
  color: #e11d48;
  margin-bottom: 4px;
  display: none;
}

.field-input.error {
  border: 1px solid #e11d48;
}

/* ================= POPUP BASE ================= */
.nm-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;

  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}

.nm-popup.active {
  opacity: 1;
  visibility: visible;
}

/* ================= OVERLAY ================= */
.nm-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(5px);
}

/* ================= BOX ================= */
.nm-popup-box {
  position: relative;
  width: 90%;              /* 👈 width kam */
  max-width: 380px;       /* 👈 compact */
  z-index: 2;

  transform: translateY(20px);
  opacity: 0;
  transition: 0.25s ease;
}

.nm-popup.active .nm-popup-box {
  transform: translateY(0);
  opacity: 1;
}

/* ================= CARD ================= */
.form-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* ================= HEADER ================= */
.form-header {
  padding: 18px 20px;
  background: linear-gradient(135deg, #3b1547, #1d0b2f);
  color: #fff;
  position: relative;
      border-radius: 16px;
    margin-bottom: 17px;
}


/* glow effect */
.form-header::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -40px;
  right: -40px;
  filter: blur(60px);
}

/* TITLE */
.form-header h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;

  /* premium gradient text */
  background: linear-gradient(90deg, #fbbf24, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTEXT */
.form-header p {
  font-size: 12.5px;
  color: #d1d5db;
}

/* ================= BODY ================= */
.form-body {
  padding: 18px;
}

/* ================= INPUT ================= */
.field-input {
  width: 100%;
  padding: 11px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.2s;
}

.field-input:focus {
  border-color: #4f46e5;
  outline: none;
}

/* ================= SELECT ================= */
.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  padding-right: 35px;
}

/* arrow */
.select-wrap::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: translateY(-50%) rotate(45deg);
}

/* ================= BUTTON ================= */
.submit-btn {
  width: 100%;
  padding: 13px;
  border-radius: 30px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #e11d48, #f43f5e);
  box-shadow: 0 10px 25px rgba(225,29,72,0.35);
  cursor: pointer;
  transition: 0.25s;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

/* ================= CHECK ================= */
.check-row {
  font-size: 12.5px;
  margin: 14px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ================= CLOSE BUTTON ================= */
.nm-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: #1d0b2f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s;
}

.nm-close:hover {
  background: #e11d48;
  transform: rotate(90deg);
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
  .nm-popup-box {
    width: 92%;
    max-width: 340px;
  }

  .form-header h2 {
    font-size: 20px;
  }
}
/* HIDE DESKTOP */
.nm-bottom-bar {
  display: none;
}

@media (max-width: 768px) {

  .nm-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%; /* 👈 full width */
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px;

    /* PREMIUM BG */
    background: linear-gradient(135deg, #3b1547, #1d0b2f);
    color: #fff;

    font-size: 16px;
    font-weight: 600;
    text-decoration: none;

    /* 🔥 ROUNDED TOP */
    border-radius: 18px 18px 0 0;

    /* SHADOW */
    box-shadow: 0 -8px 25px rgba(0,0,0,0.35);

    transition: 0.3s ease;
  }

  /* TOP COLOR LINE */
  .nm-bottom-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 3px;
    border-radius: 50px;

    background: linear-gradient(90deg, #fbbf24, #f43f5e);
  }

  /* ICON */
  .nm-bottom-bar .nm-icon {
    font-size: 18px;
  }

  /* TEXT */
  .nm-bottom-bar .nm-text {
    letter-spacing: 0.3px;
  }

  /* TAP EFFECT */
  .nm-bottom-bar:active {
    transform: scale(0.97);
  }

}
