:root {
  --navy-900: #081836;
  --navy-800: #0e2552;
  --navy-700: #16356f;
  --ink: #0c1832;
  --text-soft: #c5d2eb;
  --gold: #e9c35a;
  --gold-deep: #d9b247;
  --paper: #f9fafc;
  --white: #ffffff;
  --section-padding: clamp(2.5rem, 4.5vw, 3.2rem);
   --yellow: #f4c542;
  --whatsapp: #25D366;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--white);
  background:linear-gradient(165deg, rgb(6 23 53) 0%, rgb(11, 31, 69) 48%, rgb(16, 27, 52) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}


/* ================= DESKTOP WHATSAPP ================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;

  width: 55px;
  height: 55px;

  background: #25D366;
  color: #fff;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  z-index: 9999;

  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* 👇 THIS IS THE IMPORTANT FIX */
.whatsapp-float i {
      font-size: 26px;
    line-height: 1;
    /* display: block; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 14px;
    right: 16px;
}
/* Hover effect */
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ================= MOBILE BAR ================= */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  background: var(--yellow);
  z-index: 9999;
}

.mobile-sticky-bar .cta-btn {
  flex: 1;
  text-align: center;
  padding: 10px 5px;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  border-right: 1px solid rgba(0,0,0,0.1);
}

.mobile-sticky-bar .cta-btn i {
  font-size: 14px;
}

.mobile-sticky-bar .cta-btn:last-child {
  border-right: none;
}

/* ================= RESPONSIVE ================= */
.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .mobile-only {
    display: flex;
  }

  .desktop-only {
    display: none;
  }
}

.page-bg .glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

.glow-one {
  width: 320px;
  height: 320px;
  left: -100px;
  top: 80px;
  background: rgba(233, 195, 90, 0.2);
}

.glow-two {
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: 40px;
  background: rgba(76, 136, 255, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(12, 24, 50, 0.12);
  padding: 7px 25px 7px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  width: 68px;
  max-width: 42vw;
  height: auto;
  display: block;
  object-fit: contain;
}

.hero {
  padding-block: calc(var(--section-padding) * 0.8) var(--section-padding);
}

.hero-row {
  row-gap: 1.8rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(233, 195, 90, 0.45);
  background: rgba(233, 195, 90, 0.1);
  color: #f6d989;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 0.35rem;
  margin-bottom: 1rem;
}

.hero-title span {
  color: var(--gold);
}

.hero-copy {
  font-size: clamp(0.95rem, 1.25vw, 1.14rem);
  max-width: 680px;
  color: var(--text-soft);
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.btn {
  border-radius: 0.8rem;
  font-weight: 700;
  padding: 0.72rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.92rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--ink);
  border: none;
}

.btn-gold:hover {
  color: var(--ink);
  filter: brightness(1.03);
}

.btn-lg-action {
  min-width: 220px;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.trust-row {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  color: #d9e4fb;
  font-weight: 500;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.1em;
}

.form-card {
  background: linear-gradient(160deg, #ffffff 0%, #faf8f2 55%, #f5f0e6 100%);
  color: #1e2b45;
  border-radius: 24px;
  padding: clamp(1.25rem, 1.8vw, 2rem);
  box-shadow: 0 24px 50px rgba(8, 24, 54, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(233, 195, 90, 0.35);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 195, 90, 0.18), transparent 70%);
  pointer-events: none;
}

.form-card h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: #1c2a4e;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  margin-bottom: 0.35rem;
  position: relative;
  z-index: 1;
}

.form-card-sub {
  margin: 0 0 1.25rem;
  color: #66738d;
  font-size: 0.88rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.form-card p {
  margin-top: 0.55rem;
  color: #66738d;
  margin-bottom: 1rem;
}

/* ── Lead Form Shared Styles ── */
.lead-form-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(233, 195, 90, 0.15), rgba(233, 195, 90, 0.05));
  color: #a07c1a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(233, 195, 90, 0.4);
  margin-bottom: 0.65rem;
}

.lead-form-section {
  margin-bottom: 1.1rem;
}

.lead-form-section-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.lead-form-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0cc67, #dfb548);
  color: #0c1d41;
  font-size: 0.68rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(233, 195, 90, 0.3);
}

.lead-form-section-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #66738d;
}

.lead-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.lead-input-wrap,
.lead-select-wrap {
  position: relative;
  margin-bottom: 0.65rem;
}

.lead-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #b49035;
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 2;
  line-height: 1;
}

.lead-input-wrap .lead-input,
.lead-select-wrap .lead-select {
  padding-left: 2.65rem;
  width: 100%;
  margin-bottom: 0;
}

.lead-select-wrap--plain .lead-select {
  padding-left: 0.85rem;
}

.lead-input,
.lead-select {
  background: #fffdf8;
  border: 1.5px solid #e4e9f2;
  border-radius: 14px;
  min-height: 50px;
  font-size: 0.9rem;
  color: #1e2b45;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-input::placeholder {
  color: #8a96ad;
}

.lead-input:focus,
.lead-select:focus {
  background: #ffffff;
  border-color: #cfb26a;
  box-shadow: 0 0 0 3px rgba(207, 178, 106, 0.15);
  outline: none;
}

