body {
  margin: 0;
  font-family: "Inter", sans-serif;
  padding: 0;
  box-sizing: border-box;
}

.custom-navbar {
  border-bottom: 1px solid #00686e;
  background: #00686e;
  font-family: "Inter", sans-serif;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.logo img {
  height: 40px;
}

.right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.get-app {
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  cursor: pointer;
}

.get-app:hover {
  background: #f3f3f3;
}

.right a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.profile {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}

.profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.menu-btn:focus {
  outline: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 999;
  padding: 20px;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.menu-logo img {
  height: 35px;
}

.close-menu {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.login-box {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 10px;
  margin-bottom: 20px;
}

.login-box img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
}

.login-box .login-text {
  flex-grow: 1;
}

.login-box .login-text h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.login-box .login-text p {
  margin: 0;
  font-size: 12px;
  color: #555;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.icon-box img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f5f5f5;
  padding: 10px;
  object-fit: cover;
  margin-bottom: 8px;
}
.icon-box span {
  font-size: 12px;
  color: #000;
  font-weight: 600;
}
/* business section */
.business-section {
  padding: 16px;
}

.business-section h5 {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

.business-slider {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.business-card {
  flex: 0 0 80%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  padding: 12px;
  height: 200px;
  display: flex;
  flex-direction: column;
}

.business-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

.business-card h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  flex-shrink: 0;
}

.business-card p {
  font-size: 12px;
  color: #666;
  margin: 0;
  flex-grow: 1;
  overflow: hidden;
}

/* Premium Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f9fafb 0%, #eef2ff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.08);
  z-index: 0;
}
.hero-section::before {
  width: 250px;
  height: 250px;
  top: -80px;
  left: -80px;
}
.hero-section::after {
  width: 300px;
  height: 300px;
  bottom: -120px;
  right: -120px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111827;
  line-height: 1.2;
}
.hero-title span {
  color: #6366f1; /* highlight */
}

.hero-list {
  list-style: none;
  padding: 0;
}
.hero-list li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #374151;
}
.hero-list li i {
  background: #22c55e;
  color: #22c55e;
  font-size: 0.1rem;
  border-radius: 50%;
  padding: 5px;
  margin-right: 10px;
}


/* Card */
.hero-card {
  border-radius: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  /* padding: 30px; */
  max-width: 440px;
  height: 290px;
  margin: auto;
  position: relative; 
  z-index: 1;
  border: 1px solid #1e1e1c52;
}
.hero-card input {
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #0000005d;
  transition: all 0.3s ease;
}
.hero-card input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.hero-card button {
  width: 100%;
  border-radius: 10px;
  padding: 14px;
  font-weight: 600;
  background: linear-gradient(90deg, #00686e, #00686e);
  color: #fff;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.3);
}

.hero-card small {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: #6b7280;
  font-size: 0.9rem;
}
/* Default radio style */
.form-check-input {
  width: 12px;
  height: 12px;
  border: 2px solid #9ca3af;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover effect */
.form-check-input:hover {
  border-color: #6366f1; /* indigo */
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

/* Checked state */
.form-check-input:checked {
  background-color: #6366f1;
  border-color: #4f46e5;
}

/* Inner dot */
.form-check-input:checked::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
}
/* Inner dot adjustment */
.form-check-input:checked[type="radio"] {
  background-image: radial-gradient(circle, #fff 40%, transparent 50%);
}
/* Label styling */
.form-check-label {
  margin-left: 6px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  margin-top: 7px;
  font-size: 18px;
  
}
/* Banner section */
.promo-banner {
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  margin: 20px auto;
  max-width: 1100px;
  min-height: 200px;
}

/* Custom Controls */
.custom-controls {
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.custom-controls a {
  text-decoration: none;
  color: #111;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.2s;
}
.custom-controls a:hover {
  background: #f3f4f6;
}

/* provider-section */

.provider-section {
  text-align: center;
  padding: 40px 20px;
}
.provider-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.bank-provider-track {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
}
.bank-provider-track::-webkit-scrollbar {
  display: none;
}

.provider-card {
  flex: 0 0 auto;
  width: 160px;
  text-align: center;
}
.provider-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}
.provider-card p {
  font-weight: 500;
  margin-bottom: 4px;
}
.provider-card small {
  color: #888;
  font-size: 0.85rem;
}

/* Controls */
.slider-controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f3f4f6;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
}
.control-btn:hover {
  background: #e5e7eb;
}
.control-btn.active {
  background: #c7d2fe;
  color: #4f46e5;
}

/* About us */

.about-us {
  background: #f9f9f9;
}
.about-us h2 {
  font-weight: 700;
  margin-bottom: 20px;
}
.about-us p {
  color: #555;
  line-height: 1.7;
}
.about-us img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.btns {
  display: inline-block;
  font-weight: 500;
  padding: 10px 20px;
  background-color: #544ee8;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.4s ease, transform 0.2s ease;
}

.btns:hover {
  background-color: #4f46e5;
  transform: translateY(-3px);
}
/* Faqs */

.faq-section {
  background: #f9fafc;
}
.faq-section h2 {
  font-weight: 700;
  color: #222;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: #f0f4ff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}
.faq-answer p {
  margin: 15px 0;
  color: #555;
}
.faq-item.active .faq-answer {
  max-height: 200px; /* expands smoothly */
}
.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}
.icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* App Download Section */

.app-download {
  background: #f9fafc;
  text-align: center;
  padding: 50px 0px 0px;
  position: relative;
}
.app-download .container-fluid {
  display: flex;
  flex-direction: column-reverse;
}

.app-download-text {
  position: relative;
}
.app-download h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.app-download p {
  color: #666;
  max-width: 600px;
  margin: 0 auto 20px;
}

/* Store buttons */
.app-download .store-btns img {
  height: 50px;
  margin: 5px;
  cursor: pointer;
}

/* Phone images */
.phones {
  position: relative;
  margin-top: -200px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.phones img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .custom-popup-form-opt input {
    padding: 10px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: border 0.3s ease;
    width: 50px;
    height: 50px;
    margin: 0px !important;
    margin-left: 7px !important;
}
.custom-popup-btn {
  padding:14px;
}
  .faq-section {
    padding-bottom: 0rem !important;
  }
  .app-download {
      padding: 0px 0px 0px;
  }
  .AppDownload{
    margin-top: 0px !important;
  }
  .phones {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }
  .phones img {
    max-width: 100%;
  }
  .app-download-text {
    text-align: left;
    padding: 20px;
  }
  .store-btns {
    display: flex;
  }
  .app-download .store-btns img {
    height: 40px;
  }
}

.footer {
  font-size: 15px;
  color: #fff;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ff909d; /* Premium purple shade */
}

.footer-links li {
  margin-bottom: 8px;
}

.footer {
  background-color: #00686e;
}
/* Profile Popup */
.custom-profile-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 10000;
}

.custom-profile-popup.active {
  opacity: 1;
  visibility: visible;
}

.custom-popup-content {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 350px;
  max-width: 90%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.custom-profile-popup.active .custom-popup-content {
  transform: scale(1);
}

.custom-popup-close {
  background: none;
  border: none;
  font-size: 20px;
  float: right;
  cursor: pointer;
}

.custom-popup-header {
  text-align: center;
  margin-bottom: 20px;
}

.custom-popup-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.custom-popup-btn {
  display: block;
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  background: #00686e;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.custom-popup-btn:hover {
  background: #094e52;
}
.custom-popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.custom-popup-form .form-group {
  display: flex;
  flex-direction: column;
}

.custom-popup-form label {
  font-size: 16px;
  /* margin-bottom: 4px; */
  color: #333;
  font-weight: 500;
}

.custom-popup-form input {
  /* padding: 8px 10px; */
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border 0.3s ease;
}

.custom-popup-form input:focus {
  outline: none;
  border-color: #00686e;
  box-shadow: 0 0 6px rgba(84, 78, 232, 0.3);
}

.custom-popup-btn {
  padding: 8px;
  /* padding:14px; */
  background: #00686e;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s ease;
}

.custom-popup-btn:hover {
  background: #054b4e;
}
.custom-popup-form-opt input {
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border 0.3s ease;
  width: 50px;
  height: 50px;
  left: 21px;
  margin: 12px;
}
.AppDownload{
  margin-top: 130px;
}
.badge {
    display: inline-block;
    min-width: 80px; /* dono badges ke liye same minimum width */
    text-align: center;
}
 #proceedBtn{
  background:#38a3a9;
}
 #proceedBtn:hover{
  background:#00686e;
}