/* Mobile specific adjustments */
@media (max-width: 770px) {
  /* Target the Play Store button inside hero section */
  .hero-section .col-lg-7 a img {
    display: block;
    margin-left: 0 !important;
    /* align left */
    margin-right: auto !important;
    margin-bottom: 0.5rem !important;
    /* reduce big gap */
    max-width: 180px;
  }

  /* Heading adjust */
  .hero-section .hero-heading {
    margin-top: -80px !important;
    /* bring heading up */
    text-align: left !important;
    /* force left alignment */
  }

  /* Description adjust */
}

.footer-link {
  color: white !important;
  text-decoration: none !important;
  transition: text-decoration 0.2s ease-in-out;
}

.footer-link:hover {
  text-decoration: underline !important;
}

/* Unique styling just for RBI Sachet link (optional) */
#rbi-sachet-link {
  font-weight: 500;
  /* example: slightly bold */
}

#rbi-sachet-link:hover {
  color: #f1c40f;
  /* example: gold color on hover */
}

#more-text {
  /* --- Core styles for the scrollable box --- */
  display: block;
  max-height: 7.5em;
  /* This sets the height to roughly 5 lines */
  overflow-y: auto;
  /* This makes the content scrollable */

  /* --- CSS rules to hide the scrollbar --- */

  /* For Firefox */
  scrollbar-width: none;

  /* For Internet Explorer and Edge */
  -ms-overflow-style: none;
}

/* For Chrome, Safari, and other WebKit-based browsers */
#more-text::-webkit-scrollbar {
  display: none;
}

.popup-form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  display: none;
  /* Initially hidden */
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.popup-form-container {
  background-color: #fff;
  padding: 40px 80px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 700px;
  position: relative;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.popup-form-container .close-btn-form {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
  border: none;
  background: none;
  line-height: 1;
}

.popup-form-container h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.popup-form-container h2 span {
  color: #fd7c04;
}

.popup-form-container p {
  font-size: 20px;
  color: #001c43;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
}

.popup-form-container .form-group {
  margin-bottom: 20px;
}

.popup-form-container .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.popup-form-overlay.show {
  display: flex;
}

/* === STYLES FOR CUSTOM CHECKBOX === */
.popup-form-container .form-check {
  display: flex;
  align-items: flex-start;
  text-align: left;
  font-size: 14px;
  color: #555;
}

.popup-form-container .form-check-input {
  /* Hide the original checkbox */
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.popup-form-container .form-check-label {
  /* position: relative; */
  padding-left: 8px;
  cursor: pointer;
  line-height: 20px;
  color: #001c43;
  font-size: 14px;
  line-height: 24px;
}

/* Create the custom checkbox box using a pseudo-element */
.popup-form-container .form-check-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  background-color: #fff;
  /* border-radius: 4px; */
  transition: background-color 0.2s, border-color 0.2s;
}

/* Style the box when the hidden checkbox is checked */
.popup-form-container .form-check-input:checked + .form-check-label::before {
  background-color: #fd7c04;
  border-color: #fd7c04;
}

/* Create the checkmark using another pseudo-element */
.popup-form-container .form-check-label::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  /* Hidden by default */
  transition: opacity 0.2s;
}

/* Show the checkmark when the hidden checkbox is checked */
.popup-form-container .form-check-input:checked + .form-check-label::after {
  opacity: 1;
  /* Show it */
}

/* Style the "Show More" link */
.popup-form-container .form-check-label a {
  color: #fd7c04;
  font-weight: 600;
  text-decoration: none;
}

.steps-timeline {
  padding: 20px 0;
}

.step-image {
  max-width: 18%;
  /* Ensure images are responsive within their flex item space */
  height: auto;
  /* Maintain aspect ratio */
  /* You can set a specific max-width if crops vary too much in size, e.g., max-width: 200px; */
  flex-shrink: 0;
  /* Prevent images from shrinking too much if space is tight */
}

.step-connector {
  flex-grow: 1;
  /* Allows the connector to take up available space */
  height: 2px;
  /* Thickness of the dashed line */
  background: repeating-linear-gradient(
    to right,
    #fd7c04,
    /* Light green color, similar to the image */ #fd7c04 6px,
    /* Length of the dash */ transparent 14px,
    /* Start of the gap (same as dash length for equal spacing) */ transparent
      25px
      /* End of the gap (dash length + gap length = pattern repeat length) */
  );
  margin-top: 30px !important;
  /* Horizontal margin to space it from the images */
  min-width: 70 !important;
  /* Ensure the connector is visible even on smaller screens or if steps are close */
  min-width: 70px;
  /* Ensures the connector is visible even on smaller screens or if steps are close */
}

.m-step {
  margin-top: 80px !important;
}

/* Responsive adjustments for icon and text if needed on smaller screens */

.about-text {
  color: #001c43 !important;
  text-align: justify !important;
  line-height: 32px !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  background-color: #fefefe !important;
  border-radius: 8px !important;
  padding: 16px 16px !important;
  margin-top: -25px !important;
}

@media screen and (max-width: 770px) {
  .about-text {
    font-size: 16px !important;
    line-height: 28px !important;
  }
}

.p-6 {
  padding: 30px !important;
}

/* ----- Email Banner Styles ----- */

.email-banner-container {
  position: relative;
  text-align: center;
  /* Helps center the image if it's not full width and the overlay */
}

.email-banner-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  /* Adjust as needed, prevents text from touching edges */
  max-width: 700px;
  /* Optional: set a max-width for very wide screens */
  z-index: 1;
  /* Ensures text is on top of the image */
  padding: 20px;
  /* Add some padding if needed, especially if background has distinct edges */
  box-sizing: border-box;
  /* Ensures padding doesn't add to the width */
}

.email-banner-heading {
  font-family: "Inter" sans-serif;
  /* Consider using your site's primary font */
  font-size: 32px;
  /* Adjust size as needed */
  font-weight: bold;
  color: #25252d;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 48px !important;
}

.email-banner-subheading {
  font-family: "Inter", sans-serif;
  /* Consider using your site's primary font */
  font-size: 22px;
  /* Adjust size as needed */
  color: #001c43;
  margin-top: 0;
  margin-bottom: 25px;
  line-height: 1.4;
}

/* Responsive adjustments (Example - adjust breakpoints and styles as needed) */
@media (max-width: 770px) {
  .mobile-help-section {
    background-image: url("../img/ema.svg");
    background-size: cover;
    /* Ensures the image covers the entire area */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    border: 1px solid #fd7c04;
    border-radius: 10px;
    margin-left: 15px;
    margin-right: 15px;
    overflow: hidden;
    /* Ensures rounded corners clip the background */
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.1);  */
  }

  .email-banner-heading {
    font-size: 24px;
    line-height: 28px !important;
    padding-left: 60px;
    padding-right: 60px;
    margin-bottom: 10px;
  }

  .email-banner-subheading {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 24px !important;
    font-weight: 500 !important;
    margin-bottom: 20px;
  }
}

.icon-circle {
  /* background-color: #fd7c04; */
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mt {
  margin-top: -1px !important;
}

.top {
  margin-top: -40px !important;
}

.address-box {
  border: 1px solid #cccccc;
  background-color: #fff;
  border-radius: 16px;
  transition: box-shadow 0.3s ease;
}

.info-box {
  border: 1px solid #cccccc;
  background-color: #fff;
  border-radius: 16px;
  transition: box-shadow 0.3s ease;
}

.icon-circle img {
  width: 84px;
  height: 84px;
}

.info-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px !important;
  line-height: 20px !important;
  color: #131313 !important;
}

.info-text {
  color: #001c43 !important;
  font-size: 18px !important;
  line-height: 24px !important;
  text-align: center !important;
}

@media (max-width: 770px) {
  .info-box {
    border-radius: 8px !important;
  }

  .info-title {
    font-size: 22px !important;
  }

  .info-text {
    font-size: 16px !important;
  }
}

/* PopUp Modal */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  /* Initially hidden, JS will control display */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 15px;
  box-sizing: border-box;
}

.popup-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  max-width: 860px;
  width: 90%;
  line-height: 0;
}

.popup-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  z-index: 1010;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
}

.close-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 600px) {
  .popup-container {
    width: 95%;
  }

  .close-btn {
    top: 2px;
    right: 5px;
    width: 25px;
    height: 25px;
    font-size: 19.2px;
  }
}

/* About Us Banner */
@media (max-width: 770px) {
  .container-fluid .breadcrumb-h {
    font-size: 36px !important;
    line-height: 44px !important;
    text-align: left !important;
    margin-left: -20px !important;
  }

  .container-fluid .breadcrumb {
    margin-top: -40px !important;
  }

  .container-fluid .breadcrumb-p {
    font-size: 16px !important;
    margin-left: -20px !important;
    font-weight: 600 !important;
  }

  .container-fluid .breadcrumb-link {
    font-size: 16px !important;
    font-weight: 600 !important;
  }
}

/* For larger screens (min-width: 770px) - No changes needed */
@media (min-width: 770px) {
  .faq-hero-section .display-5 {
    font-size: 48px;
    /* Keep heading large on desktop */
  }

  .faq-hero-section .lead {
    font-size: 19.2px;
    /* Keep subtext larger for desktop */
  }

  .faq-hero-section .breadcrumb-item {
    font-size: 18px;
    /* Keep breadcrumb text larger */
  }
}

