body {
  font-family: Calibri, sans-serif;
  background: #e6f9fe;
  margin: 0;
  padding: 0;
}

.top-bar {
  background: #f3f3f3;
  padding: 6px 20px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { text-decoration: none; color: #1A1F71; }
.social-icons a { margin-left: 10px; font-size: 18px; }

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 70px;
  background: white;
  border-bottom: 1px solid #e0e0e0;
  box-sizing: border-box;
}
header img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
nav a {
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
  color: #1A1F71;
  line-height: 70px;
  font-family: Calibri, sans-serif;
}
nav a:hover { color: #00BFEF; }

/* Slider background */
.slider-bg {
  background: #e6f9fe;
  min-height: 0!important;
  padding: 32px 0 12px 0;
}

/* Remove ALL space below slider */
.loan-slider,
.slick-slider,
.slick-list,
.slick-track {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  height: auto !important;
}

/* Loan Card */
.loan-slider {
  max-width: 1200px;
  margin: 0 auto !important;
  padding-bottom: 0 !important;
}

.loan-card {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 38px 32px 38px 40px;
  margin: 24px 0;
}

.loan-content {
  max-width: 60%;
  z-index: 2;
}

.loan-image {
  position: absolute;
  top: 26px;
  right: 40px;
  margin: 0;
  z-index: 1;
  flex: 0 0 260px;
  text-align: right;
  align-items: flex-start;
  justify-content: flex-end;
  display: flex;
  min-width: 180px;
  margin-top: -8px;
  margin-bottom: 0;
}
.loan-image img {
  max-width: 200px;
  width: 160px;
  height: auto;
  border-radius: 12px;
  background: #eaf7fd;
  display: inline-block;
  box-shadow: 0 1px 10px 0 rgba(0,191,239,0.09);
  margin-top: 0;
  margin-right: 0;
}

.loan-content h2 {
  font-size: 36px;
  color: #1A1F71;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.3;
}
.loan-content h2 span { color: #e91e63;   font-size: 38px; /* Example: larger than parent text */ }
.loan-content ul { padding-left: 22px; margin: 10px 0 16px 0; }
.loan-content ul li { color: #333; margin-bottom: 6px; }
.apply-btn {
  background: #1A1F71;
  color: #fff;
  padding: 9px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 26px;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 0;
  border: none;
  transition: background 0.2s;
}
.apply-btn:hover { background: #00BFEF; color: #fff; }

/* WhatsApp & Apply Now button group */
.loan-btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 5px;
  padding: 7px 11px 7px 10px;
  transition: background 0.2s;
  border: none;
}

.whatsapp-btn:hover {
  background: #21b859;
}

.whatsapp-btn img {
  width: 26px;
  height: 26px;
  display: block;
}

/* Dots & arrows same */
.slick-dots { bottom: 0 !important; margin-bottom: 0 !important; padding-bottom: 0 !important;}
.slick-dots li button:before {
  font-size: 15px;
  color: #1A1F71;
  opacity: 0.32;
}
.slick-dots li.slick-active button:before {
  color: #00BFEF;
  opacity: 1;
}
.slick-arrow {
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 1px 6px 0 rgba(26,31,113,0.10);
  width: 34px; height: 34px; z-index: 9;
}
.slick-prev { left: -44px; }
.slick-next { right: -44px; }

/* Mobile */
@media (max-width: 900px) {
  .loan-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    padding: 20px 3vw !important;
    min-height: 170px;
    gap: 10px;
  }
  .loan-content {
    text-align: center;
    padding-right: 0;
  }
  .loan-image {
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 5px;
    min-width: 90px;
    position: static !important;
  }
  .loan-image img { max-width: 70px; margin: 0 auto; }
  .slick-arrow { display: none !important; }
}

/* Slick Dots Centered */
.slick-dots {
  bottom: 0px !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.slick-dots li button:before {
  font-size: 16px;
  color: #1A1F71;
  opacity: 0.32;
}
.slick-dots li.slick-active button:before {
  color: #00BFEF;
  opacity: 1;
}

/* Arrow Styles */
.slick-arrow {
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 1px 6px 0 rgba(26,31,113,0.12);
  width: 36px;
  height: 36px;
  z-index: 9;
}
.slick-prev { left: -48px; }
.slick-next { right: -48px; }

/* Mobile Responsive */
@media (max-width: 900px) {
  .loan-card {
    flex-direction: column !important;
    text-align: center;
    padding: 28px 2vw !important;
    gap: 18px;
  }
  .loan-content {
    text-align: center;
    padding-right: 0;
  }
  .loan-image {
    justify-content: center;
    margin-top: 10px;
    position: static !important;
  }
  .loan-image img { max-width: 120px; margin: 0 auto; }
  .slick-arrow { display: none !important; }
}

@media (max-width: 900px) {
  .loan-content h2 {
    font-size: 26px;  /* Smaller font on mobile */
  }
}

/* Gyaan Box (Tip Section) */

.gyaan-box {
  max-width: 1100px;
  margin: 32px auto 0 auto !important;
  background: #eaf7fd;
  border-left: 7px solid #00BFEF;
  border-radius: 18px;
  box-shadow: 0 3px 18px rgba(26,31,113,0.08);
  padding: 42px 54px;
}

.gyaan-title {
  font-size: 2.1rem;   /* ~34px */
  color: #1A1F71;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 800;
}

.gyaan-title span {
  font-size: 2.3rem;
}

.gyaan-box ul {
  margin: 0;
  padding-left: 24px;
}

.gyaan-box li {
  margin-bottom: 14px;
  font-size: 16px;   /* ~21px */
  color: #173258;
  line-height: 1.65;
  font-weight: 500;
}

.gyaan-box b {
  color: #e91e63;
  font-weight: 700;
}


@media (max-width: 700px) {
  .gyaan-box {
    padding: 16px 12px;
    font-size: 15px;
  }
  .gyaan-title { font-size: 18px; }
  .gyaan-box li { font-size: 14px; }
}
.process-section {
  background: #fafdff;
  margin: 50px auto 0 auto;
  padding: 28px 0 42px 0;
  border-radius: 16px;
  max-width: 1220px;
  box-shadow: 0 2px 16px 0 rgba(0,191,239,0.07);
}

.process-title {
  text-align: center;
  margin-bottom: 32px;
}
.process-title span {
  color: #00BFEF;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.process-title h2 {
  margin: 10px 0 0 0;
  font-size: 36px;
  color: #222a54;
  font-family: inherit;
  font-weight: 700;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0px;
  margin-top: 24px;
}

.process-step {
  background: #fff;
  border-radius: 16px;
  width: 22.5%;
  min-width: 200px;
  margin: 0 1%;
  box-shadow: 0 2px 10px 0 rgba(0,191,239,0.07);
  padding: 20px 18px 30px 18px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-img img {
  width: 98px;
  height: 98px;
  object-fit: contain;
  background: #e6f9fe;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,191,239,0.09);
  margin-bottom: 14px;
  border: 3px solid #00BFEF33;
}

.process-step-num {
  background: #00BFEF;
  color: #fff;
  border-radius: 22px;
  display: inline-block;
  font-weight: 700;
  font-size: 17px;
  padding: 6px 22px;
  margin-bottom: 10px;
  margin-top: -20px;
  z-index: 2;
  box-shadow: 0 2px 8px 0 rgba(0,191,239,0.07);
}

.process-step h3 {
  margin: 10px 0 6px 0;
  color: #222a54;
  font-size: 21px;
  font-weight: 700;
}
.process-step p {
  color: #626f8f;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 900px) {
  .process-steps { flex-direction: column; align-items: center; }
  .process-step { width: 95%; margin-bottom: 22px; }
  .process-section { padding: 18px 0 30px 0;}
  .process-title h2 { font-size: 26px;}
}

.core-value-section {
  max-width: 1150px;
  margin: 60px auto 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(0,191,239,0.09);
  padding: 48px 36px 36px 36px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.core-value-title span {
  color: #00BFEF;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 5px;
}
.core-value-title h2 {
  font-size: 2.7rem;
  font-weight: 800;
  color: #1A1F71;
  margin: 0 0 26px 0;
  line-height: 1.15;
}
.core-value-tabs {
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.core-btn {
  background: #fafdff;
  border: 2px solid #1A1F71;
  color: #1A1F71;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1.16rem;
  font-weight: 700;
  cursor: pointer;
  transition: 
    background 0.18s, 
    color 0.18s, 
    box-shadow 0.18s, 
    border 0.18s;
  box-shadow: 0 2px 12px 0 rgba(0,191,239,0.06);
  outline: none;
  min-width: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.core-btn i {
  font-size: 1.16rem;
  opacity: 0.86;
}
.core-btn.active, .core-btn:hover {
  background: linear-gradient(90deg, #00BFEF 0%, #2be7e7 100%);
  color: #fff;
  border: 2px solid #00BFEF;
  box-shadow: 0 2px 14px 0 rgba(0,191,239,0.13);
}
.core-value-description {
  margin-top: 18px;
  background: #eaf7fd;
  border-radius: 10px;
  font-size: 1.22rem;
  font-weight: 500;
  color: #173258;
  padding: 22px 20px 20px 20px;
  min-height: 60px;
  box-shadow: 0 2px 6px rgba(26,31,113,0.04);
}
.core-value-description b {
  color: #1A1F71;
}
@media (max-width: 800px) {
  .core-value-section { padding: 24px 8vw; }
  .core-value-title h2 { font-size: 2rem; }
  .core-btn { font-size: 1rem; min-width: 135px; padding: 9px 9px; }
  .core-value-description { font-size: 1.04rem; }
}

/*Partner Selection start */

.partners-section {
  max-width: 1160px;
  margin: 60px auto 0 auto;
  background: #fafdff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(0,191,239,0.09);
  padding: 42px 28px 28px 28px;
  position: relative;
}

.partners-title h2 {
  font-size: 2.1rem;
  text-align: center;
  color: #1A1F71;
  font-weight: 800;
  margin-bottom: 36px;
  letter-spacing: 0.1px;
  flex-wrap: nowrap;
}
.partners-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.slider-track {
  display: flex;
  gap: 32px;
  will-change: transform;
  transition: transform 0.18s linear;
}

@keyframes scrollPartners {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo {
  min-width: 150px;
  max-width: 170px;
  min-height: 75px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(26,31,113,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 26px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.partner-logo img {
  max-width: 110px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.2s, transform 0.18s;
}
.partner-logo:hover {
  box-shadow: 0 6px 16px 0 rgba(0,191,239,0.10);
  transform: translateY(-4px) scale(1.07);
}
.partner-logo:hover img {
  filter: grayscale(0%);
}

@media (max-width: 700px) {
  .partners-section { padding: 22px 3vw; }
  .partners-title h2 { font-size: 1.13rem; }
  .partner-logo { min-width: 110px; max-width: 130px; padding: 12px 10px; }
  .partner-logo img { max-width: 75px; }
}

/*Partner Selection end */

/*Footer Selection Start */
.suite-footer {
  background: #232645;
  color: #e8ecf5;
  padding: 0 0 0 0;
  font-family: 'Montserrat', Calibri, Arial, sans-serif;
  box-shadow: 0 -2px 20px 0 rgba(0,30,70,0.13);
  position: relative;
}
.suite-footer-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 20px 28px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px 56px;
  justify-content: space-between;
}
.suite-footer-brand {
  flex: 1 1 220px;
  min-width: 200px;
  font-size: 1rem;
  color: #e8ecf5;
}
.suite-footer-brand p {
  color: #adb6d3;
  font-size: 1rem;
  margin-top: 10px;
  line-height: 1.6;
}

.suite-footer-nav, .suite-footer-contact {
  flex: 1 1 140px;
  min-width: 140px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.suite-footer-nav h4, .suite-footer-contact h4 {
  color: #09f0ff;
  font-size: 1.04rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.suite-footer-nav a {
  color: #e8ecf5;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 2px;
  transition: color 0.17s;
}
.suite-footer-nav a:hover { color: #09f0ff; }
.suite-footer-contact div {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 2px;
  color: #e8ecf5;
}
.suite-footer-contact a {
  color: #e8ecf5;
  text-decoration: none;
  transition: color 0.17s;
  font-size: 1rem;
  word-break: break-all;
}
.suite-footer-contact a:hover { color: #09f0ff; }
.suite-footer-contact i {
  color: #09f0ff;
  font-size: 1.06rem;
  margin-top: 2px;
  width: 19px;
  text-align: center;
}

.suite-footer-social {
  flex: 0 0 100px;
  min-width: 92px;
  display: flex;
  gap: 11px;
  margin-top: 14px;
  align-items: center;
}
.suite-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #262963;
  color: #09f0ff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 19px;
  transition: background 0.19s, color 0.16s;
  box-shadow: 0 1.5px 8px rgba(9,240,255,0.07);
  border: 1.2px solid #262963;
}
.suite-footer-social a:hover {
  background: #09f0ff;
  color: #232645;
  border-color: #09f0ff;
}

.suite-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid #2e314d;
  padding: 19px 20px 18px 20px;
  color: #7ea1d8;
  font-size: 1rem;
}
.suite-footer-bottom span {
  flex: 1;
}
.suite-footer-top {
  color: #09f0ff;
  font-weight: 600;
  font-size: 1.02rem;
  text-decoration: none;
  transition: color 0.18s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.suite-footer-top:hover {
  color: #fff;
}
.suite-footer-top i {
  font-size: 1.14rem;
}

/* Responsive */
@media (max-width: 850px) {
  .suite-footer-main { flex-direction: column; gap: 32px 0; }
  .suite-footer-social { margin-top: 10px; }
  .suite-footer-bottom { flex-direction: column; gap: 10px 0; align-items: flex-start; }
}
@media (max-width: 500px) {
  .suite-footer-main { padding: 30px 10px 10px 10px; }
  .suite-footer-bottom { padding: 13px 8px 12px 8px; font-size: .95rem;}
}


/*Footer Selection end */

/* Preloder image section start */

#preloader {
  position: fixed;
  z-index: 9999;
  background: #fafdff;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(.7,0,.3,1);
}
#preloader img {
  width: 110px;
  height: 110px;
  animation: preloader-bounce 1.3s infinite alternate;
}
@keyframes preloader-bounce {
  0%   { transform: scale(1) rotate(-8deg);}
  40%  { transform: scale(1.06) rotate(3deg);}
  70%  { transform: scale(0.98) rotate(-2deg);}
  100% { transform: scale(1) rotate(0deg);}
}
body.loaded #preloader {
  opacity: 0;
  pointer-events: none;
}

/* Preloder image section end */

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 2000;
  transition: transform 0.36s cubic-bezier(.7,0,.3,1), box-shadow 0.24s;
  background: #fff;
  box-shadow: 0 0 0 0 transparent;
}
.sticky-header.hide {
  transform: translateY(-120%);
}
.sticky-header.show {
  transform: translateY(0);
  box-shadow: 0 3px 24px 0 rgba(30,60,110,0.08);
}
body.header-space {
  padding-top: 112px; /* Adjust this to your header height in px */
}

body {
  padding-top: 112px; /* Adjust to match header + top-bar total height */
}

.apply-section {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #fafdff;
  padding: 40px 0 60px 0;
}

.apply-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(0,191,239,0.09);
  padding: 36px 32px;
  max-width: 440px;
  width: 100%;
  margin-top: 32px;
}

.apply-card h2 {
  text-align: center;
  color: #1A1F71;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: .5px;
}

.apply-form label {
  font-weight: 500;
  margin-top: 15px;
  display: block;
  color: #232650;
}
.apply-form input, .apply-form select {
  width: 100%;
  padding: 8px 12px;
  margin-top: 5px;
  border: 1px solid #c6e6f4;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: border 0.17s;
}
.apply-form input:focus, .apply-form select:focus {
  border-color: #00BFEF;
  outline: none;
}
.apply-form button[type="submit"] {
  background: #00BFEF;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 0;
  font-size: 1.15rem;
  font-weight: 700;
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.18s;
}
.apply-form button[type="submit"]:hover {
  background: #1A1F71;
}

.apply-form label a {
  color: #00BFEF;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .apply-card { padding: 22px 7vw; }
}

.consent-label a { color: #00BFEF; text-decoration: underline; }
.consent-label input[type="checkbox"] { margin-right: 6px; }
@media (max-width: 600px) {
  .consent-label { font-size: 0.96rem; }
}

/*FAQs Section Starts */

.two-col-apply {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 38px;
  max-width: 1050px;
  margin: 0 auto;
}
.faq-col {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(0,191,239,0.07);
  padding: 32px 28px;
  min-width: 300px;
  max-width: 380px;
  width: 100%;
  margin-top: 32px;
  font-size: 1rem;
}
.faq-col h3 {
  color: #00BFEF;
  font-size: 1.2rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.faq-col ul {
  list-style: disc inside;
  padding: 0 0 0 12px;
}
@media (max-width: 900px) {
  .two-col-apply { flex-direction: column; gap: 0; }
  .faq-col, .apply-card { max-width: 98vw; min-width: unset; }
  .faq-col { margin-bottom: 20px; }
}
.apply-card { max-width: 370px !important; } /* Make form smaller */

.faq-accordion {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(0,191,239,0.07);
  padding: 28px 20px 10px 20px;
  min-width: 300px;
  max-width: 380px;
  width: 100%;
  margin-top: 32px;
}
.faq-accordion .faq-title {
  color: #1A1F71;
  font-size: 1.18rem;
  font-weight: bold;
  margin-bottom: 18px;
}
.faq-item {
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fafbfc;
  box-shadow: 0 1px 2px 0 rgba(0,191,239,0.03);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 18px 18px 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.03rem;
  border: none;
  background: #fafbfc;
  outline: none;
  transition: background 0.16s;
}
.faq-question[aria-expanded="true"] {
  background: #f1fbff;
}
.faq-answer {
  display: none;
  padding: 0 18px 15px 18px;
  font-size: 1rem;
  color: #232650;
}
.faq-item.active .faq-answer {
  display: block;
  animation: faqExpand .21s;
}
@keyframes faqExpand { from { opacity:0; transform:translateY(-8px);} to { opacity:1; transform:translateY(0);} }
.faq-toggle {
  font-size: 1.3rem;
  color: #1A1F71;
  transition: transform 0.18s;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
/* FAQ Accordion Styling */
.faq-title {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #18205b;
}
.faq-item {
  margin-bottom: 13px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(26,31,113,0.03);
  transition: box-shadow 0.18s;
}
.faq-item.active {
  box-shadow: 0 4px 18px 0 rgba(0,191,239,0.10);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: none;
  background: none;
  font-size: 1.03rem;
  font-weight: 700;
  color: #1A1F71;
  padding: 20px 24px;
  cursor: pointer;
  outline: none;
  text-align: left;
  position: relative;
}
.faq-toggle {
  font-size: 1.36em;
  color: #00bfef;
  margin-left: 18px;
  flex-shrink: 0;
  font-weight: 900;
}
.faq-answer {
  padding: 12px 24px 18px 24px;
  color: #232650;
  font-size: 0.98rem;
  background: #fafdff;
  border-radius: 0 0 10px 10px;
}


/*FAQs Section end */

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 14px 0;
  width: 100%;
}
.consent-row input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.consent-row label {
  font-size: 1rem;
  color: #232650;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.5;
  margin: 0;
  display: block;
}
.consent-row a {
  color: #00BFEF;
  text-decoration: underline;
}

/* filed value validation section Start */
input.error {
  border-color: #e91e63;
}
.error-message {
  color: #e91e63;
  font-size: 0.9em;
  margin-top: 2px;
  display: block;
}

/* filed value validation section end */

.otp-btn {
  background: #00BFEF;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 0;
  font-size: 1.15rem;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  transition: background 0.18s;
  margin-top: 8px;
  margin-bottom: 0;
}
.otp-btn:disabled { opacity:0.7; cursor:not-allowed; }