.lead-field-card {
  background: #fffdf8;
  border: 1.5px solid #e8edf5;
  border-radius: 14px;
  padding: 0.75rem 0.85rem 0.65rem;
  margin-bottom: 0.65rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lead-field-card:focus-within {
  border-color: #cfb26a;
  box-shadow: 0 0 0 3px rgba(207, 178, 106, 0.12);
}

.lead-field-card--package {
  border-color: #e8edf5;
}

.lead-field-card--package.is-selected {
  border-color: rgba(233, 195, 90, 0.65);
  background: linear-gradient(135deg, #fffdf5 0%, #fef9ea 100%);
  box-shadow: 0 4px 16px rgba(233, 195, 90, 0.12);
}

.lead-field-card .field-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
}

.lead-field-card .field-label i {
  color: #b49035;
  font-size: 0.85rem;
}

.lead-field-card .lead-select-wrap {
  margin-bottom: 0;
}

.lead-form-submit {
  width: 100%;
  min-height: 54px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1rem;
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 10px 28px rgba(9, 34, 86, 0.28);
}

.lead-form-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.lead-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(9, 34, 86, 0.35);
  filter: brightness(1.05);
}

.lead-form-submit:hover::before {
  transform: translateX(100%);
}

.lead-form-submit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.lead-form-submit:hover .lead-form-submit-icon {
  transform: translateX(3px);
}

.lead-form-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(102, 115, 141, 0.25);
}

.lead-form-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #66738d;
}

.lead-form-trust span i {
  color: #b49035;
  font-size: 0.78rem;
}

.form-control,
.form-select {
  border-radius: 12px;
  border: 1px solid #d7deea;
  background-color: #fffdf6;
  min-height: 50px;
}

.field-input,
.field-select {
  margin-bottom: 0.85rem;
}

.field-group {
  margin-bottom: 0.85rem;
}

.field-group .field-select {
  margin-bottom: 0;
}

.field-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #66738d;
  margin-bottom: 0.4rem;
}

.form-control:focus,
.form-select:focus {
  border-color: #88a8e9;
  box-shadow: 0 0 0 0.2rem rgba(44, 109, 231, 0.15);
}

.btn-dark-blue {
  min-height: 52px;
  border: 0;
  background: linear-gradient(120deg, #092256, #133a7b);
  color: #ffffff;
}

.btn-dark-blue:hover {
  color: #fff;
  filter: brightness(1.06);
}

.form-submit {
  margin-top: 0.6rem;
  width: 100%;
}

.form-success-message {
  margin: 0.85rem 0 0;
  color: #1b6e3b;
  font-size: 0.92rem;
  font-weight: 700;
  background: #ebf9f0;
  border: 1px solid #bde9cc;
  border-radius: 10px;
  padding: 0.58rem 0.72rem;
}

.lead-modal .modal-dialog {
  max-width: 520px;
}

.lead-modal.modal.fade .modal-dialog {
  transform: translateY(16px) scale(0.98);
}

.lead-modal.modal.show .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-backdrop.show {
  opacity: 0.62;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.lead-modal .modal-content {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(232, 216, 170, 0.55);
  background: linear-gradient(155deg, #fcfcfe 0%, #f3f6fd 52%, #edf3ff 100%);
  box-shadow: 0 34px 90px rgba(8, 24, 54, 0.3);
}

.lead-modal .modal-content::before {
  content: "";
  position: absolute;
  top: -72px;
  right: -80px;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(241, 215, 133, 0.28), rgba(241, 215, 133, 0));
  pointer-events: none;
}

.lead-modal .modal-content::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(233, 195, 90, 0), rgba(233, 195, 90, 0.8), rgba(233, 195, 90, 0));
  pointer-events: none;
}

.lead-modal .modal-header {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #e3e8f4;
  padding: 1.25rem 1.25rem 1rem;
  align-items: flex-start;
}

.lead-modal-head {
  flex: 1;
  padding-right: 0.5rem;
}

.lead-modal .modal-title {
  margin: 0;
  color: #14306a;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.lead-modal .modal-subtitle {
  margin: 0.45rem 0 0;
  color: #667baa;
  font-size: 0.86rem;
  line-height: 1.45;
}

.lead-modal .modal-body {
  position: relative;
  z-index: 1;
  padding: 1rem 1.25rem 1.25rem;
  max-height: calc(100vh - 180px);
  overflow-y: auto;
}

.lead-modal .form-control,
.lead-modal .form-select,
.lead-modal .lead-input,
.lead-modal .lead-select {
  background: #ffffff;
  border: 1.5px solid #d1dcef;
  color: #1e2b45;
  min-height: 48px;
  border-radius: 14px;
}

.lead-modal .lead-input:focus,
.lead-modal .lead-select:focus,
.lead-modal .form-control:focus,
.lead-modal .form-select:focus {
  border-color: #cfb26a;
  box-shadow: 0 0 0 3px rgba(207, 178, 106, 0.15);
}

.lead-modal .lead-field-card {
  background: #ffffff;
}

.lead-modal .lead-form-submit {
  border-radius: 14px;
  min-height: 52px;
  font-size: 1rem;
}

.lead-capture-form .form-control:invalid,
.lead-capture-form .form-select:invalid {
  border-color: #d7deea;
}

