#mastheadquiz {
    background-color: #0d3b6e ;
    position: sticky !important;
    top: 0 !important;
    z-index: 100000;
    text-align:center;
}
.containerquiz {
    max-width: 1280px;
    padding: 20px;
}
.quizbtn {
  display: inline-block;
  background-color: #fff200;
  color: #0d3b6e ;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 40px;
  border: 3px solid #0d3b6e ;
  border-radius: 14px;
  text-align: center;
  letter-spacing: 0.5px;
  font-family: Arial, Helvetica, sans-serif;

  /* transition */
  transition: 
    background-color 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.quizbtn:hover {
  background-color: #ffe600;
  transform: translateY(-2px); /* subtle lift */
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  cursor: pointer;
}
.quizDiv{
   text-align-last: left;
    margin-top: 50px;
}
@media screen and (max-width: 768px) {
  
   .quiz-wrapper.card-body {
        padding: 0.3rem !important;
        margin: 10px !important;
        max-width: 100% !important;
    }
.quizDiv{
   text-align-last: left;
    margin-top: 0px;
}
.card-body {
  text-align: left !important;
  text-align-last: left !important;
  padding: 0.3rem !important;
}
}
.quiz-wrapper {
  max-width: 680px;
  margin: 40px auto;
  background: #fff;
  padding: 40px 30px 50px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgb(2, 75, 123);
  text-align: center;
  text-align-last: center !important;
  font-family:'DM Sans', sans-serif;
}

#quiz-container h1 {
  color: #0d3b6e;
  font-weight: 700;
  margin-bottom: 10px;

  /* ✅ responsive scaling */
  font-size: clamp(22px, 5vw, 32px);
  line-height: 1.2;
}

#quiz-container .subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 50px;
    color:#0d3b6e ;
}


#quiz-container .trust {
  font-size: 18px;
  font-style: italic;
  margin: 60px 0 40px;
      color:#0d3b6e ;
}

/* Start Button */
.start-btn {
  background-color: #fff200;
  color: #0033cc;
  font-size: 18px;
  font-weight: bold;
  padding: 12px 40px;
  border: 3px solid #0d3b6e ;
  border-radius: 12px;
  cursor: pointer;

  transition: 
    background-color 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.start-btn:hover {
  background-color: #ffe600;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.start-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.q-subtitle {
  color: #555;
  margin-bottom: 35px;
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 25px;
  margin-top:20px;
}
.options-grid-child {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
/* OPTION CARD */
.option-card {
  position: relative;
  padding-right:38px !important;
  background: #ffffff;          /* yellow */
   /* black border */
  cursor: pointer;
  color: #0d3b6e ;               /* blue text */
  display: flex;
  align-items: left;
  text-align: left;
    justify-content: space-between;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    gap: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* HOVER */
.option-card:hover {
  transform: translateY(-2px);
}

/* HIDE INPUT */
.option-card input {
  display: none;
}

.check-circle {
  position: absolute;
  right: 18px;
  width: 22px;
  height: 22px;
  border: 2px solid #b6c8dc;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* Checkmark (hidden by default) */
.check-circle::after {
  content: "✓";
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.2s ease;
}

/* Box active */
 input:checked ~ .check-circle {
  background: #0d3b6e;
  border-color: #0d3b6e;
}

/* ✅ Show checkmark */
.option-card input:checked ~ .check-circle::after {
  opacity: 1;
  transform: scale(1);
}
/* ===============================
   CHECKED STATE
   =============================== */

/* RADIO CIRCLE */
/* RADIO CIRCLE */
.radio-circle {
  position: absolute;
  right: 18px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #0d3b6e;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.option-card input:checked ~ .check-circle {
  background: #0d3b6e;
  border-color: #0d3b6e;
}
.radio-circle::after {
  content: "✔";
  font-size: 14px;
  font-weight: bold;
  color: white;
  transform: scale(0);
  transition: transform 0.2s ease;
}

/* SELECTED STATE */
.option-card input:checked ~ .radio-circle{
background: #0d3b6e;
  border-color: #0d3b6e;
}

/* Show tick */
.option-card input:checked ~ .radio-circle::after {
  transform: scale(1);
}

/* Text highlight */
.option-card input:checked ~ .option-text {
  font-weight: 700;
}

/* SELECTED CARD EFFECT */


/* MOBILE */
@media (max-width: 600px) {
  .options-grid {
    grid-template-columns: 1fr;
  }
}
.option-card.full {
  grid-column: 1 / -1;
  max-width: 420px;
  margin: 0 auto;
}
.next-btn {
  background: #2d6cdf;
  color: #fff;
  border: none;
  padding: 14px 45px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.next-btn:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 59, 110, 0.3);
}

.btn-back:hover{
  border: 2px solid  #1f3c88;
}
.q-subtitle {
  color: #0d3b6e;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-top: 40px;
  font-size: 22px;
  text-align: left;
}
.q-sub-subtitle {
  color: #3a4f7a;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}
#quiz-container .progress-wrap {
  margin-bottom: 30px;
}

#quiz-container .progress-text {
  font-size: 14px;
  margin-bottom: 8px;
      color: #0d3b6e 
}
#quiz-container .progress-bar {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  height: 6px;
  background: var(--border);
}

#quiz-container .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0d3b6e , var(--gold));
  transition: width 0.5s ease;
}
.quizform-h2{
      font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--navy);
    margin-bottom: 8px;
}
/* #quiz-container .progress-bar {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 6px;
}

#quiz-container .progress-fill {
  height: 100%;
  background: #2d6cdf;
  border-radius: 6px;
  transition: width 0.3s ease;
} */
#quiz-container .form-control{

  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition: border 0.2s;
  width: 100%;
  height:100%;

}
#quiz-container h2 {
  color: #0d3b6e;
  font-family: 'Playfair Display', serif;

  /* ✅ responsive font size */
  font-size: clamp(20px, 4vw, 26px);
}
#quiz-container h2::after{
  background-color:#fff !important;
}
#lead_text {
  color: #1a7a8a;
  margin-top: 20px;
}


