
html {
  scroll-behavior: smooth;
}

/* ✅ FORCE FONTS */
body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

h1,
.font-serif {
  font-family: "Playfair Display", Georgia, serif;
}

/* ✅ Luxurious Cyan Shimmer (Heading Variant) */
.animated-gradient-text {
  background: linear-gradient(
    to right,
    #38bdf8 20%,
    #e0f2ff 40%,
    #1b9fda 60%,
    #38bdf8 80%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: headingShine 4s linear infinite;
}

/* Smooth shimmer movement */
@keyframes headingShine {
  to {
    background-position: 200% center;
  }
}

/* 🔁 Smooth flowing border (premium fintech style) */
.rotating-btn {
  position: relative;
  padding: 14px 38px;
  border-radius: 9999px;
  background: #120c36; /* inner fill */
  color: #eaf6ff;
  letter-spacing: 0.16em;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 0;
}

/* Animated flowing border */
.rotating-btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    #2dace2,
    #bfebff,
    #7ccdf3,
    #064864,
    #8fdcff,
    #38bdf8
  );
  background-size: 220% 220%;
  animation: headingShine 3.2s linear infinite;
  z-index: -2;
}

/* Inner mask (keeps border visible only) */
.rotating-btn::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: #120c36;
  z-index: -1;
}
/* ✅ Hover interaction – subtle lift + shadow */
.rotating-btn {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.rotating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.25),
    0 4px 12px rgba(3, 105, 161, 0.25);
}

/* Optional: slightly brighten text on hover */
.rotating-btn:hover span,
.rotating-btn:hover i {
  color: #ffffff;
}
/* ======================================================
   ASPIRATION CARD – CANONICAL STRUCTURE
   ====================================================== */