.lead-capture-form.was-validated .form-control:invalid,
.lead-capture-form.was-validated .form-select:invalid,
.lead-capture-form.was-validated .lead-input:invalid,
.lead-capture-form.was-validated .lead-select:invalid {
  border-color: #dc4f63;
  box-shadow: 0 0 0 3px rgba(220, 79, 99, 0.12);
}

.lead-modal .btn-close {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid #d8d2be;
  background-color: #ffffff;
  background-size: 0.72rem;
  box-shadow: 0 6px 14px rgba(17, 43, 86, 0.12);
  opacity: 1;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.lead-modal .form-control::placeholder,
.lead-modal .lead-input::placeholder {
  color: #7688ae;
}

.lead-modal .btn-dark-blue {
  background: linear-gradient(120deg, #12357b 0%, #1d4fa3 100%);
  box-shadow: 0 12px 22px rgba(15, 52, 117, 0.24);
  border-radius: 14px;
  min-height: 54px;
  font-size: 1.05rem;
}

.lead-modal .btn-dark-blue:hover {
  filter: brightness(1.04);
}

.usp-section {
  margin-top: 0.8rem;
}

.usp-metrics-wrap {
  position: relative;
  overflow: hidden;
  background:
   radial-gradient(circle at 10% 45%, rgba(233, 195, 90, 0.13) 0%, rgba(233, 195, 90, 0) 42%), radial-gradient(circle at 90% 38%, rgba(114, 163, 255, 0.18) 0%, rgba(114, 163, 255, 0) 40%), linear-gradient(180deg, #081835 0%, #0d2a5f 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.usp-metrics-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 28%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 40%);
  pointer-events: none;
}

.usp-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding-block: clamp(1.5rem, 3.5vw, 2.2rem);
}

.metric-card {
  text-align: center;
}

.metric-card h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: var(--gold);
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.05;
}

.metric-card p {
  margin: 0.45rem 0 0;
  color: #dbe5f8;
  font-size: 0.92rem;
}

.usp-trust-wrap {
  background: #f3efe6;
  border-top: 1px solid rgba(12, 24, 50, 0.08);
  border-bottom: 1px solid rgba(12, 24, 50, 0.08);
}

.usp-trust-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem 2rem;
  color: #2f4268;
  font-size: 1.05rem;
  font-weight: 500;
}

.usp-intro-wrap {
  background: #f8f5ee;
  color: #1a2a4b;
  padding: var(--section-padding) 0;
}

.usp-intro {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.usp-intro h2 {
  margin: 1.05rem 0 0.55rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #102348;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.usp-intro h2 span {
  color: #c1a045;
}

.usp-intro p {
  margin: 0 auto;
  color: #66738d;
  font-size: 0.95rem;
  max-width: 720px;
}

.who-for-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.who-for-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  border: 1px solid #e5decd;
  box-shadow: 0 10px 40px rgba(13, 30, 66, 0.04);
  width: calc(33.333% - 1rem);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.who-for-card:hover {
  transform: translateY(-5px);
  border-color: #d1b465;
  box-shadow: 0 16px 45px rgba(13, 30, 66, 0.08), inset 0 0 0 1px #d1b465;
}

.wfc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}


.wfc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fdfaf3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #c1a045;
  border: 1px solid #efe4c9;
  overflow: hidden;
  padding: 8px;
}

.wfc-icon-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.wfc-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(16, 35, 72, 0.08);
  line-height: 1;
  font-family: monospace;
}

.wfc-content h3 {
  margin: 0 0 0.5rem;
  color: #132a54;
  font-size: 1.35rem;
  line-height: 1.35;
  font-weight: 800;
}

.wfc-desc {
  margin: 0 0 1rem;
  color: #5f6f8f;
  font-size: 0.9rem;
  line-height: 1.58;
}

.wfc-link {
  margin: 0;
  color: #b49035;
  font-size: 0.95rem;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
  cursor: pointer;
}

.wfc-link:hover {
  filter: brightness(0.9);
}

.wfc-link span {
  transition: transform 0.2s ease;
}

.who-for-card:hover .wfc-link span {
  transform: translateX(6px);
}

/* General Section Utilities */
.section-padding {
  padding: var(--section-padding) 0;
}

.sub-pill {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(233, 195, 90, 0.1) 0%, rgba(193, 160, 69, 0.05) 100%);
  color: #ba9638;
  border-radius: 50px;
  border: 1px solid rgba(193, 160, 69, 0.2);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(186, 150, 56, 0.05);
}

.section-main-title {
  color: #102348;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-main-title span {
  color: #c1a045;
}

.section-subtitle {
  color: #66738d;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1rem;
}

/* Redesigned Problem Section */
.problem-area {
  background: #fdfdfd;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.problem-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #1c3d7a;
  transition: all 0.3s ease;
}

.problem-card:hover {
  border-left-color: #e9c35a;
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.p-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-icon i {
  font-size: 1.5rem;
  color: #e9c35a;
}

.p-icon-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.p-text h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #132a54;
  margin-bottom: 0.5rem;
}

.p-text p {
  margin: 0;
  color: #6b778d;
  font-size: 0.88rem;
  line-height: 1.5;
}

.problem-cta {
  font-weight: 700;
  color: #102348;
  font-size: 1.1rem;
  background: #fffcf5;
  padding: 1rem;
  border-radius: 12px;
  display: inline-block;
  margin-top: 2rem;
  border: 1px solid #f9efe4;
}