.two-column-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.maxsel{
  color:#0d3b6e ;
  font-style: italic;
}
/*=======Result page quiz---*/
.card-body {
  padding: 35px 40px;
  text-align: left !important;
  text-align-last: left !important;
  padding: 3.25rem !important;
}
#quiz-container .card-title{
  font-size: 25px !important;
  color: #0a4c78;
  font-weight: 600;
  margin-bottom: 20px;
}
#quiz-container .card-heading{
  color: #0d3b6e ;
  font-size: 20px;
}
#quiz-container .meta {
  font-size: 15px;
  color: #333;
  margin: 6px 0;
}

.card-body .meta strong {
  color: #0a4c78;
}

.card-body .section-title {
  margin-top: 30px;
  font-size: 26px;
  color: #0a4c78;
  font-weight: 700;
}
.product-card a {
  color: #0a4c78;
  text-decoration: none;
  font-size: 16px !important;
}
.card-body .description {
  font-size: 16px;
  color: #555;
  margin: 12px 0 25px;
}

.card-body .actions {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-body .actions li {
  font-size: 16px;
  color: #0a4c78;
  margin: 10px 0;
  font-weight: 500;
}

.proceed-card {
    padding: 30px;
    border-radius: 18px;
    font-family: 'Segoe UI', sans-serif;
   
}
.proceed-continue {

 text-align-last:center !important;
 margin-top: 50px;
}
.proceed-card h2 {
    color: #0b4c8c;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Radio Buttons */
.radio-group {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.radio-box {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}

.radio-box input {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #0b4c8c;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.radio-box input:checked {
    background: #f4c21d;
    box-shadow: 0 0 0 4px rgba(244,194,29,0.3);
}

/* Action Buttons */
.action-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: all 0.25s ease;
    position: relative;

    /* 3D depth */
    box-shadow:
        0 6px 0 rgba(0, 0, 0, 0.25),   /* bottom thickness */
        0 12px 20px rgba(0, 0, 0, 0.2); /* soft shadow */
}


/* Call Button */
.action-btn.call {
    background: linear-gradient(135deg, #0b4c8c, #145da0);
    color: #fff;
    box-shadow: 0 8px 20px rgba(11,76,140,0.25);
}

.action-btn.call:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(11,76,140,0.35);
}

/* WhatsApp Button */
.action-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #1ebe57);
    color: white;
    box-shadow: 0 8px 20px rgba(37,211,102,0.25);
}

.action-btn.whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(37,211,102,0.35);
}
.bestfit {
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  margin-bottom: 24px;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);

   
}