.asp-card {
  position: relative;
  padding: 2px;
  border-radius: 20px;
  overflow: hidden;

  transform: translateY(0);
  box-shadow: none;

  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

/* Rotating border stroke */
.asp-card::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(#1e3a8a, #2563eb, #38bdf8, #2563eb, #1e3a8a);
  animation: strokeRotate 12s linear infinite;
  z-index: 0;
}

/* ======================================================
   INNER CARD
   ====================================================== */

.asp-card-inner {
  position: relative;
  z-index: 1;

  background: linear-gradient(180deg, #ffffff, #f4f9ff);
  border-radius: 18px;
  padding: 28px 26px 24px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  height: 100%;
}

/* ======================================================
   ICON
   ====================================================== */

.asp-icon {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  color: #ffffff;

  background: linear-gradient(135deg, #60a5fa, #2563eb);
  margin-bottom: 18px;

  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

/* Icon rotating halo (HOVER ONLY) */
.asp-icon::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(#1e3a8a, #2563eb, #38bdf8, #2563eb, #1e3a8a);
  opacity: 0;
  animation: strokeRotate 6s linear infinite;
  z-index: -1;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

/* ======================================================
   TEXT CONTENT
   ====================================================== */

.asp-title {
  font-size: 20px;
  font-weight: 600;
  color: #3fa1ff;
  margin-bottom: 10px;
  cursor: pointer;
}

.asp-desc {
  font-size: 16px;
  color: #475569; /* blue-grey for readability */
  line-height: 1.7;
  margin-bottom: 26px;
}

/* ======================================================
   ACTION ROW
   ====================================================== */

.asp-action {
  margin-top: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.asp-link-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1b9fda;
  cursor: pointer;
}

.asp-arrow {
  width: 28px;
  height: 28px;
  border-radius: 9999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #1b2a4a;
  color: #ffffff;
  font-size: 16px;

  transition: transform 0.25s ease;
  cursor: pointer;
}

/* ======================================================
   HOVER STATE
   ====================================================== */

.asp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(30, 58, 138, 0.18);
}

/* Icon animates on hover */
.asp-card:hover .asp-icon {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
}

.asp-card:hover .asp-icon::before {
  opacity: 1;
}

/* Arrow micro motion */
.asp-card:hover .asp-arrow {
  transform: translateX(3px);
}

/* ======================================================
   ROTATION KEYFRAMES
   ====================================================== */

@keyframes strokeRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ======================================================
   STEP DOTS (3D FLOATING)
   ====================================================== */

.step-dot {
  position: relative;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #1b2a4a;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;

  box-shadow: 0 10px 25px rgba(27, 42, 74, 0.35),
    inset 0 -4px 10px rgba(0, 0, 0, 0.25);

  z-index: 2;
}

.step-dot span {
  position: absolute;
  top: -14px;
  right: -10px;
  background: #38bdf8;
  color: white;
  font-size: 10px;
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* ======================================================
   BLUEPRINT CARDS (3D)
   ====================================================== */

.blueprint-card {
  background: white;
  border-radius: 18px;
  padding: 34px 28px;
  text-align: left;

  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blueprint-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
/* ======================================================
   BLUEPRINT – PIXEL MATCH FIX
   ====================================================== */

.bp-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1b2450;
  color: white;
  font-size: 11px;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 24px rgba(27, 36, 80, 0.35);
}

/* Cards */
.bp-card {
  background: white;
  border-radius: 22px;
  padding: 35px 40px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(20, 30, 50, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.bp-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1b2450;
  color: white;
  font-size: 22px;

  margin: 0 auto 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 26px rgba(27, 36, 80, 0.35);
}

.bp-card-title {
  font-size: 22px;
  font-weight: 500;
  color: #1b2450;
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
}

.bp-card-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #6b7a90;
  margin-bottom: 28px;
}

/* Small buttons inside cards */
.bp-small-btn {
  background: #1b2450;
  color: #bfe3ff;
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease,
    color 0.28s ease;
}

.bp-small-btn:hover {
  background: #0f1738;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(27, 36, 80, 0.35);
}

/* ======================================================
   BLUEPRINT TIMELINE – EXACT MATCH
   ====================================================== */

/* Horizontal line */
.bp-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(59, 130, 246, 0.15),
    rgba(59, 130, 246, 0.35),
    rgba(59, 130, 246, 0.15)
  );
}

/* Step wrapper */
.bp-step {
  position: relative;
}

/* Main dark circle */
.bp-main-dot {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1b2450;
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(27, 36, 80, 0.35);
  border: 2px solid #ffffff;
}

.bp-mini-dot {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #38bdf8;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgb(7 36 49 / 45%);
  border: 2px solid #ffffffd6;
}

/**************/
/* Background */
/* ===============================
/* ===============================
  WRAPPER
================================ */
/* ===============================
  BACKGROUND WRAPPER
================================ */
.sip-wrap {
  background: radial-gradient(circle at top, #1a1f55, #0b0f2c);
  padding: 40px 20px;
}

/* ===============================
  MAIN CARD
================================ */
.sip-card {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  border-radius: 22px;
  padding: 40px 25px;
}

@media (min-width: 768px) {
  .sip-card {
    padding: 50px 60px;
  }
}

/* ===============================
  HEADER
================================ */
.sip-header {
  text-align: center;
  margin-bottom: 50px;
}

.sip-pill {
  font-size: 14px;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid #cfe3ff;
  color: #5b6cff;
  display: inline-block;
}

.sip-header h2 {
  font-size: 32px;
  line-height: 1.2;
  color: #0f1b45;
  font-family: "Playfair Display", serif;
}

@media (min-width: 768px) {
  .sip-header h2 {
    font-size: 44px;
  }
}

.sip-header p {
  max-width: 600px;
  margin: 14px auto;
  color: #6b7a90;
  font-size: 15px;
}

/* ===============================
  GRID
================================ */
.sip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1024px) {
  .sip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }
}

/* ===============================
  LEFT SIDE
================================ */
.sip-row {
  margin-bottom: 32px;
}

.sip-row label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #6b7a90;
  margin-bottom: 8px;
  display: block;
}

/* RANGE INPUT */
.sip-row input[type="range"] {
  width: 100%;
  height: 10px;
  margin-top: 16px;
  background: #e6eaf2;
  border-radius: 999px;
  appearance: none;
}

.sip-row input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  background: #5b6cff;
  border-radius: 50%;
  cursor: pointer;
}

/* TOP NUMBER INPUT RIGHT */
.sip-input-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: -30px;
}

@media (max-width: 480px) {
  .sip-input-wrap {
    margin-top: 10px;  /* prevents overflow on small screens */
    justify-content: flex-start;
  }
}

.sip-input-wrap input {
  width: 70px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  background: none;
  color: #1b9fda;
}

.sip-input-wrap span {
  margin-left: 4px;
  font-size: 16px;
  font-weight: 600;
  color: #1b9fda;
}

/* INFO BOX */
.sip-info {
  background: #f3f7ff;
  padding: 16px;
  border-radius: 10px;
  color: #47536b;
  font-size: 14px;
}