.mobile-only {
  display: none;
}

.problem-nav,
.cert-nav {
/*  display: none !important;*/
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.prob-nav-btn,
.cert-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #d1b465;
  background: #ffffff;
  color: #102348;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  -webkit-tap-highlight-color: transparent;
}

.prob-nav-btn:active,
.cert-nav-btn:active {
  transform: scale(0.92);
  background: #fdfaf3;
}

.prob-nav-btn i,
.cert-nav-btn i {
  line-height: 1;
}

/* Pricing Section */
.pricing-section {
  background: #fdfcf6;
  color: #0a1a2f;
}

.pricing-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.pricing-label {
  display: inline-block;
  color: #ebb02d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.pricing-main-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #0a1a2f;
  line-height: 1.2;
  margin: 0 auto 1rem;
  max-width: 640px;
}

.pricing-subtitle {
  color: #66738d;
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  padding-top: 1rem;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 8px 30px rgba(10, 26, 47, 0.06);
  border: 1px solid rgba(10, 26, 47, 0.06);
}

.pricing-card-featured {
  background: #0a1a2f;
  color: #ffffff;
  border-color: #0a1a2f;
  box-shadow: 0 16px 40px rgba(10, 26, 47, 0.18);
}

.pricing-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ebb02d;
  color: #0a1a2f;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  white-space: nowrap;
}

.pricing-package-label {
  display: block;
  color: #ebb02d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0.65rem;
}

.pricing-card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 700;
  color: #0a1a2f;
  line-height: 1.25;
  margin: 0 0 0.5rem;
}

.pricing-card-featured .pricing-card-title {
  color: #ffffff;
}

.pricing-card-desc {
  color: #66738d;
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0 0 1.25rem;
  min-height: 2.5rem;
}

.pricing-card-featured .pricing-card-desc {
  color: #b8c4d4;
}

.pricing-amount {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 700;
  color: #0a1a2f;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.pricing-card-featured .pricing-amount {
  color: #ffffff;
}

.pricing-frequency {
  color: #66738d;
  font-size: 0.82rem;
  margin: 0 0 1.25rem;
}

.pricing-card-featured .pricing-frequency {
  color: #b8c4d4;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex-grow: 1;
}

.pricing-features li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.35rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #3d4f6a;
  border-bottom: 1px solid #e8ecf2;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: #ebb02d;
  font-weight: 700;
}

.pricing-card-featured .pricing-features li {
  color: #e2e8f0;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.pricing-outcome {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #66738d;
  margin: 0 0 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed #d5dbe5;
}

.pricing-card-featured .pricing-outcome {
  color: #b8c4d4;
  border-top-color: rgba(255, 255, 255, 0.2);
}

.pricing-btn {
  width: 100%;
  min-height: 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: auto;
}

@media (max-width: 1199px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .pricing-card-featured {
    order: -1;
  }
}

@media (max-width: 767px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card {
    padding-top: 2rem;
  }

  .pricing-card-desc {
    min-height: auto;
  }
}

/* Redesigned Solution Section */
.solution-area {
  background: #f8f5ee;
}

.solution-flex {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.solution-main-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  width: calc(50% - 1.25rem);
  max-width: 440px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 40px rgba(13, 30, 66, 0.06);
  transition: transform 0.3s ease;
}

.solution-main-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(13, 30, 66, 0.15);
}

.smc-header {
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, #102348 0%, #1c3d7a 100%);
  color: #ffffff;
  text-align: center;
}

.smc-header.second {
  background: linear-gradient(135deg, #0e2a47 0%, #164372 100%);
}

.smc-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.smc-icon i {
  font-size: 2.4rem;
  color: #e9c35a;
}

.smc-icon-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.smc-header h3 {
  margin: 0;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.smc-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.smc-body p {
  color: #132a54;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.smc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
}

.smc-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: #5f6f8f;
  font-weight: 500;
  font-size: 0.95rem;
}

.smc-list li i {
  color: #1b6e3b;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
  padding: 1.1rem;
  font-size: 1.1rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 195, 90, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.problem-card, .solution-main-card {
  animation: fadeInUp 0.8s ease backwards;
}

.problem-card:nth-child(1) { animation-delay: 0.1s; }
.problem-card:nth-child(2) { animation-delay: 0.2s; }
.problem-card:nth-child(3) { animation-delay: 0.3s; }
.problem-card:nth-child(4) { animation-delay: 0.4s; }
.problem-card:nth-child(5) { animation-delay: 0.5s; }

@media (max-width: 991px) {
  .solution-main-card {
    width: 100%;
  }
}

.services-section {
  background: #ffffff;
  padding: var(--section-padding) 0;
  color: #102348;
}

.services-head {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.services-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #102348;
}

.services-head h2 span {
  color: #c1a045;
}

.services-head p {
  margin: 0.7rem auto 0;
  max-width: 700px;
  font-size: 0.95rem;
  color: #66738d;
}

.services-list {
  margin-top: 2rem;
  border-top: 1px solid rgba(16, 35, 72, 0.14);
}

.service-row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: start;
  gap: 1rem 1.2rem;
  padding: 1.2rem 0.35rem;
  border-bottom: 1px solid rgba(16, 35, 72, 0.14);
}

.service-marker {
  position: relative;
  display: flex;
  justify-content: center;
}

.service-marker::after {
  content: "";
  position: absolute;
  top: 44px;
  bottom: -26px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(193, 160, 69, 0.5), rgba(16, 35, 72, 0.08));
}