.cta-btn {
    display: inline-block;
    background: #ffea00;
    color: #0b4c8c;
    padding: 20px 60px;
    border: 3px solid #0b4c8c;
    border-radius: 20px;
    font-weight: 700;
    font-size: 22px;
    text-decoration: none;
    position: relative;
    transition: 0.3s ease;
}

/* Arrow */
.cta-btn::after {
    content: "→";
    position: absolute;
    right: 25px;
    font-size: 26px;
    transition: transform 0.3s ease;
}

/* Hover effect */
.cta-btn:hover::after {
    transform: translateX(6px);
}

.q-down{
  width: 15px;
}
.proceed-btn {
display: inline-block;
  color: #0d3b6e ;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 10px;
  border: 2px solid #0d3b6e ;
  border-radius: 14px;
  text-align: center;
  letter-spacing: 0.5px;
  font-family: Arial, Helvetica, sans-serif;
  transition: background-color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
/*****page modifications**************/
:root {
    --navy: #0d3b6e;
    --navy-dark: #082a52;
    --gold: #f5c518;
    --gold-dark: #e0b010;
    --teal: #1a7a8a;
    --white: #ffffff;
    --light-bg: #f4f7fb;
    --card-bg: #ffffff;
    --border: #d8e4f0;
    --text-dark: #0d2d4e;
    --text-mid: #3a5a7a;
    --text-light: #7a97b5;
    --green: #16a34a;
    --whatsapp: #25D366;
    --shadow-sm: 0 2px 8px rgba(13,59,110,0.08);
  /*--shadow-md: 0 10px 25px rgba(0, 0, 0, 0.2),0 20px 50px rgba(0, 0, 0, 0.15);*/
    --shadow-md:   0 3px 10px rgba(0, 0, 0, 0.4);

    --shadow-lg: 0 20px 60px rgba(13,59,110,0.18);
    --radius: 16px;
    --radius-sm: 10px;
  }


 /* Quiz CTA section BELOW banner */
  .quiz-cta-section {
    background: #fff;
    padding: 60px 40px;
    text-align: center;
    text-align-last: center
  }
  .quiz-cta-inner { max-width: 680px; margin: 0 auto; }
  .quiz-cta-inner h2 { font-family: 'Playfair Display', serif; font-size: 32px !important;font-weight:bold; color: var(--navy); margin-bottom: 10px; }
  .quiz-cta-inner p { font-size: 16px; color: #0d3b6e   !important; margin-bottom: 32px; line-height: 1.7; }
  .quiz-cta-pills { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
  .cta-pill { background: white; border: 1.5px solid #0d3b6e ; color: #0d3b6e ; padding: 7px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; }
/* THE KEY CTA BUTTON IN RIBBON */
  .ribbon-cta {
    background: var(--gold);
    border-radius:50px;
    color: var(--navy);
    border: 3px solid var(--gold-dark);
    padding: 11px 22px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 13px !important;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 18px rgba(245,197,24,0.45), inset 0 1px 0 rgba(255,255,255,0.3);
    display: flex; align-items: center; gap: 8px;
    animation: ribbonPulse 2.5s ease-in-out infinite;
  }
  @keyframes ribbonPulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(245,197,24,0.45), inset 0 1px 0 rgba(255,255,255,0.3); }
    50% { box-shadow: 0 6px 28px rgba(245,197,24,0.7), inset 0 1px 0 rgba(255,255,255,0.3); }
  }
  .ribbon-cta:hover {
    background: #ffe040;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(245,197,24,0.6);
    animation: none;
  }
  .ribbon-cta .cta-icon { font-size: 16px; }
.welcome-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--navy);

  /* ✅ responsive font */
  font-size: clamp(24px, 5vw, 36px);

  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

/* .welcome-sub {
  font-size: 16px;
  color: #0d3b6e  !important;
  margin-bottom: 40px !important;
  line-height: 2 !important;
} */
.welcome-sub{
    font-size: clamp(14px, 2vw, 16px);
    color: #0d3b6e !important;
    margin-bottom: clamp(20px, 4vw, 40px) !important;
    line-height: clamp(1.6, 2vw, 2) !important;
}
.welcome-trust {
  font-size: clamp(13px, 2.5vw, 14px) !important;
  color: #0d3b6e;
  margin-bottom: 24px;
  line-height: 1.5;
}
.btn-welcome-start:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(245,197,24,0.55);
  background: #ffe040;
}
.btn-welcome-start {
  background: var(--gold);
  color: var(--navy);
  border: 3px solid var(--gold-dark);
  padding: 15px 64px;
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 24px rgba(245,197,24,0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.progress-bars {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 10px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.progress-label {
    font-size: clamp(10px, 1.5vw, 11px);
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: clamp(0.3px, 0.1vw, 0.5px);
    text-transform: uppercase;
}
.progress-frac {
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 700;
  color: var(--navy);
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.quiz-flow-wrapper{
  text-align-last:left;
}
.btn-back {
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: white;
  color: var(--text-mid);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.quiz-nav {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  padding-top: 8px;
}
.next-btn {
  padding: 12px 32px;
  border-radius: 50px;
  border: none;
  background: var(--navy);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(13,59,110,0.25);
}
.welcome-meta {
text-align: left;
  display: inline-block;
  width: 70%;
}
@media (max-width: 480px) {
.welcome-meta {
  text-align: left;
  display: inline-block;
  width: 100%;
}
}
.welcome-meta-row {
  font-size: clamp(13px, 2.5vw, 15px);
  color: var(--text-dark);
  margin-bottom: 10px;

  display: flex;
  gap: 8px;
  align-items: baseline;
  line-height: 1.5;

  flex-wrap: wrap; /* ✅ prevents overflow on small screens */
}
.welcome-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 10px;
  margin: 28px auto;
}
.wm-label {
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.result-thankyou .hi-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid #267354;
  color: #065f46;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.result-thankyou {
  text-align: center;
  margin-bottom: 40px;
  text-align-last:center;
  font-size: clamp(14px, 2vw, 16px);
}
.result-thankyou h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--navy);
  margin-bottom: 22px;
  font-weight: 600;
}
.rec-card-header .match-badge {
  background: var(--gold);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}
.rec-card-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: clamp(16px, 3vw, 28px) clamp(18px, 4vw, 36px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
.rec-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 3vw, 24px);
  color: white;
}
.rec-body {
  padding: 28px 36px;
}
.rec-row {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
@media (max-width: 768px) {
    .rec-row {
        flex-direction: column;
        gap: 4px;
        padding: 12px 0;
        text-align: left;
  text-align-last: left;
    }
    .rec-key {
        min-width: auto;
        width: 100%;
          text-align-last: left;
        text-align: left;
    }
    .rec-tag {
        padding:0px 10px !important;
    }
    .insight-block{
      text-align:left;
    }
    .pillars{
    display: inline-block !important;
    gap: 12px;
    }
    .pillar{
      margin-bottom: 12px;
    }
}
.rec-key {
  font-size: 13px;
  font-weight: 700;
  color: #1a7a8a;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  width: 160px;
  flex-shrink: 0;
  padding-top: 2px;
  text-align: left;
  text-align-last: left;

}
.rec-val {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.6;
}
.rec-tag {
  background: #eff6ff;
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}
.insight-block {
  background: linear-gradient(135deg, #f0f7ff, #e8f5f0);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 26px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.download-card {
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  padding: 32px 36px;
  margin-bottom: 24px;
  text-align-last: left;
  text-align: left;
}
.download-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.download-card .sub {
    font-size: clamp(12px, 1.8vw, 14px);
    color: var(--text-light);
    margin-bottom: clamp(16px, 3vw, 24px);
    line-height: 1.5;
}
.download-item {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.download-item:hover {
  border-color: var(--navy);
  background: #f0f5ff;
  transform: translateX(4px);
}
.dl-icon {
    width: clamp(38px, 5vw, 42px);
    height: clamp(38px, 5vw, 42px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(16px, 2.5vw, 20px);
    flex-shrink: 0;
}

.dl-icon.blue {
    background: #dbeafe;
}

.dl-icon.teal {
    background: #ccfbf1;
}

.dl-text .dl-title {
    font-weight: 700;
    font-size: clamp(13px, 2vw, 15px);
    color: var(--navy);
    line-height: 1.4;
}

.dl-text .dl-sub {
    font-size: clamp(11px, 1.5vw, 12px);
    color: #024b7b;
    line-height: 1.5;
}

.dl-arrow {
    margin-left: auto;
    color: var(--text-light);
    font-size: clamp(16px, 2vw, 18px);
}

.proceed-card {
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  padding: 32px 36px;
  margin-bottom: 24px;
}
.proceed-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 3vw, 24px);
    color: var(--navy);
    margin-bottom: clamp(12px, 2vw, 20px);
    text-align: left;
    text-align-last: left;
    font-weight: 600;
    line-height: 1.3;
}
.proceed-options {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.radio-option.active {
  border-color: var(--navy);
  color: var(--navy);
  background: #eff6ff;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 2px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  color: var(--text-mid);
}
.btn-schedule:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}
.btn-schedule {
  background: var(--navy);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(13,59,110,0.25);
  flex: 1;
  justify-content: center;
}
.btn-whatsapp:hover {

  background: #0d3b6e;
  transform: translateY(-2px);
  color: #fff;
}

.btn-whatsapp {
  background: #fece1a;
  color: #0d3b6e;
  border: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
  border:3px #0d3b6e solid;
}
.no-thankyou {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  padding: 18px 0 4px;
  border-top: 1px solid var(--border);
  text-align-last: left;
  text-align: left;
}
.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.close-btnq:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #dc2626;
}
.close-btnq {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
  margin-top: -4px;
}
.quiz-top-left {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.quiz-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 0 28px;
  gap: 16px;
}
.btn-view-results {
  background: var(--navy);
  color: white;
  border: none;

  /* ✅ responsive padding */
  padding: 14px 20px;

  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;

  /* ✅ responsive font */
  font-size: clamp(14px, 2.5vw, 16px);

  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(13,59,110,0.28);

  display: inline-flex;
  align-items: center;
  gap: 8px;

  width: 100%;
  justify-content: center;
}

/* ✅ Tablet */
@media (min-width: 576px) {
  .btn-view-results {
    padding: 14px 28px;
    width: auto; /* not full width */
  }
}

/* ✅ Desktop */
@media (min-width: 992px) {
  .btn-view-results {
    padding: 16px 44px;
    font-size: 16px;
  }
}
  .btn-view-results:hover { background: var(--navy-dark); transform: translateY(-2px); }
  .privacy-note {
  font-size: 12px;
  color: #0d3b6e;
  margin-top: 16px;
}

.option-btn.selected {
  border-color: var(--navy);
  background: #e8f0fd;
  color: var(--navy);
  box-shadow: 0 0 0 4px rgba(13,59,110,0.08);
}
.option-card:has(input:checked) {
  border-color: var(--navy);
  background: #e8f0fd;
  color: var(--navy);
}
 .option-card:hover { border-color: var(--navy); background: #f0f5ff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.radio-option.active .radio-dot {
  border-color: var(--navy);
}
.radio-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.radio-option.active .radio-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  display: block;
}
.close-wrapper{
    display: flex;
    justify-content: flex-end;
}
.close-btnq{
    float: right;
}
.btnschedule{
  display: inline-block;
  margin: 10px;
}
  .pillars { grid-template-columns: 1fr; }
      /* Safety pillars */
  .pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 24px; }
  .pillar {
    background: white; border-radius: var(--radius); padding: 20px 16px; text-align: center;
   /* box-shadow: var(--shadow-sm);*/
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  }
  .pillar-icon { font-size: 26px; margin-bottom: 8px; }
  .pillar-txt { font-size: 13px; font-weight: 600; color: var(--text-mid); }