.heading {
  font-family: "Inter", sans-serif;
  font-weight: 700 !important;
  font-size: 32px !important;
  line-height: 38px !important;
  color: #001c43 !important;
}

@media screen and (max-width: 770px) {
  .heading {
    font-size: 24px !important;
    line-height: 32px !important;
    /* text-align: center !important; */
    margin-top: -15px !important;
  }
}

/* Eligibility updated section */

/* Base styles (Desktop default) */
.info-card {
  background-color: #fefefe !important;
  border-radius: 16px;
  padding: 20px;
  height: 120px;
  position: relative;
  overflow: visible;
  display: flex;
  width: 100%;
  /* allow responsive grid sizing */
  max-width: 640px;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.info-card h5 {
  font-weight: 600;
  font-size: 24px !important;
  margin-bottom: 5px;
  color: #001c43;
  margin-top: -5px;
}

.info-card p {
  margin: 0;
  color: #000000 !important;
  font-size: 18px !important;
}

.icon-wrapper {
  position: absolute;
  right: 10px;
  border-radius: 50%;
  padding: 8px;
  width: 120px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper img {
  width: 112px !important;
  height: auto;
  object-fit: contain;
}

.info-space {
  margin-left: 90px !important;
}

/* Responsive overrides for tablets and smaller */
@media (max-width: 992px) {
  .info-card {
    height: auto;
    padding: 20px 16px;
    width: 100% !important;
    flex-direction: column;
    align-items: flex-start;
  }

  .icon-wrapper {
    top: -10px;
    right: 10px;
    width: 80px;
    height: 80px;
  }

  .icon-wrapper img {
    width: 100px !important;
    height: auto;
  }

  .info-space {
    margin-left: 20px !important;
    margin-top: 10px;
  }

  .info-card h5 {
    font-size: 18px !important;
  }

  .info-card p {
    font-size: 16px !important;
  }
}

/* Extra mobile fallback */
@media (max-width: 576px) {
  .info-card {
    padding: 16px 12px;
    width: 100% !important;
    border-radius: 4px;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .icon-wrapper img {
    width: 48px !important;
    /* height: auto; */
  }
}

/* Existing CSS from your original code */
.emi-summary-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px !important;
  padding-top: 10px !important;
}

.emi-h {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px !important;
  color: #000000 !important;
  line-height: 28px !important;
}

.chart-legend div {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 14px;
}

.chart-legend span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.emi-text {
  font-family: "Inter", sans-serif;
  font-size: 12px !important;
  color: #000000 !important;
  line-height: 24px !important;
  font-weight: 400 !important;
}

.dotted-line {
  border: none;
  border-top: 2px solid transparent;
  border-image: repeating-linear-gradient(
    to right,
    #808080 0,
    #808080 10px,
    transparent 10px,
    transparent 20px
  );
  border-image-slice: 1;
  margin: 12px 0;
}

/* Reverted Slider track styling to pure CSS */
input[type="range"].form-range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  /* Original gradient - this will NOT update dynamically */
  background: linear-gradient(to right, #fd7c04 0%, #ddd 0%);
  border-radius: 10px;
  outline: none;
  transition: background 450ms ease-in;
  /* Note: transition won't apply effectively without JS updates */
}

/* Chrome / Safari / Edge */
input[type="range"].form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid #fd7c04;
  /* Thicker green border */
  cursor: pointer;
  /* Original margin-top */
  margin-top: -4px;
  /* Adjust if needed based on original look */
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  /* Removed !important on margin-top */
  /* margin-top: 1px !important; */
}

/* Firefox */
input[type="range"].form-range::-moz-range-thumb {
  width: 22px;
  /* Keep original size */
  height: 22px;
  /* Keep original size */
  border-radius: 50%;
  background: #fff;
  border: 5px solid #fd7c04;
  /* Thicker green border */
  cursor: pointer;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

/* Track styling for Firefox */
input[type="range"].form-range::-moz-range-track {
  height: 6px;
  background: #ddd;
  border-radius: 10px;
}

/* Keep original box structure styling */
.emi-box {
  border: 1px solid #c0c0c0;
  border-radius: 15px;
  padding: 30px;
  background: #fefefe;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Add CSS for the value display box */
.value-box {
  background: #fff;
  /* Use original background */
  border: 1px solid #cccccc;
  /* Use original border */
  border-radius: 4px;
  /* Use original radius */
  /* Updated padding: top/bottom=8px, left/right=16px */
  padding: 8px 16px;
  margin-left: 12px;
  /* Use original margin */
  font-weight: 500;
  font-size: 15px;
  /* Use original font size */
  color: #808080 !important;
  min-width: 90px;
  /* Use original width */
  text-align: center;
  /* Use original alignment */
  display: inline-block;
  /* Allow width */
  white-space: nowrap;
  /* Prevent wrapping */
}

.text-p {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #b3b3b3 !important;
  line-height: 24px !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 400 !important;
}

.slider-label {
  font-weight: 600;
  margin-top: 25px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Keep original chart container styling */
.chart-container {
  width: 100%;
  max-width: 200px;
  /* Original max-width */
  margin: auto;
  position: relative;
  height: 200px;
  /* Explicit height can help consistency */
}

#emiChart {
  max-width: 100%;
  max-height: 100%;
}

.form-range {
  width: 100%;
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.chart-legend div {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #555;
}

.chart-legend span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  border-radius: 40%;
  /* Keep original radius */
}

#emiValue {
  font-size: 26px;
  /* Keep original size */
  font-weight: bold;
}

/* Keep original media query */
@media (max-width: 770px) {
  .emi-box {
    padding: 20px;
    /* Original padding */
    /* REMOVED flex-direction: column */
  }

  .emi-h {
    font-size: 16px !important;
  }

  .para {
    font-size: 12px !important;
    color: #000 !important;
  }
  /* REMOVED flex-basis/max-width overrides for columns */

  .value-box {
    min-width: 75px;
    /* Original min-width */
    font-size: 13px;
    /* Original font-size */
  }

  #emiValue {
    font-size: 22px;
    /* Original size */
  }

  /* Adjust chart size if needed for small screens */
  .chart-container {
    max-width: 180px;
    height: 180px;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .emi-summary-box {
    max-width: 380px;
  }

  .value-box {
    font-size: 14px;
  }

  .slider-label {
    font-size: 15px;
  }
}

@media (min-width: 992px) {
  .chart-container {
    max-width: 220px;
    height: 220px;
  }

  .Calc-sec-cont {
    flex: 0 0 50% !important;
    max-width: 80%;
  }
  .Calc-sec-img {
    flex: 0 0 50% !important;
    max-width: 80%;
  }
}

.radius {
  border-radius: 8px !important;
  width: 550px !important;
  height: 380px !important;
}

/* === Desktop (default) === */
.habt {
  border-radius: 8px !important;
  width: 550px !important;
  height: fit-content !important;
  background-color: #fefefe;
  /* maintain background */
}

.abtp {
  font-family: "Inter", sans-serif;
  font-size: 23px !important;
  line-height: 36px !important;
  text-align: justify !important;
  font-weight: 400 !important;
  color: #000 !important;
}

/* === Mobile Responsiveness (up to 770.98px) === */
@media (max-width: 770px) {
  .habt {
    width: 300px !important;
    height: auto !important;
    margin-top: 20px;
    margin-left: 15px !important;
    border-radius: 4px !important;
  }

  .abtp {
    font-size: 16px !important;
    line-height: 26px !important;
    /* padding: 0 8px; */
  }
}

.custom-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

/* Checked state with green background and white checkmark */
.custom-checkbox input[type="checkbox"]:checked {
  background-color: #fd7c04;
  border-color: #fd7c04;
}

.custom-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Hide navbar bottom border on small screens */
@media (max-width: 770px) {
  .navbar.border-bottom {
    border-bottom: none !important;
  }
}

/* BreadCrumb */
.breadcrumb-h {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 56px !important;
  color: #001c43 !important;
  line-height: 68px !important;
}

.breadcrumb-p {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px !important;
  color: #001c43 !important;
  line-height: 28px !important;
}

.breadcrumb-link {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px !important;
  color: #fd7c04 !important;
  line-height: 28px !important;
}

.pad-top {
  padding-top: 80px !important;
}

.back-to-top-btn {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  margin-left: 35vw !important;
  margin-top: -40px !important;
}

.back-to-top-btn img {
  background: transparent;
}

.back-to-top-btn:hover {
  background-color: #fd7c04;
}

.para {
  font-family: "Inter", sans-serif;
  font-size: 16px !important;
  color: #001c43 !important;
  line-height: 28px !important;
  font-weight: 400 !important;
  text-align: justify !important;
}

@media screen and (max-width: 770px) {
  .para {
    font-size: 14px !important;
  }
}

.cal {
  font-family: "Inter", sans-serif;
  font-size: 24px !important;
  color: #001c43 !important;
  line-height: 28px !important;
  font-weight: 700 !important;
  text-align: justify !important;
}

@media screen and (max-width: 770px) {
  .cal {
    font-size: 16px !important;
  }
}

/* About Page */
/* Full width sections with inner container */
.full-width-section {
  width: 100%;
}

.full-width-section .main-content-container {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .main-content-container {
    padding: 0 30px;
  }
}

@media (max-width: 770px) {
  .main-content-container {
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .main-content-container {
    padding: 0 15px;
  }
}

/* Ensure images don't overflow */
img {
  height: auto;
}

/*Home Page */
:root {
  --content-max-width: 1440px;
  --content-padding-mobile: 15px;
  --content-padding-desktop: 40px;
}

.main-container {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-mobile);
}

.full-width-section {
  width: 100%;
  background-color: #fd7c04;
  /* Green bar color */
}

.full-width-section .main-container {
  padding-top: 0px;
  padding-bottom: 20px;
}

@media (min-width: 1200px) {
  .main-container {
    padding: 0 var(--content-padding-desktop);
  }
}

@media (max-width: 770px) {
  .main-container {
    padding: 0 var(--content-padding-mobile);
  }
}

@media (max-width: 992px) {
  .main-container {
    padding: 0 var(--content-padding-mobile);
  }

  .Calc-sec-cont {
    flex: 0 0 60% !important;
  }
  .Calc-sec-img {
    flex: 0 0 40% !important;
  }
}

.full-width-section {
  background-color: #fffae7 !important; /* Green bar color */
}
img {
  height: auto;
}

/* Hero section adjustments */
.hero-section {
  position: relative;
  z-index: 1;
}

.green-bar {
  margin-top: -150px;
  padding-top: 180px;
  position: relative;
  z-index: 0;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.floating-coin {
  position: absolute;
  width: 50px;
  z-index: -1;
}

/* Coin 1 - near middle right */
.coin-1 {
  top: 80px;
  left: 65vw;
  /* Roughly 950px on 1440px screens */
  transform: translateX(-50%);
}

/* Coin 2 - far right */
.coin-2 {
  top: 25%;
  left: 90vw;
  /* Roughly 1450px on 1600px screens */
  transform: translateX(-50%);
}

/* Optional: Tune for extra-wide or small screens */
@media (min-width: 1600px) {
  .coin-1 {
    left: 60vw;
  }

  .coin-2 {
    left: 88vw;
  }
}

@media (max-width: 1199px) {
  .coin-1 {
    left: 55vw;
  }

  .coin-2 {
    left: 85vw;
  }
}

@media (max-width: 770px) {
  .floating-coin {
    display: none;
  }
}

/* Why Choose Us section */
.why-choose {
  background-color: #fffae7 !important;
}

/* Footer adjustments */
.footer-top-border {
  border-top: 2px solid #c0c0c0;
}

/* Aboutsection on home page*/

.Input-mobile {
  color: #001e29;
  font-size: 40px;
  font-weight: 600;
  font-family: "Inter", sans-serif !important;
}

.mar-tp {
  margin-top: -280px !important;
}

.margin-tp {
  margin-top: 60px !important;
}

.mb {
  margin-bottom: 30px !important;
}

.mar-btm {
  margin-bottom: 26px !important;
}

.twitter-icon {
  color: #ffffff;
  /* white icon */
  font-size: 18px;
  /* size */
  transition: 0.3s;
}

/* social icons */
.social-btn-custom {
  width: 38px;
  height: 38px;
  /* background-color: #fd7c04; */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-btn-custom:hover {
  background-color: #fd7c04;
  /* Slightly darker shade on hover */
  color: #fff;
}

.text {
  font-family: "Inter", sans-serif;
  font-size: 24px !important;
  color: #ffffff !important;
  line-height: 24px !important;
  font-weight: 600 !important;
}

.text-footer {
  font-family: "Inter", sans-serif;
  font-size: 24px !important;
  color: #ffffff !important;
  line-height: 24px !important;
  font-weight: 700 !important;
}

/* Home Hero Section */
.hero-heading {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 46px;
  color: #001c43;
  margin-bottom: 20px;
  line-height: 66px !important;
}

.hero-heading span {
  color: #fd7c04;
}

.hero-section p {
  font-family: "Inter", sans-serif;
  color: #001c43;
  font-size: 18px !important;
  line-height: 1.7;
  text-align: justify;
  font-weight: 400 !important;
}

@media (max-width: 1200px) {
  .hero-heading {
    font-size: 36px !important;
    line-height: 46px !important;
  }

  .hero-section p {
    font-size: 16px !important;
  }
}

.h1-mobile {
  font-size: 58px !important;
}

@media (max-width: 770px) {
  .h1-mobile {
    font-size: 36px !important;
  }

  .hero-section .hero-heading {
    font-size: 32px !important;
    line-height: 44px !important;
    text-align: left;
    margin-top: 40px !important;
  }

  .hero-section p {
    font-size: 16px !important;
    line-height: 26px !important;
    font-weight: 700 !important;
  }
}

@media (max-width: 770px) {
  html,
  body {
    overflow-x: hidden;
  }

  /* Facilities Section (Our Features) */
  .section-heading {
    font-size: 22px !important;
    line-height: 32px !important;
    padding: 0 10px;
    margin-top: 10px !important;
  }

  /* About Us*/

  .about {
    font-size: 24px !important;
    text-align: center;
  }

  .about span {
    color: #fd7c04;
  }

  .Input-mobile {
    color: #fd7c04 !important;
  }

  .p.margin-left {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    padding: 0 16px;
    margin-top: 16px;
    text-align: justify !important;
  }

  .d-flex.gap-3.mt-5.margin-left {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .text-white.col-lg-7.col-md-7 {
    width: 100%;
  }

  /* Footer Responsive */

  .footer-top-border .col-md-6 {
    width: 100%;
    margin-bottom: 32px;
  }

  .footer-top-border .col-md-6 {
    width: 100%;
    margin-bottom: 32px;
  }

  /* Align text left */
  .footer-top-border .col-md-6 {
    width: 100%;
    margin-bottom: 32px;
  }

  /* Adjust text alignment and spacing */
  .footer-top-border .link,
  .footer-top-border .link-get,
  .footer-top-border h5 {
    text-align: left;
    font-size: 14px;
    /* Reduced font size */
  }

  .footer-top-border p {
    font-size: 14px !important;
    /* About text and contact info */
  }

  .footer-top-border a {
    font-size: 14px;
  }

  /* Social icons sizing (optional, can comment if not needed) */
  .social-btn-custom i {
    font-size: 16px;
  }

  /* Footer bottom section */
  .footer-top-border .border-top {
    text-align: center;
  }

  .footer-top-border .border-top .d-flex {
    flex-direction: column;
    align-items: center !important;
  }

  .footer-top-border .border-top .d-flex.flex-wrap a {
    margin: 5px 0;
    font-size: 13px;
  }

  .footer-top-border .border-top p {
    font-size: 13px;
  }

  .footer-top-border .border-top .d-flex.flex-wrap {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 50px;
  }

  .footer-top-border .border-top .d-flex.flex-wrap a {
    margin: 0 !important;
    font-size: 13px;
  }

  .footer-top-border .border-top p {
    text-align: center;
    font-size: 13px;
  }

  .text-footer {
    margin-top: 20px !important;
    font-size: 20px !important;
  }

  /* Footer Styling */
  .border-top {
    border-top: 1px solid #ccc;
    /* Adjust color as per design */
  }
}

.parag {
  font-family: "Inter", sans-serif;
  font-weight: 400 !important;
  color: #001c43 !important;
  font-size: 20px !important;
  line-height: 30px !important;
  text-align: justify !important;
}

@media (max-width: 770px) {
  .parag {
    font-size: 12px !important;
    line-height: 20px !important;
    text-align: left !important;
  }
}

.instant {
  font-family: "Inter", sans-serif;
  color: #001c43 !important;
  font-weight: 700 !important;
  font-size: 24px !important;
  line-height: 34px !important;
}

@media screen and (max-width: 770px) {
  .instant {
    font-size: 20px !important;
    line-height: 30px !important;
  }
}

.random {
  font-family: "Inter", sans-serif;
  color: #001c43 !important;
  font-weight: 600 !important;
  font-size: 24px !important;
  line-height: 34px !important;
}

.heading2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #001c43 !important;
  margin-bottom: 20px;
}

.heading2 span {
  color: #fd7c04 !important;
  /* green for emphasis */
}

/* Our Features */

.icon-wrapper {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-heading {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

/* About Us */

.about {
  font-family: "Inter", sans-serif;
  color: #001c43 !important;
  font-size: 48px !important;
  font-weight: 700 !important;
  line-height: 56px;
  text-align: left;
  margin-top: 40px !important;
}

.about span {
  color: #fffae7 !important;
}

.p {
  font-family: "Inter", sans-serif;
  color: #001c43 !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 26px !important;
  text-align: left;
}

.p-footer {
  font-family: "Inter", sans-serif;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 28px !important;
  text-align: justify !important;
}

.margin-left {
  margin-left: 60px !important;
}

@media (max-width: 770.98px) {
  .container-fluid,
  .container {
    min-height: auto !important;
  }

  /* 3. Responsive heading */
  .about {
    font-size: 28px !important;
    /* ~28px */
    line-height: 35.2px;
    margin-left: 0 !important;
    text-align: center;
  }

  /* 4. Responsive paragraph */
  .about + p {
    font-size: 14px !important;
    /* ~16px */
    line-height: 24px !important;
    margin-left: 0 !important;
    text-align: center;
  }

  /* 5. Responsive button wrapper */
  .about + p + .d-flex {
    flex-direction: column;
    align-items: center;
    margin-left: 0 !important;
  }

  /* 6. Reduce side paddings for text block */
  .container .text-white {
    padding: 0 16px;
    margin: 0 auto;
  }
}

/* The pill */
.pill-input {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  /* white inner area */
  border-radius: 40px;
  /* pill shape */
  padding: 6px;
  /* outer padding to create the visible border effect */
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04),
    /* subtle top */ 0 6px 18px rgba(2, 18, 43, 0.06);
  /* soft outer shadow */
  border: 2px solid rgba(2, 18, 43, 0.12);
  /* thin navy border */
  overflow: hidden;
  width: 60%;
}

/* Input field */
.pill-input input[type="tel"] {
  flex: 1 1 auto;
  min-width: 0;
  /* so it shrinks nicely on small screens */
  border: none;
  outline: none;
  padding: 18px 22px;
  /* left/right spacing like screenshot */
  font-size: 16px;
  line-height: 1;
  color: #1a2636;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: transparent;
}

.pill-input input::placeholder {
  color: #9aa6b2;
  font-weight: 500;
}

/* Input focus style */
.pill-input input:focus {
  background: transparent;
  box-shadow: none;
}

/* Button on the right */
.apply-btn {
  flex: 0 0 auto;
  border: none;
  border-radius: 32px;
  padding: 12px 22px;
  margin-right: 2px;
  /* small spacing from outer pill edge */
  background: linear-gradient(180deg, #00122b 0%, #001c43 100%);
  color: white;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(45, 63, 156, 0.18),
    inset 0 -2px rgba(0, 0, 0, 0.08);
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.apply-btn:active {
  transform: translateY(1px);
}

.apply-btn:hover {
  box-shadow: 0 10px 24px rgba(45, 63, 156, 0.22);
}

/* When the form or input is invalid, show a subtle red border */
.pill-input:has(input:invalid:focus) {
  border-color: rgba(220, 38, 38, 0.9);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .pill-input {
    padding: 4px;
    border-radius: 34px;
  }

  .pill-input input[type="tel"] {
    padding: 14px 14px;
    font-size: 15px;
  }

  .apply-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Why Choose Us */

/* Define Custom Colors */
:root {
  --brand-green: #00d977;
  --brand-purple: #7a59ff;
  --light-gray: #e0faef;
  --dark-gray: #001c43;
  --text-dark: #191919;
  --text-medium: #001c43;
}

.why-choose {
  background-color: #ffffff;
  /* Or your desired section background */
}

.feature-box {
  /* Minimum height helps maintain visual consistency, especially on smaller viewports before stacking */
  min-height: 180px;
  transition: transform 0.2s ease-in-out;
  /* Optional: subtle hover effect */
  margin-bottom: 24px;
}

.security-box {
  background-color: #020a24 !important;
}
.feature-box,
.security-box {
  border-radius: 16px !important;
  padding: 16px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Specific Background Colors */
.bg-light-gray {
  background-color: #fefefe;
  color: var(--text-medium);
}

.bg-brand-green {
  background-color: #fefefe;
  /* Text color is set via Bootstrap class 'text-dark' in HTML */
}

.bg-brand-purple {
  background-color: #fefefe;
  /* Text color is set via Bootstrap class 'text-white' in HTML */
}

.bg-dark-gray {
  background-color: var(--dark-gray);
  /* Text color is set via Bootstrap class 'text-white' in HTML */
}

/* Icon Styling */
.feature-icon {
  max-height: 100px;
  /* Adjust as needed */
  width: auto;
}

.security-box {
  /* Make the security box taller */
  min-height: 400px;
  /* Ensure content inside vertically centers well in the taller box */
  justify-content: center !important;
}

.security-icon {
  max-width: 430px;
  max-height: 410px;
  width: 100%;
  height: auto;
}

/* Text Styling */
.feature-text {
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 20px);
  /* Responsive font size */
  line-height: 1.4;
}

.feature-text-large {
  font-weight: 700;
  font-size: 20px !important;
  /* Slightly larger responsive font size */
  line-height: 1.5;
  /* margin-top: 180px !important; */
}

.security-box {
  min-height: 300px;
  /* Reduced from 400px */
  border-radius: var(--radius);
  justify-content: center !important;
  align-items: center;
  overflow: hidden;
  text-align: center;
}

/* Ensure full height works well */
.h-100 {
  height: 100% !important;
}

/* Responsive Adjustments (Bootstrap handles most, add specifics if needed) */
@media (max-width: 991.98px) {
  /* Below Large screens */
  .security-box {
    min-height: 300px;
    /* Adjust min-height for medium screens */
  }
}

@media (max-width: 770.98px) {
  /* Below Medium screens */
  .feature-box {
    min-height: 160px;
    /* Slightly smaller min-height on mobile */
  }

  .security-box {
    min-height: 250px;
    /* Adjust min-height for small screens */
  }

  .security-icon {
    max-width: 120px;
    max-height: 120px;
    margin-bottom: 24px !important;
  }

  .feature-text,
  .feature-text-large {
    font-size: 16px;
    /* Adjust font size for smaller screens */
  }
}
/* FAQ */

.accordion-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.accordion-item {
  background: #fff;
  border: 1px solid #c0c0c0;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.accordion-header:hover {
  background-color: #fff;
}

.accordion-title {
  margin: 0;
  font-size: 20px !important;
  font-weight: 600;
  color: #001c43;
  flex: 1;
}

.accordion-icon {
  font-size: 20px;
  font-weight: 400;
  margin-left: 16px;
  transition: transform 0.3s ease;
}

.accordion-content {
  font-size: 18px !important;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 0 20px 20px;
  max-height: 500px;
}

/* Active state styles */
.accordion-item.active {
  border-color: #fd7c04;
  border-width: 2px !important;
}

.accordion-item.active .accordion-header {
  background-color: #fff;
}

.accordion-item.active .accordion-title {
  color: #fd7c04;
}

.accordion-item.active .accordion-icon {
  color: #fd7c04;
  transform: none;
  /* 👈 Remove rotation */
}

.icon {
  margin-right: 15px;
  /* or 20px */
  max-height: 32px;
  /* Optional: control image size */
  width: 30px !important;
  height: 30px !important;
}

/* Search Bar */

.search-wrapper {
  position: relative;
  z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 770px) {
  .accordion-header {
    padding: 16px;
  }

  .accordion-title {
    font-size: 16px !important;
  }

  .accordion-content p {
    font-size: 14px !important;
    margin-left: -10px !important;
  }
}

@media (max-width: 576px) {
  .accordion-content p {
    font-size: 14px !important;
  }
}

/* Footer */
.footer-top-border {
  border-top: 1px solid #c0c0c0;
  /* Adjust color and thickness as needed */
}

.link {
  color: #fd7c04 !important;
  /* text-decoration: underline; */
  transition: color 0.2s ease;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.link:active {
  color: #18a468 !important;
  text-decoration: underline;
  transition: color 0.5s ease;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.link-get {
  color: #fd7c04 !important;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 16px !important;
  font-weight: 500 !important;
}

@media screen and (max-width: 770px) {
  .link-get {
    font-size: 14px !important;
  }
}

.footer {
  color: #001c43 !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 32px !important;
}

/* FAQ Search */
.search-wrapper {
  min-height: 400px;
}

/* Contact Us */

.container {
  max-width: 1400px !important;
  margin: 0 auto;
  padding: 0 16px;
}

/* Make all input fields same height */
.form-group input,
.form-group textarea {
  height: 50px;
  padding-top: 24px;
  padding-bottom: 8px;
  font-size: 16px;
}

/* Force col-md-6 elements to stack instead of float side by side */

/* Special handling for textarea to allow height resizing */
.form-group textarea {
  min-height: 86px;
  resize: vertical;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  font-size: 16px;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: #03349a;
}

/* HEADING */

/* FORM CHECKBOX */
.form-check-label {
  height: 30px !important;
  width: 900px !important;
  font-size: 14px;
}

.form-check-input {
  margin-right: 8px;
}

/* SUBMIT BUTTON */

/* FORM SPACING */
form .row > div {
  margin-bottom: 15px;
}

.form-check {
  display: flex;
  align-items: center;
  font-size: 15px;
}

.form-check-input {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
}

.form-check-label {
  margin: 0;
  cursor: pointer;
  user-select: none;
}

.form-check-label a {
  font-weight: 500;
  color: #fd7c04 !important;
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.form-group {
  position: relative;
  margin-bottom: 24px;
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 34px;
  font-size: 16px;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  background: #fff;
  padding-top: 18px;
}

.form-group label {
  position: absolute;
  font-family: "Inter", sans-serif;
  font-weight: 500 !important;
  top: 14px;
  left: 12px;
  background: linear-gradient(
    to bottom,
    #fffae7 0%,
    #fffae7 50%,
    #fffae7 50%,
    #fffae7 100%
  );
  color: #969799;
  font-size: 16px;
  padding: 0 4px;
  transition: 0.2s ease;
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -12px;
  left: 10px;
  font-size: 16px !important;
  font-family: "Inter", sans-serif;
  font-weight: 500 !important;
  color: #969799;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-size: 16px;
  color: #333;
}

/* Mobile Responsive Contact Us */
@media (max-width: 770px) {
  /* Adjust padding and spacing */
  .search-wrapper {
    min-height: 300px !important;
    padding: 32px 16px !important;
  }

  .search-wrapper h3 {
    font-size: 32px !important;
    line-height: 40px !important;
  }

  .p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    padding: 0 10px;
  }

  .p img {
    vertical-align: middle;
    margin-bottom: 5px;
  }

  .form-group label {
    color: #969799 !important;
    font-size: 14.4px;
  }

  .form-control {
    font-size: 15.2px;
    padding: 10px;
  }

  .form-check-label {
    font-size: 14.4px;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  body,
  html {
    overflow-x: hidden;
  }

  .container-fluid,
  .container {
    max-width: 100%;
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}

/* Footer MR */
@media (max-width: 770.98px) {
  .footer-top-border .col-md-6 {
    text-align: left !important;
    margin-bottom: 30px;
  }

  .footer-top-border h5.text-footer {
    margin-top: 20px;
    font-size: 18px;
    text-align: left !important;
  }

  .footer-top-border .d-flex.flex-column {
    align-items: flex-start !important;
  }

  .footer-top-border .link,
  .footer-top-border .link-get {
    display: block;
    text-align: left !important;
    margin-left: 0 !important;
    font-size: 15px;
  }

  .footer-top-border .link-get {
    margin-bottom: 8px;
  }

  .footer-top-border .col-lg-6:last-child .row {
    row-gap: 15px;
  }
  .Input-mobile {
    color: #001c43 !important;
  }
}

.about-us {
  color: #001c43 !important;
  text-align: justify !important;
  line-height: 34px !important;
  font-size: 20px !important;
  font-family: "Inter", sans-serif;
  font-weight: 400 !important;
  background-color: #fff !important;
  border-radius: 8px !important;
  padding-top: 84px !important;
  padding-bottom: 84px !important;
  padding-left: 70px !important;
  padding-right: 70px !important;
  margin-left: 30px;
  width: 100% !important;
  height: 432px !important;
}

@media (max-width: 770.98px) {
  .about-us {
    font-size: 16px !important;
    line-height: 28px !important;
    padding: 24px !important;
    width: 100% !important;
    height: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    text-align: justify !important;
    padding-top: 150px !important;
    margin-top: -150px !important;
  }
}

.ml-6 {
  margin-left: 150px !important;
}

.us {
  font-family: "Inter", sans-serif;
  color: #001c43 !important;
  text-align: justify !important;
  line-height: 28px !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  background-color: #fefefe !important;
  /* semi-transparent white */
  border-radius: 4px !important;
  padding: 16px 16px !important;
  margin-top: -25px !important;
}

@media screen and (max-width: 770px) {
  .us {
    font-size: 14px !important;
    line-height: 24px !important;
  }
}

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #17a2b8;
  --secondary: #00394f;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 770px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Inter", sans-serif;
  /* --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

footer,
header,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #666666;
  text-align: left;
  background-color: #fffae7;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

p {
  margin-top: 0;
  margin-bottom: 16px;
}

address {
  margin-bottom: 16px;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 16px;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

a {
  color: #fd7c04;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #05673d;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

code {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 1em;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

@media (max-width: 1200px) {
  legend {
    font-size: calc(1.275rem + 0.3vw);
  }
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  margin-bottom: 0.5rem;
  font-weight: bold;
  line-height: 1.2;
  color: #25252d;
  font-family: "Inter", sans-serif !important;
}

h1,
.h1 {
  font-size: 2.5rem;
}

@media (max-width: 1200px) {
  h1,
  .h1 {
    font-size: calc(1.375rem + 1.5vw);
  }
}

h2,
.h2 {
  font-size: 2rem;
}

@media (max-width: 1200px) {
  h2,
  .h2 {
    font-size: calc(1.325rem + 0.9vw);
  }
}

h3,
.h3 {
  font-size: 1.75rem;
}

@media (max-width: 1200px) {
  h3,
  .h3 {
    font-size: calc(1.3rem + 0.6vw);
  }
}

h4,
.h4 {
  font-size: 1.5rem;
}

@media (max-width: 1200px) {
  h4,
  .h4 {
    font-size: calc(1.275rem + 0.3vw);
  }
}

h5,
.h5 {
  font-size: 1.25rem;
}

.lead {
  font-family: "Inter", sans-serif !important;
  font-weight: 400;
  font-size: 16px !important;
  color: #000000 !important;
}

.display-3 {
  font-size: 48px !important;
  font-weight: 600;
  line-height: 60px;
}

@media (max-width: 1200px) {
  .display-3 {
    font-size: calc(1.575rem + 3.9vw);
  }
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

.container,
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 770px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-12,
.col-sm-6,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-12,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-10,
.col-lg-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 770px) {
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #000;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 1px;
}

.table .thead-light th {
  color: #000;
  background-color: #fff;
  border-color: #dee2e6;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 5px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #63d9ec;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled {
  background-color: #e9ecef;
  opacity: 1;
}

input[type="date"].form-control,
input[type="time"].form-control,
input[type="month"].form-control {
  appearance: none;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

select.form-control[size],
select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
  line-height: 24px !important;
}

.form-check-label {
  margin-bottom: 0;
}

.btn {
  font-family: "Inter", sans-serif;
  font-size: 16px !important;
  line-height: 20px !important;
  font-weight: 700 !important;
  display: inline-block;
  /* font-weight: 400;  <- Overridden by !important above */
  color: white !important;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 12px 32px;
  /* font-size: 1rem; <- Overridden by !important above */
  /* line-height: 1.5; <- Overridden by !important above */
  border-radius: 4px;
  /* Border radius remains 4px */
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

  /* --- Added to remove underline --- */
  text-decoration: none;
}

/* --- Added Hover State --- */
.btn:hover {
  background-color: #33e196;
  /* Change background on hover */
  /* Optionally, change text color for contrast if needed */
  /* color: #FFFFFF; */
  text-decoration: none;
}

@media (max-width: 770.98px) {
  .btn {
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 15px !important;
    display: block !important;
    text-align: center !important;
    margin: 0 !important;
    /* No auto-centering */
  }
}

.button {
  font-family: "Inter", sans-serif;
  font-size: 16px !important;
  line-height: 20px !important;
  font-weight: 400 !important;
  display: inline-block;
  /* font-weight: 400;  <- Overridden by !important above */
  color: white !important;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 12px 32px;
  /* font-size: 1rem; <- Overridden by !important above */
  /* line-height: 1.5; <- Overridden by !important above */
  border-radius: 4px;
  /* Border radius remains 4px */
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

  /* --- Added to remove underline --- */
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

/* .btn:hover {
  color: #666666;
  text-decoration: none;
} */

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #001c43;
  border-color: #001c43;
}

.btn-primary:hover {
  color: #fff;
  background-color: #00122b;
  border-color: #ffffff;
}

.btn:active {
  background-color: #001c43 !important;
  /* Solid green background */
}

.link-footer {
  color: white !important;
}

.link-footer:hover {
  color: #fd7c04 !important;
}

.collapse:not(.show) {
  display: none;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #001c43;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 600;
  color: #001c43;
  text-align: inherit;
  white-space: nowrap;
  background-color: #fff !important;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #fd7c04;
  text-decoration: none;
  background-color: #f8f9fa;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fd7c04;
  text-decoration: none;
  background-color: #fff !important;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 30px;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 5px;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 5px;
}

.breadcrumb-item {
  display: flex;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #000 !important;
  content: ">";
  width: 7px !important;
  height: 12px !important;

  margin-right: 10px !important;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 5px;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

@media (max-width: 1200px) {
  .close {
    font-size: calc(1.275rem + 0.3vw);
  }
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.carousel {
  position: relative;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: none;
  }
}

.bg-light {
  background-color: #fffae7 !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #001c43 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fefefe !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.rounded {
  border-radius: 5px !important;
}

.d-none {
  display: none !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 770px) {
  .about-desk {
    display: none;
  }
  .d-md-none {
    display: none !important;
  }

  .d-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-block {
    display: block !important;
  }
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

@media (min-width: 770px) {
  .flex-md-row {
    flex-direction: row !important;
  }
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* .shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
} */

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
}

.px-0 {
  padding-right: 0 !important;
}

.py-0 {
  padding-bottom: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
}

.py-1 {
  padding-bottom: 0.25rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.ml-n1 {
  margin-left: -0.25rem !important;
}

.mt-n2 {
  margin-top: -0.5rem !important;
}

.ml-n2 {
  margin-left: -0.5rem !important;
}

.mt-n3 {
  margin-top: -1rem !important;
}

.mr-n3 {
  margin-right: -1rem !important;
}

.mb-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3 {
  margin-left: -1rem !important;
}

.mt-n4 {
  margin-top: -1.5rem !important;
}

.mt-n5 {
  margin-top: -3rem !important;
}

.mx-auto {
  margin-right: auto !important;
}

.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .px-sm-3 {
    padding-left: 1rem !important;
  }
}

@media (min-width: 770px) {
  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4 {
    margin-left: 1.5rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
  }

  .px-md-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 992px) {
  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0 {
    margin-left: 0 !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }
}

.font-weight-bold {
  font-weight: 600 !important;
}

.text-white {
  color: #fff !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: #121416 !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.visible {
  visibility: visible !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }

  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
}

/********** Custom CSS ************/

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 11;
  animation: action 1s infinite alternate;
}

@keyframes action {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-15px);
  }
}

.navbar-light .navbar-nav .nav-link {
  padding: 30px 15px;
  color: #001c43;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #fd7c04;
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    padding: 10px 15px;
  }
}

@media (max-width: 991px) {
  /* --- 1. General Layout Resets --- */
  html,
  body {
    overflow-x: hidden;
    /* Prevents side-scrolling */
  }

  .container,
  .main-container,
  .container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin: 0 auto !important;
  }

  /* Fix images overflowing */
  */

  /* --- 2. Hero Section Fixes --- */
  .hero-section {
    margin-top: 4rem !important;
    text-align: center !important;
  }

  .hero-heading {
    font-size: 32px !important;
    line-height: 1.3 !important;
    text-align: center !important;
    margin-top: 20px !important;
  }

  .h1-mobile {
    font-size: 32px !important;
  }

  /* Hide floating coins on mobile as they block text */
  .floating-coin {
    display: none !important;
  }

  /* Fix the Green Bar / Input Form Area */
  .green-bar {
    margin-top: 0px !important;
    /* Removes the massive desktop negative margin */
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    height: auto !important;
  }

  .Input-mobile {
    font-size: 24px !important;
    line-height: 1.4 !important;
    text-align: center !important;
    display: block !important;
    margin-bottom: 20px !important;
  }

  .pill-input {
    width: 100% !important;
    flex-direction: column;
    /* Stack input and button */
    padding: 5px !important;
    border-radius: 10px !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    gap: 15px;
  }

  .pill-input input {
    width: 100% !important;
    background: #fff !important;
    border-radius: 50px !important;
    padding: 15px !important;
    text-align: center;
    border: 1px solid #ccc !important;
  }

  .apply-btn {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 50px !important;
    padding: 15px !important;
  }

  /* --- 3. Eligibility Cards (Grid Fix) --- */
  .info-card {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    padding: 20px !important;
    margin-left: 0 !important;
    margin-bottom: 15px !important;
    flex-direction: row !important;
    /* Keep icon and text side-by-side if possible */
    align-items: center !important;
    text-align: left !important;
  }

  .info-space {
    margin-left: 0 !important;
    padding-right: 60px;
    /* Make room for icon */
  }

  .icon-wrapper {
    width: 60px !important;
    height: 60px !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .icon-wrapper img {
    width: 100px !important;
  }

  /* --- 4. About Us Section Fixes --- */
  .about-us,
  .habt {
    width: 100% !important;
    height: auto !important;
    padding: 20px !important;
    margin: 0 !important;
  }

  .abtp {
    font-size: 16px !important;
    line-height: 1.6 !important;

    text-align: center !important;
  }

  /* --- 5. Features / Why Choose Us --- */
  .feature-box,
  .security-box {
    height: auto !important;
    min-height: auto !important;
    padding: 30px 20px !important;
    margin-bottom: 15px !important;
  }

  .feature-text-large {
    margin-top: 20px !important;
  }

  /* --- 6. FAQ & Footer --- */

  .back-to-top-btn {
    margin-left: 0 !important;
    /* Reset fixed margin */
    position: relative !important;
    left: auto !important;
    transform: none !important;
    margin: 0 auto 20px auto !important;
  }

  /* Reset large headings */
  .heading2 {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }
}

/* ======================================================
   MOBILE RESPONSIVENESS PATCH (< 770px)
   (Paste this at the very bottom of your style.css)
   ====================================================== */

@media (max-width: 770px) {
  /* --- 1. GLOBAL LAYOUT RESET --- */
  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  .container,
  .container-fluid,
  .main-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin: 0 auto !important;
  }

  /* Force images to fit screen */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* --- 2. NAVBAR --- */
  .navbar-brand img {
    height: 60px !important; /* Smaller logo for mobile */
  }

  .navbar-toggler {
    border: none !important;
    padding: 0 !important;
  }

  /* --- 3. HERO SECTION (HOME) --- */
  .hero-section {
    margin-top: 20px !important;
    text-align: center !important;
    padding-bottom: 40px !important;
  }

  .hero-heading {
    font-size: 32px !important;
    line-height: 1.3 !important;
    text-align: center !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  /* Hide floating decorative elements that block text */
  .floating-coin {
    display: none !important;
  }
  .coin-1,
  .coin-2 {
    display: none !important;
  }

  /* Reset large negative margins */
  .mar-tp,
  .mt-n1,
  .mt-n2,
  .mt-n3,
  .mt-n5 {
    margin-top: 0 !important;
  }

  /* --- 4. APPLY FORM (Green Bar) --- */
  .green-bar {
    margin-top: 0px !important; /* Removes overlap */
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    height: auto !important;
  }

  .Input-mobile {
    font-size: 22px !important;
    line-height: 1.4 !important;
    text-align: center !important;
    display: block !important;
    margin-bottom: 20px !important;
  }

  /* Stack the input and button */
  .pill-input {
    width: 100% !important;
    flex-direction: column !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    gap: 15px !important;
  }

  .pill-input input {
    width: 100% !important;
    background: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 8px !important; /* Standard rounded corners instead of pill */
    padding: 15px !important;
    text-align: center !important;
  }

  .apply-btn {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 8px !important;
    padding: 15px !important;
    font-size: 16px !important;
  }

  /* --- 5. "HOW IT WORKS" STEPS (Vertical Stack) --- */
  .steps-timeline {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .step-image {
    max-width: 80px !important; /* Smaller icons */
    margin-bottom: 10px !important;
  }

  /* Rotate the connector line to be vertical or hide it */
  .step-connector {
    width: 2px !important;
    height: 30px !important;
    min-width: 2px !important;
    margin: 0 auto !important;
    background: #fd7c04 !important; /* Solid line for vertical */
  }

  .m-step {
    margin-top: 0 !important;
  }

  /* --- 6. ABOUT US & CARDS FIXES --- */
  /* Unlock fixed widths */
  .about-us,
  .radius,
  .habt,
  .us {
    width: 100% !important;
    height: auto !important;
    padding: 20px !important;
    margin: 0 !important;
    margin-top: 20px !important;
  }

  .abtp,
  .about-text {
    font-size: 16px !important;
    line-height: 1.6 !important;
    text-align: justify !important;
    padding: 0 !important;
  }

  /* Grid Cards */
  .info-card {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 15px !important;
    padding: 20px !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }

  .feature-box,
  .security-box {
    min-height: auto !important;
    height: auto !important;
    margin-bottom: 15px !important;
  }

  /* Reset icons positioning */
  .icon-wrapper {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 60px !important;
    height: 60px !important;
    margin-left: 15px !important;
  }

  .info-space {
    margin-left: 0 !important;
    padding-right: 0 !important;
    flex: 1;
  }

  /* --- 7. SPACINGS & MARGINS RESET --- */
  .ml-6,
  .ml-4,
  .mr-4,
  .p-5,
  .p-6 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 15px !important;
  }

  /* --- 8. FOOTER --- */
  .back-to-top-btn {
    margin: 0 auto 20px auto !important;
    position: relative !important;
    left: auto !important;
    transform: none !important;
  }

  .text-footer {
    text-align: center !important;
    font-size: 20px !important;
  }

  .d-flex.gap-3 {
    justify-content: center !important;
    margin-bottom: 30px !important;
  }

  /* Center footer links */
  .col-md-6.text-left {
    text-align: center !important;
  }

  .footer-top-border {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
/* ======================================================
   UPDATED MOBILE RESPONSIVENESS PATCH (< 770px)
   (Bigger Icons, Tighter Gaps, Less Padding)
   ====================================================== */

@media (max-width: 770px) {
  /* --- 1. TIGHTER GLOBAL LAYOUT --- */
  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  .container,
  .container-fluid,
  .main-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    /* Reduced side padding */
    padding-right: 15px !important;
    margin: 0 auto !important;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* --- 2. NAVBAR --- */
  .navbar-brand img {
    height: 50px !important;
    /* Compact logo */
  }

  .navbar-toggler {
    border: none !important;
    padding: 0 !important;
  }

  /* --- 3. HERO SECTION (Tighter) --- */
  .hero-section {
    margin-top: 10px !important;
    /* Much tighter to top */
    text-align: center !important;
    padding-bottom: 20px !important;
    /* Reduced bottom space */
  }

  .hero-heading {
    font-size: 28px !important;
    /* Slightly smaller for better fit */
    line-height: 1.2 !important;
    text-align: center !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  .floating-coin,
  .coin-1,
  .coin-2 {
    display: none !important;
  }

  /* Reset large margins */
  .mar-tp,
  .mt-n1,
  .mt-n2,
  .mt-n3,
  .mt-n5 {
    margin-top: 0 !important;
  }

  /* --- 4. APPLY FORM (Green Bar - Tighter) --- */
  .green-bar {
    margin-top: 0px !important;
    padding-top: 25px !important;
    /* Reduced padding */
    padding-bottom: 25px !important;
    /* Reduced padding */
    height: auto !important;
  }

  .Input-mobile {
    font-size: 20px !important;
    line-height: 1.3 !important;
    text-align: center !important;
    display: block !important;
    margin-bottom: 15px !important;
  }

  .pill-input {
    width: 100% !important;
    flex-direction: column !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    gap: 10px !important;
    /* Reduced gap between input and button */
  }

  .pill-input input {
    width: 100% !important;
    background: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 8px !important;
    padding: 12px !important;
    text-align: center !important;
  }

  .apply-btn {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 8px !important;
    padding: 12px !important;
    font-size: 16px !important;
  }

  /* --- 5. "HOW IT WORKS" STEPS (BIGGER ICONS / LESS GAP) --- */
  .steps-timeline {
    flex-direction: column !important;
    gap: 5px !important;
    /* Very tight gap between steps */
    margin-top: 20px !important;
  }

  .step-image {
    /* INCREASED SIZE HERE */
    max-width: 180px !important;
    width: 180px !important;
    margin-bottom: 5px !important;
  }

  .step-connector {
    width: 2px !important;
    height: 20px !important;
    /* Shortened line */
    min-width: 2px !important;
    margin: 2px auto !important;
    /* Tight margins */
    background: #fd7c04 !important;
  }

  .m-step {
    margin-top: 0 !important;
  }

  /* --- 6. GENERAL SPACINGS & CARDS --- */
  .about-us,
  .radius,
  .habt,
  .us {
    width: 100% !important;
    height: auto !important;
    padding: 15px !important;
    margin: 10px 0 !important;
  }

  .abtp,
  .about-text {
    font-size: 15px !important;
    line-height: 1.5 !important;
    text-align: justify !important;
    padding: 0 !important;
  }

  .info-card {
    width: 100% !important;
    height: 100% !important;
    margin-bottom: 10px !important;
    padding: 15px !important;
    flex-direction: row !important;
    align-items: center !important;
  }

  .feature-box,
  .security-box {
    min-height: auto !important;
    height: auto !important;
    margin-bottom: 10px !important;
    padding: 20px !important;
  }

  .icon-wrapper {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 50px !important;
    height: 50px !important;
    margin-left: 10px !important;
  }

  .info-space {
    margin-left: 0 !important;
    padding-right: 0 !important;
    flex: 1;
  }

  .ml-6,
  .ml-4,
  .mr-4,
  .p-5,
  .p-6 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 10px !important;
  }

  /* --- 7. FOOTER --- */
  .back-to-top-btn {
    margin: 0 auto 15px auto !important;
    position: relative !important;
    left: auto !important;
    transform: none !important;
  }

  .text-footer {
    text-align: center !important;
    font-size: 18px !important;
  }

  .d-flex.gap-3 {
    justify-content: center !important;
    margin-bottom: 20px !important;
  }

  .col-md-6.text-left {
    text-align: center !important;
  }

  .footer-top-border {
    padding: 20px 15px !important;
  }
}

/* ======================================================
   FINAL MOBILE PATCH (< 770px)
   (Includes FAQ Fix, Big Icons, Tighter Layout)
   ====================================================== */

@media (max-width: 770px) {
  /* --- 1. GLOBAL LAYOUT RESET --- */
  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  .container,
  .container-fluid,
  .main-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin: 0 auto !important;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* --- 2. NAVBAR --- */
  .navbar-brand img {
    height: 50px !important;
  }

  .navbar-toggler {
    border: none !important;
    padding: 0 !important;
  }

  /* --- 3. HERO SECTION --- */
  .hero-section {
    margin-top: 10px !important;
    text-align: center !important;
    padding-bottom: 20px !important;
  }

  .hero-heading {
    font-size: 28px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  .floating-coin,
  .coin-1,
  .coin-2 {
    display: none !important;
  }

  /* Reset large margins */
  .mar-tp,
  .mt-n1,
  .mt-n2,
  .mt-n3,
  .mt-n5 {
    margin-top: 0 !important;
  }

  /* --- 4. APPLY FORM --- */
  .green-bar {
    margin-top: 0px !important;
    padding-top: 25px !important;
    padding-bottom: 25px !important;
    height: auto !important;
  }

  .Input-mobile {
    font-size: 20px !important;
    line-height: 1.3 !important;
    text-align: center !important;
    display: block !important;
    margin-bottom: 15px !important;
  }

  .pill-input {
    width: 100% !important;
    flex-direction: column !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    gap: 10px !important;
  }

  .pill-input input {
    width: 100% !important;
    background: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 8px !important;
    padding: 12px !important;
    text-align: center !important;
  }

  .apply-btn {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 8px !important;
    padding: 12px !important;
    font-size: 16px !important;
  }

  /* --- 5. STEPS (Timeline) --- */
  .steps-timeline {
    flex-direction: column !important;
    gap: 5px !important;
    margin-top: 20px !important;
  }

  .step-image {
    max-width: 130px !important;
    width: 130px !important;
    margin-bottom: 5px !important;
  }

  .step-connector {
    width: 2px !important;
    height: 20px !important;
    min-width: 2px !important;
    margin: 2px auto !important;
    background: #fd7c04 !important;
  }

  .m-step {
    margin-top: 0 !important;
  }

  /* --- 6. FAQ FIXES (This fixes the clipping) --- */
  .accordion-wrapper {
    width: 100% !important;
    margin-top: 20px !important;
  }

  .accordion-item {
    margin-bottom: 10px !important;
    /* Ensure the item itself doesn't restrict height */
    height: auto !important;
  }

  .accordion-header {
    padding: 15px !important;
  }

  .accordion-title {
    font-size: 16px !important;
    /* Smaller text to prevent overflow */
    line-height: 1.4 !important;
  }

  /* The Fix: Force height to auto when active to prevent clipping */
  .accordion-item.active .accordion-content {
    max-height: none !important;
    /* Overrides JS calculation */
    height: auto !important;
    padding: 0 15px 20px 15px !important;
    /* Add padding at bottom */
    overflow: visible !important;
    /* Show overflowing text */
  }

  .accordion-content p {
    font-size: 14px !important;
    margin-bottom: 0 !important;
  }

  /* --- 7. CARDS & ABOUT --- */
  .about-us,
  .radius,
  .habt,
  .us {
    width: 100% !important;
    height: auto !important;
    padding: 15px !important;
    margin: 10px 0 !important;
  }

  .abtp,
  .about-text {
    font-size: 15px !important;
    line-height: 1.5 !important;
    text-align: justify !important;
    padding: 0 !important;
  }

  .info-card {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 10px !important;
    padding: 15px !important;
    flex-direction: row !important;
    align-items: center !important;
  }

  .feature-box,
  .security-box {
    min-height: auto !important;
    height: auto !important;
    margin-bottom: 10px !important;
    padding: 20px !important;
  }

  .icon-wrapper {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 50px !important;
    height: 50px !important;
    margin-left: 10px !important;
  }

  .info-space {
    margin-left: 0 !important;
    padding-right: 0 !important;
    flex: 1;
  }

  /* --- 8. FOOTER & SPACING --- */
  .ml-6,
  .ml-4,
  .mr-4,
  .p-5,
  .p-6 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 10px !important;
  }

  .back-to-top-btn {
    margin: 0 auto 15px auto !important;
    position: relative !important;
    left: auto !important;
    transform: none !important;
  }

  .text-footer {
    text-align: center !important;
    font-size: 18px !important;
  }

  .d-flex.gap-3 {
    justify-content: center !important;
    margin-bottom: 20px !important;
  }

  .col-md-6.text-left {
    text-align: center !important;
  }

  .footer-top-border {
    padding: 20px 15px !important;
  }
  .pb-md-0 {
    padding: 0rem !important;
  }
}

/* ======================================================
   COMPLETE MOBILE RESPONSIVENESS PATCH (< 770px)
   (Paste this at the very bottom of css/style.css)
   ====================================================== */

@media (max-width: 770px) {
  /* --- 1. GLOBAL LAYOUT RESET --- */
  html,
  body {
    overflow-x: hidden !important;
    /* Prevents horizontal scrolling */
    width: 100% !important;
  }

  .container,
  .container-fluid,
  .main-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin: 0 auto !important;
  }

  /* Force all images to fit within the screen width */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* --- 2. NAVBAR ADJUSTMENTS --- */
  .navbar-brand img {
    height: 50px !important;
    width: 70px !important;
    /* Smaller logo for mobile header */
  }

  .navbar-toggler {
    border: none !important;
    padding: 0 !important;
  }

  /* --- 3. HERO SECTION (HOME) --- */
  .hero-section {
    margin-top: 10px !important;
    text-align: center !important;
    padding-bottom: 20px !important;
  }

  .hero-heading {
    font-size: 28px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  /* Hide decorative elements that cover text on mobile */
  .floating-coin,
  .coin-1,
  .coin-2 {
    display: none !important;
  }

  /* Reset large negative margins used on desktop */
  .mar-tp,
  .mt-n1,
  .mt-n2,
  .mt-n3,
  .mt-n5 {
    margin-top: 0 !important;
  }

  /* --- 4. APPLY FORM (Green Bar) --- */
  .green-bar {
    margin-top: 0px !important;
    /* Removes desktop overlap */
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    height: auto !important;
  }

  .Input-mobile {
    font-size: 20px !important;
    line-height: 1.3 !important;
    text-align: center !important;
    display: block !important;
    margin-bottom: 15px !important;
    color: #001c43;
  }

  /* Stack the input field and button vertically */
  .pill-input {
    width: 100% !important;
    flex-direction: column !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    gap: 10px !important;
  }

  .pill-input input {
    width: 100% !important;
    background: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 8px !important;
    padding: 12px !important;
    text-align: center !important;
  }

  .apply-btn {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 8px !important;
    padding: 12px !important;
    font-size: 16px !important;
  }

  /* --- 5. "HOW IT WORKS" STEPS (Vertical Stack) --- */
  .steps-timeline {
    flex-direction: column !important;
    gap: 5px !important;
    margin-top: 20px !important;
  }

  .step-image {
    max-width: 180px !important;
    /* Large icons */
    width: 180px !important;
    margin-bottom: 5px !important;
  }

  .step-connector {
    width: 2px !important;
    height: 20px !important;
    min-width: 2px !important;
    margin: 2px auto !important;
    background: #fd7c04 !important;
  }

  .m-step {
    margin-top: 0 !important;
  }

  /* --- 6. FAQ SECTION FIXES (Prevents Clipping) --- */
  .accordion-wrapper {
    width: 100% !important;
    margin-top: 20px !important;
  }

  .accordion-item {
    height: auto !important;
    margin-bottom: 10px !important;
  }

  .accordion-header {
    padding: 15px !important;
  }

  .accordion-title {
    font-size: 16px !important;
    line-height: 1.4 !important;
  }

  /* CRITICAL FIX: Overrides JS height calculation to allow full text expansion */
  .accordion-item.active .accordion-content {
    max-height: none !important;
    height: auto !important;
    padding: 0 15px 20px 15px !important;
    overflow: visible !important;
  }

  .accordion-content p {
    font-size: 14px !important;
    margin-bottom: 0 !important;
  }

  /* --- 7. UNLOCK FIXED WIDTHS (About Us & Layout) --- */
  .about-us,
  .radius,
  .habt,
  .us {
    width: 100% !important;
    height: auto !important;
    padding: 15px !important;
    margin: 10px 0 !important;
  }

  .abtp,
  .about-text {
    font-size: 15px !important;
    line-height: 1.5 !important;
    text-align: justify !important;
    padding: 30px !important;
    margin: 0 !important;
  }

  /* --- 8. CARDS & GRIDS --- */
  .info-card {
    width: 100% !important;
    height: 100% !important;
    margin-bottom: 10px !important;
    padding: 15px !important;
    flex-direction: row !important;
    align-items: center !important;
  }

  .feature-box,
  .security-box {
    min-height: auto !important;
    height: auto !important;
    margin-bottom: 10px !important;
    padding: 20px !important;
  }

  .icon-wrapper {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 90px !important;
    height: 50px !important;
    margin-left: 10px !important;
  }

  .info-space {
    margin-left: 0 !important;
    padding-right: 0 !important;
    flex: 1;
  }

  /* --- 9. FOOTER & SPACING RESET --- */
  .ml-6,
  .ml-4,
  .mr-4,
  .p-5,
  .p-6 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 10px !important;
  }

  .back-to-top-btn {
    margin: 0 auto 15px auto !important;
    position: relative !important;
    left: auto !important;
    transform: none !important;
  }

  .text-footer {
    text-align: center !important;
    font-size: 18px !important;
  }

  .d-flex.gap-3 {
    justify-content: center !important;
    margin-bottom: 20px !important;
  }

  .col-md-6.text-left {
    text-align: center !important;
  }

  .footer-top-border {
    padding: 20px 15px !important;
  }
}

/* Force line break on screens smaller than 1360px */
@media (max-width: 1360px) {
  .Input-mobile {
    /* Restricting the width forces the text to wrap to the next line */
    font-size: 30px !important;
    margin-bottom: 23px;
  }
}

/* ======================================================
   NAVBAR & ABOUT US RESPONSIVENESS PATCH
   (Paste this at the very bottom of your CSS file)
   ====================================================== */

@media (max-width: 770px) {
  /* 1. NAVBAR FIXES */
  /* Shrink logo from 90px to 50px on mobile */
  .navbar-brand img {
    height: 50px !important;
    width: auto !important;
  }

  .navbar-toggler {
    border: none !important;
    padding: 0 !important;
  }

  /* Center Menu Links */
  .navbar-nav .nav-link {
    text-align: center !important;
    padding: 10px 0 !important;
  }

  /* Center "Apply Now" Button */
  .navbar-collapse .d-flex {
    justify-content: center !important;
    width: 100% !important;
    margin-bottom: 15px;
  }

  /* 2. ABOUT US PAGE FIXES */
  .faq-hero-section {
    text-align: left !important;
    padding-top: 30px !important;
  }

  .breadcrumb-h {
    font-size: 32px !important;
    line-height: 1.2 !important;
    text-align: left !important;
    margin-top: 10px !important;
  }

  .breadcrumb-p {
    font-size: 15px !important;
    text-align: left !important;
  }

  /* Fix Breadcrumb centering */
  .breadcrumb {
    justify-content: left !important;
  }

  /* Unset fixed widths for About section */
  .about-us,
  .radius,
  .habt {
    width: 100% !important;
    height: auto !important;
    padding: 20px !important;
    margin: 0 !important;
  }

  /* Fix overlapping content */
  .p-5 {
    padding: 20px !important;
  }

  .ml-6 {
    margin-left: 0 !important;
  }

  /* Fix Nice Finance Button & Image */
  .btn-primary {
    margin-top: 20px !important;
    /* Removes -320px overlap */
    margin-left: 0 !important;
    width: 100%;
  }
}

@media (max-width: 991px) {
  /* Shrink logo on mobile */
  .navbar-brand img {
    height: 50px !important;
    width: auto !important;
  }

  /* Remove border from hamburger menu */
  .navbar-toggler {
    border: none !important;
    padding: 0 !important;
  }

  /* Center menu links */
  .navbar-nav {
    text-align: center;
  }

  /* Center 'Apply Now' button */
  .navbar-collapse .d-flex {
    justify-content: center !important;
    margin-bottom: 15px;
  }
}

.pad-top {
  padding-top: 12px;
}

/* Ensure dropdown caret visible */
.navbar .dropdown-toggle::after {
  margin-left: 0.5rem;
}

/* Navbar Layout */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
  display: block;
  padding: 0.5rem 1rem;
}

/* Navbar Brand */
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

/* Navbar Light Theme Colors */
.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
  padding: 30px 15px;
  /* Custom padding from your file */
  color: #001c43;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #fd7c04;
}

/* Toggler (Mobile Menu Button) */
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 30px;
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* Hide bottom border on small screens */
@media (max-width: 770px) {
  .navbar.border-bottom {
    border-bottom: none !important;
  }
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #001c43;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 600;
  color: #001c43;
  text-align: inherit;
  white-space: nowrap;
  background-color: #fff !important;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #fd7c04;
  text-decoration: none;
  background-color: #f8f9fa;
}

.btn {
  font-family: "Inter", sans-serif;
  font-size: 16px !important;
  line-height: 20px !important;
  font-weight: 700 !important;
  display: inline-block;
  color: white !important;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 12px 32px;
  border-radius: 4px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  text-decoration: none;
}

.btn-primary {
  color: #fff;
  background-color: #001c43;
  border-color: #001c43;
}

.btn:hover {
  background-color: #33e196;
  text-decoration: none;
}

.btn-primary:hover {
  color: #fff;
  background-color: #00122b;
  border-color: #ffffff;
}

.bg-light {
  background-color: #fffae7 !important;
}

.d-flex {
  display: flex !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.font-weight-bold {
  font-weight: 600 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.ms-lg-3 {
  margin-left: 1rem !important;
}

/* Desktop Expand Logic (min-width 992px) */
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

/* Mobile Adjustments (max-width 991.98px) */
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }

  .navbar-light .navbar-nav .nav-link {
    padding: 10px 15px;
  }
}

/* PAIZO SPECIFIC MOBILE PATCHES (Navbar-specific) */
@media (max-width: 770px) {
  /* 1. Shrink logo from 90px to 50px on mobile */
  .navbar-brand img {
    height: 50px !important;
    width: auto !important;
  }

  /* 2. Remove border from toggle button */
  .navbar-toggler {
    border: none !important;
    padding: 0 !important;
  }

  /* 3. Center Menu Links */
  .navbar-nav .nav-link {
    text-align: center !important;
    padding: 10px 0 !important;
  }

  /* 4. Center "Apply Now" Button in the collapse menu */
  .navbar-collapse .d-flex {
    justify-content: center !important;
    width: 100% !important;
    margin-bottom: 15px;
  }

  /* 5. Button Width Adjustment */
  .btn {
    width: 100% !important;
    padding: 12px 20px !important;
    display: block !important;
    margin: 0 !important;
  }
}

/* Additional Mobile Overrides for Apply Button Positioning */
@media (max-width: 991px) {
  /* Center 'Apply Now' button wrapper */
  .navbar-collapse .d-flex {
    justify-content: center !important;
    margin-bottom: 15px;
  }

  /* Center menu links */
  .navbar-nav {
    text-align: center;
  }

  .navbar-brand img {
    height: 50px !important;
    width: auto !important;
  }
}

@media (min-width: 992px) {
  .custom-image-position {
    /* This mimics your original 'left: -90px' but keeps the layout intact */
    position: relative;
    z-index: 2;
    max-width: 120%;
    /* Allows image to be slightly larger than its column if needed */
  }

  .content-wrapper {
    /* Ensures the text box stays roughly where your original padding placed it */
    padding-left: 40px;
    width: 100%;
  }
  .N-img {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .n-content {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .custom-image-position {
    margin-bottom: 20px;
    width: 30%;
    /* Controls image size on mobile */
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 770px) {
  .Calc-sec-img {
    flex: 0 0 100% !important;
  }

  .Calc-sec-img img {
    max-width: 30% !important;
  }

  .Calc-sec-cont {
    flex: 0 0 100% !important;
  }
}