/* ===============================
  RIGHT SIDE PANEL
================================ */
.sip-right {
  background: linear-gradient(180deg, #242a64, #141844);
  border-radius: 18px;
  padding: 30px 25px;
  color: #ffffff;
}

@media (min-width: 768px) {
  .sip-right {
    padding: 44px;
  }
}

.sip-right h4 {
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
  color: #cfe3ff;
}

/* PROGRESS BARS */
.bar-label {
  font-size: 12px;
  margin-bottom: 6px;
  color: #cfe3ff;
}

.bar {
  height: 16px;
  background: #2b3577;
  border-radius: 999px;
  margin-bottom: 18px;
}

.bar div {
  height: 100%;
  background: #5b6cff;
  border-radius: 999px;
}

.bar.cyan div {
  background: linear-gradient(90deg, #41d9ff, #7feeff);
}

.cyan {
  color: #41d9ff;
}

/* TOTAL VALUE */
.sip-total {
  font-size: 32px;
  margin: 20px 0 26px;
  font-family: "Playfair Display", serif;
}

@media (min-width: 768px) {
  .sip-total {
    font-size: 42px;
  }
}

/* SPLIT ROW */
.sip-split {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.sip-split small {
  color: #cdd6ff;
}

.sip-split strong {
  font-family: "Playfair Display", serif;
  font-size: 16px;
}

/* BUTTON */
.sip-btn {
  width: 100%;
  background: transparent;
  border: 2px solid #41d9ff;
  color: #ffffff;
  padding: 16px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  cursor: pointer;
  font-size: 14px;
}

.sip-btn:hover {
  background: rgba(65, 217, 255, 0.12);
}

/********************/
/* ===============================
   SOCIAL PROOF – FIXED TO MATCH IMAGE
================================ */

.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px; /* more air like reference */
  margin-top: 10px;
}

.sp-card {
  background: #f9f9f9d9;
  border-radius: 12px;
  padding: 20px 30px 20px;
  text-align: left;
  box-shadow: 0 2px 7px rgb(15 27 69 / 9%);
  position: relative;
  /* min-height: 210px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sp-quote {
  position: absolute;
  top: 0px;
  right: 5px;
  font-size: 35px;
  color: #4ea7f9;
  opacity: 0.9;
}

/* Text */
.sp-text {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 22px;
  font-weight: 400;
}

/* Author */
.sp-author strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #0f1b45;
  margin-bottom: 2px;
}

.sp-author span {
  font-size: 11px;
  color: #64748b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* CTA spacing */
.text-center.mt-6 {
  margin-top: 42px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .sp-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===============================
   CONFUSION CTA SECTION
================================ */

.confusion-cta {
  position: relative;
  background: #202750;
  overflow: hidden;
  text-align: center;
}

/* soft center glow */
.confusion-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(56, 189, 248, 0.25),
    transparent 60%
  );
  z-index: 0;
}

.cta-inner {
  position: relative;
  max-width: 760px;
  margin: auto;
  z-index: 1;
}

/* pill */
.cta-pill {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  color: #9ddcff;
  border: 1px solid rgba(157, 220, 255, 0.35);
  margin-bottom: 22px;
}

/* heading */
.cta-heading {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-heading span {
  font-style: italic;
  color: #38bdf8;
  font-weight: 500;
}

/* paragraph */
.cta-text {
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  max-width: 620px;
  margin: 0 auto 36px;
}

.cta-text strong {
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}
/* button */
.cta-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.16em;
  padding: 0;
  cursor: pointer;
  margin-bottom: 24px;
}

.cta-btn:hover {
  color: #38bdf8;
}

/* footnote */
.cta-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #93c5fd;
}

/* red dot */
.cta-footnote .dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
}

/* ===============================
   FAQ SECTION
================================ */
.faq-section {
  background: #f9fbfd;
}

/* FAQ list */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(15, 27, 69, 0.08);
  overflow: hidden;
}

/* Question */
.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #1b2a4a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #6b7a90;
  display: none;
}

/* Active state */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* ===============================
   CONSULT SECTION
================================ */
.consult-section {
  background: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Card wrapper */
.consult-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 27, 69, 0.18);
}