.hr-sub-question {
  border: none;
  border-top: 1px solid #6ee7b7;
  margin: 30px 0;
  position: relative;
}

.hr-sub-question::after {
  content: "More Details";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 10px;
  color: #059669;
  font-size: 13px;
}
.option-card.selected .check-circle{
    background: #0d3b6e;
    border-color: #0d3b6e;
}

.option-card.selected .radio-circle{
    border-color: #0d3b6e;
}

.option-card.selected .radio-circle::after{
    opacity: 1;
}
.meeting-popup {
    width: 100%;
    max-width: 300px;
    margin: 15px auto 0;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    position: relative;
    box-sizing: border-box;
}

.meeting-popup .close-btn {
    position: absolute;
    top: 10px;
    right: 1px;
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    color: #000;
}

.meeting-popup .form-control {
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .meeting-popup {
        max-width: 100%;
        padding: 15px;
        margin-top: 10px;
    }

    .meeting-popup .close-btn {
        top: 8px;
        right: 1px;
        font-size: 12px;
    }

    .btnschedule {
        width: 100%;
        margin-top: 10px;
    }
}
.continue-img {
    width: clamp(80px, 15vw, 100px);
  max-width: 100%;
  height: auto;
}
.heart-icon {
    color: #fb515e;
    font-size: clamp(18px, 3vw, 28px);
}