.service-row:last-child .service-marker::after {
  display: none;
}

.service-emoji {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #f6f0df;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border: 1px solid #e3d3a4;
}

.service-icon-image {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.service-copy h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  font-weight: 800;
  color: #132a54;
}

.service-copy p {
  margin: 0.45rem 0 0;
  color: #4f6288;
  font-size: 0.92rem;
  line-height: 1.58;
  max-width: 880px;
}

.service-tag {
  align-self: center;
  white-space: nowrap;
  border: 1px solid #e0cf9d;
  background: #f4ebd2;
  color: #7d6320;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.how-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 8%, rgba(233, 195, 90, 0.18) 0%, rgba(233, 195, 90, 0) 34%),
    radial-gradient(circle at 10% 84%, rgba(75, 133, 255, 0.18) 0%, rgba(75, 133, 255, 0) 36%),
    linear-gradient(180deg, #091b40 0%, #0a1a38 100%);
  padding: var(--section-padding) 0;
}

.how-head {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}

.how-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #f4f8ff;
}

.how-head h2 span {
  color: #e9c35a;
}

.how-flow {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}

.how-flow::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 17%;
  right: 17%;
  height: 2px;
  background: linear-gradient(90deg, rgba(233, 195, 90, 0.12), rgba(233, 195, 90, 0.8), rgba(233, 195, 90, 0.12));
  z-index: 0;
}

.how-step {
  position: relative;
  z-index: 1;
  padding: 0.3rem 0.35rem 0.15rem;
  text-align: center;
}

.how-number {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0c1d41;
  background: linear-gradient(145deg, #f0cc67 0%, #dfb548 100%);
  box-shadow: 0 8px 20px rgba(233, 195, 90, 0.32);
}

.how-step h3 {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  font-weight: 800;
}

.how-step p {
  margin: 0.62rem auto 0;
  color: #c4d3ee;
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 390px;
}

.counsellor-section {
  background: #f8f5ee;
  padding: var(--section-padding) 0;
  color: #12274e;
}

.counsellor-wrap {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 2.5rem);
  align-items: center;
}

.counsellor-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(16, 35, 72, 0.15);
  border: 1px solid rgba(186, 150, 56, 0.2);
}

.counsellor-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.counsellor-photo:hover .counsellor-img {
  transform: scale(1.03);
}

.counsellor-pill {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid #e0cf9d;
  color: #ba9638;
  background: #efe7d2;
  letter-spacing: 0.07em;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
}

.counsellor-content h2 {
  margin: 0.9rem 0 0.35rem;
  color: #102348;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.counsellor-content h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.3vw, 1.4rem);
  color: #bc993e;
  font-weight: 700;
}

.counsellor-content p {
  margin: 1rem 0 0;
  color: #3f547d;
  font-size: 0.96rem;
  line-height: 1.6;
}