/* LEFT SIDE */
.consult-left {
  padding: 60px;
  background: linear-gradient(135deg, #1b234b, #0e1433);
  color: #ffffff;
}

.consult-title {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.consult-sub {
  font-size: 15px;
  color: #cfd6ff;
  margin-bottom: 28px;
}

/* Points */
.consult-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.consult-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 14px;
  color: #e5e9ff;
}

.consult-points i {
  color: #3fd1ff;
  font-size: 16px;
  background: #ffffff1a;
  border-radius: 100%;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0 0 BLACK;
}
/* RIGHT SIDE */
.consult-right {
  background: #ffffff;
  padding: 60px;
}

.consult-right form {
  max-width: 100%;
  margin: auto;
}

/* Labels */
.consult-right label {
  font-size: 16px;
  letter-spacing: 0.14em;
  color: #8a94ad;
  display: block;
  margin-bottom: 6px;
}

.consult-right input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e3e6f0;
  padding: 12px 4px;
  font-size: 14px;
  /*margin-bottom: 30px;*/
  outline: none;
  color: #000;
}

.consult-right input:focus {
  border-color: #1b234b;
}

/* Button */
.consult-btn {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: #1b234b;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.14em;
  cursor: pointer;
  margin-top: 10px;
}

/* Note */
.consult-note {
  text-align: center;
  font-size: 16px;
  color: #8a94ad;
  margin-top: 12px;
}
.consult-btn:disabled
 {
    cursor: default;
    background: #131a3d57;
}
/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .consult-card {
    grid-template-columns: 1fr;
  }

  .consult-left,
  .consult-right {
    padding: 40px 28px;
  }

  .consult-title {
    font-size: 30px;
  }
}

/* ===============================
   FOOTER
================================ */
.site-footer {
  background: linear-gradient(180deg, #0b0f2c, #070a1f);
  color: #9aa4c6;
  padding: 70px 24px 28px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Top row */
.footer-top {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
}

/* Brand */
.footer-brand .brand-name {
  font-size: 22px;
  font-weight: 600;
  color: #5fb3ff;
  letter-spacing: 0.02em;
}

.footer-brand .brand-name span {
  color: #ffffff;
}

.brand-tagline {
  font-size: 11px;
  letter-spacing: 0.18em;
  margin-top: 6px;
  color: #8aa0ff;
}

/* Nav */
.footer-nav {
  display: flex;
  gap: 26px;
}

.footer-nav a {
  font-size: 13px;
  color: #cdd6ff;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #5fb3ff;
}

/* Divider */
.footer-divider {
  max-width: 1200px;
  height: 1px;
  margin: 22px auto 26px;
  background: linear-gradient(to right, transparent, #1f255a, transparent);
}

/* Disclaimer */
.footer-disclaimer {
  max-width: 1200px;
  margin: auto;
  font-size: 12px;
  line-height: 1.8;
  color: #8d98c4;
}

.footer-disclaimer h5 {
  font-size: 12px;
  font-weight: 600;
  color: #cdd6ff;
  margin-bottom: 8px;
}

.footer-disclaimer p {
  margin-bottom: 12px;
}

/* Bottom bar */
.footer-bottom {
  max-width: 1200px;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #7f8ab8;
}

.dev-credit strong {
  color: #9bc9ff;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Sticky CTA Container */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 900px;
  z-index: 999;
  animation: sticky-cta__slideUp 0.6s ease forwards;
}

/* CTA Background */
.sticky-cta__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  border-radius: 999px;
  background: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
              linear-gradient(135deg, #0b1a2b, #071427);
  background-size: 12px 12px, cover;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Text Section */
.sticky-cta__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sticky-cta__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
}

.sticky-cta__title strong {
  color: #6ecbff;
}

/* Blue Dot */
.sticky-cta__dot {
  width: 8px;
  height: 8px;
  background: #5bbcff;
  border-radius: 50%;
}

.sticky-cta__text small {
  font-size: 12px;
  color: #b5c7da;
}

/* Button */
.sticky-cta__btn {
  background: linear-gradient(135deg, #4db7ff, #2d91ff);
  color: #041424;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.25s ease;
  white-space: nowrap;
}

.sticky-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(77, 183, 255, 0.4);
}

/* Animation */
@keyframes sticky-cta__slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 40px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {

.sticky-cta__content {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-radius: 0;
    /* padding: 16px 18px; */
}
  .sticky-cta__title {
    font-size: 14px;
  }

  .sticky-cta__btn {
    align-self: stretch;
    justify-content: center;
    padding: 10px 0;
    font-size: 14px;
  }
}
.iti.iti--allow-dropdown {
    width: 100%;
    color: #000;
}
.iti--separate-dial-code .iti__selected-flag {
    background-color: rgb(255 255 255 / 19%);
}