.counsellor-tags {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.counsellor-tags span {
  border: 1px solid #e1d2a8;
  background: #f4ecd7;
  color: #967525;
  border-radius: 9px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0.8rem;
}

.counsellor-stats {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.3rem;
}

.counsellor-stats h4 {
  margin: 0;
  color: #0f2a5a;
  font-size: clamp(1.55rem, 2.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.05;
}

.counsellor-stats p {
  margin: 0.24rem 0 0;
  color: #5b6f94;
  font-size: 0.9rem;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(233, 195, 90, 0.16) 0%, rgba(233, 195, 90, 0) 28%),
    radial-gradient(circle at 92% 88%, rgba(86, 141, 255, 0.14) 0%, rgba(86, 141, 255, 0) 32%),
    linear-gradient(180deg, #0b1d43 0%, #081734 100%);
  padding: var(--section-padding) 0;
}

.testimonials-head {
  text-align: center;
  max-width: 840px;
  margin-inline: auto;
}

.testimonials-head h2 {
  margin: 0;
  color: #f6faff;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.testimonials-head h2 span {
  color: #e9c35a;
}

.testimonials-carousel {
  margin-top: 2rem;
  padding: 0 2.8rem 2.6rem;
}

.testimonials-slide-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-item {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(3px);
  padding: 1.15rem 1rem;
}

.t-rating {
  color: #f1c95f;
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-bottom: 0.72rem;
}

.t-quote {
  margin: 0;
  color: #d8e4fa;
  font-size: 13px;
  line-height: 1.66;
}

.t-person {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.t-initial {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #f0cf75 0%, #ddb24b 100%);
  color: #0d2149;
  font-weight: 800;
  font-size: 1.04rem;
  flex-shrink: 0;
}

.t-person h3 {
  margin: 0;
  color: #f7fbff;
  font-size: 13px;
  font-weight: 700;
}

.t-person p {
  margin: 0.2rem 0 0;
  color: #b9cbea;
  font-size: 13px;
}

.testimonials-carousel .carousel-indicators {
  bottom: 0;
  margin-bottom: 0;
}

.testimonials-carousel .carousel-indicators [data-bs-target] {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  opacity: 0.45;
  background-color: #e9c35a;
}

.testimonials-carousel .carousel-indicators .active {
  opacity: 1;
}

.testimonial-control {
  width: 2.2rem;
  opacity: 0.9;
}

.testimonial-control .carousel-control-prev-icon,
.testimonial-control .carousel-control-next-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.faq-section {
  background: #f8f5ee;
  padding: var(--section-padding) 0;
  color: #102348;
}

.faq-head {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.faq-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #102348;
}

.faq-head h2 span {
  color: #c1a045;
}

.faq-list {
  margin: 1.9rem auto 0;
  max-width: 960px;
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid #e3dcc9;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(14, 31, 66, 0.06);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #162d59;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid #e0cf9d;
  background: #f4ecd7;
  color: #8d6f28;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item[open] .faq-plus {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: #516489;
  font-size: 0.93rem;
  line-height: 1.62;
}

.final-cta-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(233, 195, 90, 0.14) 0%, rgba(233, 195, 90, 0) 42%),
    radial-gradient(circle at 82% 78%, rgba(75, 133, 255, 0.12) 0%, rgba(75, 133, 255, 0) 42%),
    linear-gradient(160deg, #0b1f4b 0%, #0a234f 52%, #081c40 100%);
  padding: var(--section-padding) 0;
}

.final-cta-section::before {
  display: none;
}

.final-cta-wrap {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  padding: 0 clamp(0.4rem, 2vw, 1rem);
  position: relative;
  z-index: 1;
}

.final-cta-wrap h2 {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.final-cta-wrap h2 span {
  color: #e9c35a;
}

.final-cta-wrap p {
  margin: 0.65rem auto 0;
  max-width: 740px;
  color: #c9d8f2;
  font-size: 0.95rem;
  line-height: 1.6;
}

.final-cta-btn {
  margin-top: 1rem;
  min-width: 240px;
  padding: 0.86rem 1.45rem;
  font-size: 1.03rem;
}

.site-footer {
  background: linear-gradient(180deg, #07162f 0%, #061227 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 46px 0 26px;
  color: #d4e1f8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 1.6rem 2rem;
}

.footer-col h3 {
  margin: 0 0 0.9rem;
  color: #f5f9ff;
  font-size: 1.16rem;
  font-weight: 700;
}

.footer-brand {
  display: inline-flex;
}

.footer-logo {
  width: 80px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-about {
  margin: 1rem 0 0;
  max-width: 390px;
  color: #a9bddf;
  line-height: 1.65;
  font-size: 0.88rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: #c8d8f3;
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #f0ca67;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 0.52rem;
}

.footer-contact i {
  color: #e9c35a;
  margin-top: 0.08rem;
}

.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 0.58rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f3f7ff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.footer-social a:hover {
  transform: translateY(-1px);
  background: rgba(233, 195, 90, 0.2);
  border-color: rgba(233, 195, 90, 0.45);
  color: #fff;
}

/* Certifications Section */
.certifications-section {
  padding: var(--section-padding) 0;
  background: #ffffff;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
}

.cert-card {
  background: #fdfaf3;
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(233, 195, 90, 0.25);
  box-shadow: 0 10px 40px rgba(13, 30, 66, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(13, 30, 66, 0.1);
  border-color: var(--gold);
}

.cert-image-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 3;
}

.cert-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  transition: transform 0.5s ease;
}

.cert-card:hover .cert-img {
  transform: scale(1.05);
}

.cert-info h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #102348;
  margin-bottom: 0.75rem;
}

.cert-info p {
  color: #5f6f8f;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991.98px) {
  .certs-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .certs-grid {
    grid-template-columns: 1fr;
  }
  
  .cert-card {
    padding: 1.25rem;
  }
}

@media (max-width: 991.98px) {
  .site-header {
    position: static;
  }

  .hero-title br {
    display: none;
  }

  .usp-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .who-for-card {
            width: calc(50% - 0.75rem);
        padding: 10px 10px;
  }

  .wfc-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .wfc-num {
            font-size: 1rem;
  }

  .wfc-top {
    margin-bottom: 0.8rem;
  }

  .service-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .service-tag {
    justify-self: start;
    margin-left: 52px;
  }

  .how-flow {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.9rem;
    margin-top: 1.9rem;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    padding: 0 0.2rem 0.35rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .how-flow::-webkit-scrollbar {
    display: none;
  }

  .how-flow::before {
    display: none;
  }

  .how-step {
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 1.1rem 1rem 1.15rem;
    scroll-snap-align: start;
    min-width: clamp(280px, 82vw, 340px);
    flex: 0 0 auto;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
    max-width: 300px;
  }

  .how-step h3,
  .how-step p {
    text-align: left;
  }

  .how-number {
    margin: 0 auto 0.75rem;
  }

  .how-step p {
    margin-inline: auto;
    max-width: 320px;
  }

  .counsellor-wrap {
    grid-template-columns: 1fr;
  }

  .counsellor-photo {
    min-height: 380px;
  }

  .testimonials-carousel {
    padding-inline: 0.8rem;
  }

  .testimonials-slide-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .testimonial-control {
    width: 1.9rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .site-header {
    padding: 8px 12px;
  }

  .header-inner {
    gap: 0.55rem;
  }

  .site-logo {
    width: 55px;
    max-width: 34vw;
  }

  .site-header .btn {
    padding: 0.56rem 0.9rem;
    font-size: 0.93rem;
    border-radius: 12px;
    white-space: nowrap;
  }

  .layout-container {
    padding-inline: 0.85rem;
  }

  .hero {
            padding: 40px 0 30px;
  }

  .hero-title {
    font-size: 21px;
    line-height: 1.14;
    margin-bottom: 0.8rem;
  }

  .hero-title br {
    display: block;
  }

  .hero-copy {
           font-size: 13px;
    line-height: 1.58;
    margin-bottom: 1rem;
            text-align: center;
  }
  .hero-btns{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .badge-pill {
    font-size: 13px;
    line-height: 1.35;
    padding: 0.42rem 0.72rem;
    margin-bottom: 0.75rem;
    text-align: center;
  }

  .trust-row {
    align-items: center;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 13px;
  }

  .btn-lg-action {
    min-width: 100%;
    padding-block: 0.68rem;
  }

  .hero-actions {
    gap: 0.55rem;
    margin-bottom: 1rem;
  }
.lead-modal .modal-title {
    margin: 0px;
    color: rgb(20, 48, 106);
            font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-align: center;
}
  .form-card {
    border-radius: 18px;
    padding: 1rem 0.9rem;
  }

  .form-card p {
    font-size: 13px;
  }

  .smc-body p {
    font-size: 13px;
  }

  .form-control,
  .form-select {
            min-height: 38px;
  }

  .usp-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 0.6rem;
  }

  .metric-card h3 {
    font-size: 21px;
  }

  .metric-card p {
    font-size: 13px;
    line-height: 1.3;
  }

  .problem-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding: 0.5rem 0 1.2rem;
    margin-inline: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
            margin-bottom: -15px;
  }

  .problem-grid::-webkit-scrollbar {
    display: none;
  }

  .problem-grid::-webkit-scrollbar-thumb {
    display: none;
  }

  .problem-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    margin: 0 !important;
    animation: none;
    transform: none !important;
    border-radius: 12px; /* Restore card shape */
  }

  .problem-card:hover {
    transform: none !important;
  }

  .certs-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding: 0.5rem 0 1.2rem;
    margin-inline: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .certs-grid::-webkit-scrollbar {
    display: none;
  }

  .certs-grid::-webkit-scrollbar-thumb {
    background: #d1b465;
    border-radius: 10px;
  }

  .cert-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    margin: 0 !important;
  }

  .cert-info h3 {
    font-size: 21px;
  }

  .cert-info p {
    font-size: 13px;
  }

  .solution-flex {
    gap: 22px;
  }

  .solution-main-card {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(13, 30, 66, 0.08);
  }

  .smc-header {
    padding: 0.9rem 1rem;
  }

  .smc-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.5rem;
  }

  .smc-icon i {
    font-size: 1.8rem;
  }

  .smc-header h3 {
    font-size: 16px;
    margin-bottom: 0;
  }

  .smc-body {
    padding: 1rem 1rem;
  }

  .smc-body p {
    font-size: 12px;
    margin-bottom: 0.8rem;
    font-weight: 600;
  }

  .smc-list {
    margin: 0 0 1rem 0;
  }

  .smc-list li {
    margin-bottom: 0.6rem;
    font-size: 12px;
    gap: 0.5rem;
  }

  .smc-list li i {
    font-size: 1rem;
    margin-top: 0.1rem;
  }

  .btn-full {
    padding: 0.8rem 0.9rem;
    font-size: 13px;
  }

  .mobile-only {
    display: flex ;
  }

  .usp-trust-row {
    justify-content: flex-start;
    padding-block: 0.9rem;
    font-size: 13px;
    gap: 0.75rem 1.2rem;
  }

  .wfc-desc {
    font-size: 13px;
  }

  .wfc-link {
    font-size: 13px;
  }

  .wfc-icon {
            width: 43px;
        height: 40px;
        font-size: 1.5rem;
        margin-bottom: 5px;
  }

  .p-text h3 {
            font-size: 15px;
  }

  .p-text p {
    font-size: 13px;
  }

  .service-copy h3 {
    font-size: 15px;
  }

  .service-copy p {
    font-size: 13px;
  }

  .service-marker::after {
    left: 19px;
  }

  .service-tag {
    margin-left: 44px;
    font-size: 13px;
  }

  .how-section {
    padding: 40px 0 46px;
  }

  .how-head h2 {
    font-size: clamp(1.5rem, 7.2vw, 2rem);
  }

  .how-step h3 {
    font-size: 16px;
  }

  .how-step p {
    font-size: 13px;
  }

  .counsellor-section {
    padding: 42px 0 46px;
  }

  .counsellor-content h2 {
    font-size: 21px;
  }

  .counsellor-content h3 {
    font-size: 13px;
  }

  .counsellor-content p {
    font-size: 13px;
  }

  .counsellor-photo {
    min-height: 300px;
  }

  .counsellor-stats h4 {
    font-size: 21px;
  }

  .counsellor-stats p {
    font-size: 13px;
  }

  .testimonials-section {
    padding: 42px 0 48px;
  }

  .testimonials-carousel {
    padding-inline: 0;
    padding-bottom: 2.4rem;
  }

  .testimonial-item {
    padding: 1rem 0.9rem;
  }

  .faq-section {
    padding: 42px 0 48px;
  }

  .faq-item summary {
    padding: 0.9rem 0.85rem;
    font-size: 15px;
  }

  .faq-item p {
    padding: 0 0.85rem 0.9rem;
    font-size: 13px;
  }

  .final-cta-section {
    padding: 36px 0 40px;
  }

  .final-cta-wrap h2 br {
    display: none;
  }

  .final-cta-btn {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    padding: 38px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .footer-logo {
    width: 85px;
  }
}

@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
    gap: 0.9rem;
  }
}

@media (min-width: 576px) and (max-width: 1299.98px) {
  .layout-container {
    max-width: 1190px;
    padding-inline: 1.25rem;
  }
}

@media (min-width: 1300px) and (max-width: 1599.98px) {
  .layout-container {
    max-width: 1300px;
    padding-inline: 1.8rem;
  }
}

@media (min-width: 1600px) {
  .layout-container {
    max-width: 1360px;
    padding-inline: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title,
  .usp-intro h2,
  .services-head h2,
  .how-head h2,
  
  .testimonials-head h2,
  .faq-head h2,
  .final-cta-wrap h2 {
    font-size: 21px !important;
    line-height: 1.25 !important;
            text-align: center;
  }

  .lead-modal .modal-header,
  .lead-modal .modal-body {
    padding-inline: 0.88rem;
  }
}
@media (max-width: 768px){
  .wfc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}
.usp-intro-wrap {
    background: #f8f5ee;
    color: #1a2a4b;
    padding: 20px 0 35px;
}
.who-for-grid {
            display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 25px;
}
.wfc-content h3 {
   margin: 0 0 0.5rem;
        color: #132a54;
        font-size: 11px;
        line-height: 1.35;
        font-weight: 800;
}

.wfc-desc {
    font-size: 9px;
        line-height: 1.5;
        margin: 0 0 1rem;
        color: #5f6f8f;
}

.wfc-link {
    font-size: 13px;
    color: #b49035;
    font-weight: 600;
    display: none;
}
.section-subtitle {
    color: #66738d;
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 13px;
}
.smc-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #5f6f8f;
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 7px;
}
.smc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}
.smc-header {
          padding: 10px 25px;
        background: linear-gradient(135deg, #102348 0%, #1c3d7a 100%);
        color: #ffffff;
        text-align: center;
/*        display: flex;*/
                justify-content: center;
        align-items: center;
                gap: 12px;
}
.btn-full {
    width: 100%;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.smc-header h3 {
    margin: 0;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.5px;
}
.btn {
    border-radius: 0.8rem;
    font-weight: 700;
    padding: 0.72rem 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 13px;
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.section-main-title {
    color: #102348;
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: 21px;
}
.prob-nav-btn, .cert-nav-btn {
            width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1.5px solid #d1b465;
        background: #ffffff;
        color: #102348;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        -webkit-tap-highlight-color: transparent;
}
.form-card h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: #1c2a4e;
    font-size: 17px;
    margin-bottom: 20px;
    text-align: center;
}
.usp-intro p {
    margin: 0 auto;
    color: #66738d;
    font-size: 13px;
    max-width: 720px;
}
.wfc-icon-image {
    max-width: 80%;
    max-height: 89%;
    object-fit: contain;
}
.p-icon-image {
    max-width: 91%;
    max-height: 91%;
    object-fit: contain;
}
.problem-card {
    display: flex;
    gap: 1.25rem;
    padding: 17px 12px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #1c3d7a;
    transition: all 0.3s ease;
}
.how-number {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.85rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #0c1d41;
    background: linear-gradient(145deg, #f0cc67 0%, #dfb548 100%);
    box-shadow: 0 8px 20px rgba(233, 195, 90, 0.32);
}
.form-select {
    --bs-form-select-bg-img: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    max-width: 253px;
}
.counsellor-img {
    width: 100%;
    height: 298px;
    object-fit: contain;
    transition: transform 0.5s ease;
}
}
.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    /*background: #fff;
    padding: 10px;*/
    z-index: 9999;
  }

  .mobile-cta a {
    width: 100%;
    display: block;
  }
  .lead-modal .form-control, .lead-modal .form-select,
  .lead-modal .lead-input, .lead-modal .lead-select {
    background: #ffffff;
    border: 1.5px solid #d1dcef;
    color: #1e2b45;
    min-height: 44px;
    border-radius: 12px;
    font-size: 0.85rem;
  }

  .lead-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lead-form-trust {
    gap: 0.4rem 0.75rem;
  }

  .lead-form-trust span {
    font-size: 0.65rem;
  }

  .lead-form-submit {
    min-height: 48px;
    font-size: 0.92rem;
  }

  .lead-modal .modal-body {
    max-height: calc(100vh - 140px);
    padding: 0.85rem 1rem 1rem;
  }

  .lead-modal .modal-header {
    padding: 1rem 1rem 0.85rem;
  }
.lead-modal .btn-close {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid #d8d2be;
    background-color: #ffffff;
    background-size: 0.72rem;
    box-shadow: 0 6px 14px rgba(17, 43, 86, 0.12);
    opacity: 1;
}
.lead-modal .btn-dark-blue {
    background: linear-gradient(120deg, #12357b 0%, #1d4fa3 100%);
    box-shadow: 0 12px 22px rgba(15, 52, 117, 0.24);
    border-radius: 14px;
    min-height: 37px;
    font-size: 1.05rem;
}
}
