@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Archivo", sans-serif;
}

:root {
  /* AapkaCash Brand Color Palette */
  --primary-color: #16A34A;          /* Primary Green */
  --primary-color-hover: #12823B;    /* Dark Green Hover */

  --secondary-color: #22C55E;        /* Secondary Green */
  --secondary-color-hover: #16A34A;

  --accent-color: #F5B21A;           /* Accent Gold / Yellow */
  --accent-color-hover: #D99810;

  /* Text Colors */
  --text-color: #0D2540;             /* Primary Blue Text */
  --text-dark: #0D2540;
  --text-white: #FFFFFF;
  --text-gray: #6B7280;              /* Secondary Text */
  --text-gray-2: #6B7280;
  --text-gray-3: #E5E7EB;

  /* Background Colors */
  --light-primary-bg: #DCFCE7;       /* Light Green */
  --light-secondary-bg: #F0FDF4;     /* Very Light Green */
  --light-accent-bg: #FFF7E0;        /* Light Gold */

  --green-bg: #16A34A;
  --secondary-green-bg: #22C55E;
  --blue-bg: #0D2540;
  --dark-bg: #0D2540;                /* Premium Dark Blue */

  --white-bg: #FFFFFF;
  --white-light-bg: #F3F4F6;         /* Light Gray Background */

  /* Old variable compatibility */
  --purple-text: #0D2540;
  --purple-light-text: #D1FAE5;
  --purple-gray-bg: #0D2540;
}

/* Main brand gradient */
.gradient-1 {
  background: linear-gradient(135deg, #0D2540 0%, #16A34A 62%, #F5B21A 100%);
}

/* Soft green background gradient */
.gradient-2 {
  background: linear-gradient(135deg, #F3F4F6 0%, #F0FDF4 100%);
}

/* Dark premium fintech gradient */
.gradient-dark {
  background: linear-gradient(135deg, #0D2540 0%, #064E3B 55%, #16A34A 100%);
}

body {
  color: var(--text-color) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--white-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color-hover);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Navbar */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white-bg);
  z-index: 50;
  transition: transform 0.3s ease-in-out;
}

.nav-bar.hidden {
  transform: translateY(-100%);
}

.nav-bar.visible {
  transform: translateY(0);
}

.navbar-in {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  width: 150px;
  height: 40px;
  object-fit: contain;
}

.navbar-left ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.menu-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 24px 15px;
  text-transform: capitalize;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-link:hover,
.menu-link.active {
  color: var(--primary-color);
}

.navbar-right {
  display: flex;
  gap: 20px;
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 600;
}

.navbar-phone span i {
  color: var(--primary-color);
  font-size: 18px;
}

.navbar-phone a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;

  &:hover {
    color: var(--primary-color);
  }
}

.cmn-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--text-white);
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1;
}

.btn-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: var(--purple-gray-bg);
  border-radius: 8px;
  z-index: -1;
  transition: all 0.3s ease;
}

.cmn-btn:hover .btn-overlay {
  height: 100%;
}

.cmn-btn:hover i {
  transform: translateX(5px);
  transition: all 0.3s ease;
}

.cmn-btn-2 .btn-overlay {
  background-color: var(--white-bg);
}

.cmn-btn-2:hover {
  color: var(--primary-color);
}

.cmn-btn.cmn-btn-3 {
  background-color: var(--purple-gray-bg);
}

.cmn-btn-3 .btn-overlay {
  background-color: var(--primary-color);
}

.menu-btn {
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  background-color: transparent;
  font-size: 20px;
  color: var(--primary-color);
}

@media (max-width: 1399px) {
  .nav-bar {
    padding: 10px 0;
  }
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background-color: #0006;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  visibility: visible;
  opacity: 1;
}

.mobile-nav__in {
  max-width: 350px;
  width: 100%;
  height: 100%;
  background-color: var(--white-bg);
  overflow-y: auto;
  padding: 40px;
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.mobile-nav.active .mobile-nav__in {
  transform: translateX(0);
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.close-menu-btn {
  background-color: var(--primary-color);
  color: var(--text-white);
  height: 35px;
  width: 35px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 15px;
}

.mobile-about__us h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 50px 0 20px 0;
}

.mobile-about__us p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: var(--text-gray);
}

.mobile-menu__ul {
  margin-top: 40px;
}

.mobile-menu__ul ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu__ul ul li {
  margin: 15px 0;
}

.mobile-menu__ul ul li a {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-color);

  &:hover {
    color: var(--primary-color);
  }
}

.mobile-menu__ul ul li a.active {
  color: var(--primary-color);
}

.mobile-contact__info {
  margin-top: 40px;
}

.mobile-contact__info h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 50px 0 20px 0;
}

.mobile-contact__info p {
  margin: 15px 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-gray);
}

.mobile-contact__info p i {
  min-width: 30px;
}

.mobile-contact__info p a {
  color: var(--text-gray);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;

  &:hover {
    color: var(--primary-color);
  }
}

@media (min-width: 1399px) {
  .mobile-nav {
    display: none;
  }
}

/* Hero */
.hero {
  background-image: url("../images/home/Banner-AapkaCash.webp");
  background-size: cover;
  min-height: 90vh;
  width: 100%;
  position: relative;
  padding: 180px 0 120px 0;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: transparent;
  background-image: linear-gradient(90deg, rgba(13, 37, 64, 0.82) 0%, #ffffff00 100%);
  z-index: -1;
}

.hero-in {
  max-width: 600px;
  width: 100%;
}

.hero-in h2 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #D1FAE5;
}

.hero-in h1 {
  font-size: 60px;
  font-weight: 900;
  color: var(--text-white);
  margin-top: 10px;
}

.hero-in p {
  font-size: 18px;
  color: var(--text-white);
  margin-top: 10px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .hero-in h1 {
    font-size: 36px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-in h1 {
    font-size: 48px;
  }
}

@media (max-width: 1024px) {
  .hero {
    background-position: center left;
  }
}

/* Features */

.features {
  margin-top: -90px;
  position: relative;
  z-index: 1;
}

.features .row > div {
  margin: 10px 0;
}

.feature-item {
  padding: 30px 30px 30px 30px;
  box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0.2);
  border: 1px solid #E5E7EB;
  background-color: var(--white-bg);
  border-radius: 20px;
  display: flex;
  gap: 24px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-item:hover {
  border-color: var(--primary-color);
  transition: all 0.3s ease;
}

.feature-icon {
  height: 80px;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-light-bg);
  border-radius: 6px;
  font-size: 40px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.feature-item:hover .feature-icon i {
  transform: scale(1.05);
  transition: all 0.3s ease;
}


.feature-content h1 {
  font-size: 22px;
  font-weight: 700;

  &:hover {
    color: var(--primary-color);
    transition: all 0.3s ease;
  }
}

.feature-content p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-gray);
}

@media (max-width: 991px) {
  .features {
    margin-top: 0px;
    padding-top: 50px;
  }
}


/* Loan Approved  */

.loan-approved {
  padding: 100px 0 0 0;
}

.loan-approved-left h2 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
}

.loan-approved-left h1 {
  font-size: 40px;
  font-weight: 700;
}

.loan-approved-left p {
  font-size: 16px;
  color: var(--text-gray);
  margin: 0;
}

.loan-form-wrapper {
  background-color: var(--white-bg);
  box-shadow: 0 0 0 0.5px rgba(0, 20, 40, 0.1),
    0 2px 8px 0 rgba(50, 55, 90, 0.2);
  border-radius: 3px;
  padding: 24px;
}

.loan-form-header {
  text-align: center;
}

.loan-form-header h1 {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-gray);
}

.loan-form-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-gray-2);
  margin-top: 20px;
}

.loan-form-body {
  margin-top: 40px;
}

.loan-input-wrapper label {
  font-size: 16px;
  color: var(--text-gray);
  font-weight: 600;
  margin-bottom: 2px;
}

.loan-input-in {
  position: relative;
}

.loan-error {
  position: absolute;
  top: -10px;
  right: 30px;
  color: red;
  background-color: var(--white-bg);
  font-size: 14px;
  display: none;
}

#monthly-income-salaried-error {
  color: red;
  font-size: 16px;
  font-weight: 500;
  margin: 20px 0 0 0;
  display: none;
}

.loan-input-wrapper input,
.loan-input-wrapper select,
.loan-input-wrapper textarea {
  height: 45px;
  width: 100%;
  border: 1px solid #E5E7EB;
  border-radius: 3px;
  padding: 0 10px;
  font-size: 16px;
  color: var(--text-gray);
  font-weight: 400;
  outline: none;
  transition: all 0.3s ease;
}

.loan-input-wrapper textarea {
  height: 100px;
  padding-block: 10px;
}

.loan-input-wrapper input:focus,
.loan-input-wrapper select:focus,
.loan-input-wrapper textarea:focus {
  border-color: var(--primary-color);
  transition: all 0.3s ease;
}


.loan-input-wrapper input.error-border,
.loan-input-wrapper select.error-border,
.loan-input-wrapper textarea.error-border {
  border-color: red !important;
}

.loan-input-wrapper input.valid-border,
.loan-input-wrapper select.valid-border,
.loan-input-wrapper textarea.valid-border {
  border-color: var(--primary-color) !important;
}

.loan-input-condition.error-border {
  border-color: red !important;
}

.loan-input-condition {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-top: 20px;
}

.loan-input-condition input {
  width: 70px !important;
  transform: scale(1.4);
  accent-color: var(--primary-color);
  cursor: pointer;
}

.loan-input-condition input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.loan-input-condition label {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray-2);
  cursor: pointer;
  margin-top: -5px;
}

.loan-form-body button {
  margin-top: 10px;
  display: block;
  width: 100%;
  background-color: var(--primary-color);
  color: var(--text-white);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 2px;
  border: none;
  outline: none;
  cursor: pointer;

  &:hover {
    box-shadow: 0 0 100px rgba(50, 50, 50, 0.08) inset;
  }
}

.loan-form-body > form > p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray-2);
  margin-top: 20px;
}

@media (max-width: 767px) {
  .loan-approved-left h1 {
    font-size: 36px;
  }
}

/* Instant Loan */

.instant-loan {
  padding: 100px 0;
}

.instant-loan-left img {
  width: 100%;
}

.loan-status {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--white-bg);
  padding: 20px 20px 20px 20px;
  border-radius: 50px 12px 50px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.loan-status h4 {
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  color: var(--purple-text);
}

.loan-status p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.instant-loan-right h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
}

.instant-loan-right h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--purple-text);
}

.instant-loan-right p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-gray-2);
  margin: 10px 0 20px 0;
}

.instant-feature {
  margin: 10px 0;
  display: flex;
  gap: 6px;
}

.instant-feature i {
  font-size: 22px;
  color: var(--purple-text);
  margin-top: 2px;
}

.instant-feature p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--purple-text);
}

.instant-feature.services p {
  font-weight: 400;
}

@media (max-width: 575px) {
  .loan-status {
    bottom: 20px;
  }
}

@media (max-width: 767px) {
  .instant-loan-right h1 {
    font-size: 36px;
  }
}

/* Loan Journey */
.loan-journey {
  padding: 100px 0;
  background-color: var(--purple-gray-bg);
}

.loan-journey-header {
  text-align: center;
}

.loan-journey-header h2 {
  color: var(--text-white);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.loan-journey-header h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 20px 0;
}

.loan-journey-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.loan-journey-item {
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}


.loan-journey-item h3 {
  color: var(--text-gray-3);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
}

.loan-journey-box {
  box-shadow: 0 22px 30px rgba(0, 46, 39, 0.5);
  border-radius: 10px 30px;
  padding: 53px 30px 35px;
  transition: all 520ms ease;
  background-color: var(--white-bg);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.loan-journey-box h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.loan-journey-box p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-gray-2);
  margin: 20px 0 0 0;
}

.step-no {
  background: var(--primary-color);
  color: var(--text-white);
  position: absolute;
  left: 0;
  right: 0;
  top: -25px;
  z-index: 2;
  margin: auto;
  font-size: 18px;
  font-weight: 700;
  height: 60px;
  width: 60px;
  border: 7px solid var(--white-light-bg);
  border-radius: 50%;
  transition: all 520ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loan-journey-item:hover .step-no {
  background-color: var(--white-bg);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.loan-journey-item:hover .loan-journey-box h1 {
  color: var(--primary-color);
}

@media (max-width: 575px) {
  .loan-journey-items {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 767px) {
  .loan-journey-header h1 {
    font-size: 36px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .loan-journey-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Rate & Charge */
.rate-charge {
  padding-top: 50px;
}

.rate-charge .row > div {
  margin: 15px 0;
}

.rate-charge-box {
  background-color: var(--white-bg);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  padding: 24px;
  height: 100%;
}

.rate-charge-box h1 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px 0;
}

.rate-charge-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rate-charge-box ul li {
  margin: 5px 0;
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
}

.rate-charge-box p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
}

/* How it works  */

.how-it-works {
  padding-top: 50px;
}

.how-it-works h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-align: center;
}

.how-it-works .row > div {
  margin: 15px 0;
}

.how-it-works-item {
  height: 100%;
}

.how-it-works .row > div:nth-child(2),
.how-it-works .row > div:nth-child(3) {
  border-left: 1px solid var(--text-gray-2);
}

.how-it-works-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px 0;
}

.how-it-works-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.how-it-works-item ul li {
  margin: 5px 0;
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
}

.how-works-criteria {
  padding: 16px;
  border: 1px solid var(--text-gray-2);
}

.how-works-criteria h2 {
  font-size: 24px;
  font-weight: 600;
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 10px 0;
  text-align: center;
  margin-bottom: 20px;
}

.how-works-criteria ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.how-works-criteria ul li {
  margin: 5px 0;
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
}


@media (max-width: 767px) {
  .how-it-works .row > div:nth-child(2),
  .how-it-works .row > div:nth-child(3) {
    border-left: none;
  }
}

/* Required Documents */
.document-required {
  padding-top: 50px;
}

.document-required h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.document-required .row > div {
  margin: 15px 0;
}

/* Payment Table */
.payment-table {
  padding-top: 50px;
}

.payment-table h1 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.payment-table table thead tr,
.payment-table table tbody tr {
  vertical-align: middle;
}

.payment-table table tr th {
  background-color: var(--primary-color) !important;
  color: white !important;
  padding-block: 15px !important;
}

.payment-table table tr td {
  padding-block: 15px !important;
}

/* Testimonial */
.testimonial {
  padding: 100px 0;
}

.testimonial-left,
.testimonial-right {
  margin: 15px 0;
}

.testimonial-left h2 {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.testimonial-left h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 20px 0;
}

.testimonial-left p {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 30px 0;
  color: var(--text-gray);
}

.testimonial-item {
  margin: 10px 0;
  padding: 40px 40px 40px 40px;
  border-radius: 12px 12px 12px 12px;
  background-color: var(--text-white);
  position: relative;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--primary-color);
  font-size: 20px;
}

.testimonial-item p {
  margin: 20px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-gray);
}


.testimonial-author h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.testimonial-author h5 {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--purple-text);
}

.testimonial-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--text-white);
  position: absolute;
  bottom: -10px;
  right: 0;
}


.testimonial-right .owl-carousel .owl-prev,
.testimonial-right .owl-carousel .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--purple-gray-bg) !important;
  color: white !important;
  height: 60px;
  width: 60px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;

  &:hover {
    background-color: var(--green-bg) !important;
  }
}

.testimonial-right .owl-carousel .owl-prev {
  left: -60px;
}

.testimonial-right .owl-carousel .owl-next {
  right: -60px;
}

.testimonial-right .owl-carousel:hover .owl-prev {
  opacity: 1;
  visibility: visible;
  left: 20px;
}
.testimonial-right .owl-carousel:hover .owl-next {
  opacity: 1;
  visibility: visible;
  right: 20px;
}

@media (max-width: 767px) {
  .testimonial-left h1 {
    font-size: 36px;
  }

  .testimonial-item {
    padding: 40px 30px;
  }
}

/* Why Choose  */
.why-choose {
  padding: 100px 0;
  background-color: var(--purple-gray-bg);
}

.why-choose-left h2 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-white);
}

.why-choose-left h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-white);
}

.why-choose-right p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-white);
  margin: 0;
}

.why-choose-items > div {
  margin: 15px 0;
}

.why-choose-item {
  height: 100%;
  background-color: var(--white-bg);
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 35px 45px;
  overflow: hidden;
  position: relative;
}

.why-choose-item__header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-choose-item__header i {
  font-size: 35px;
  color: var(--primary-color);
  transition: all 0.3s linear;
}

.why-choose-item:hover i {
  transform: scale(1.05);
  background-color: var(--white-bg);
}

.why-choose-item__header h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.why-choose-item__content p {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
}

.why-choose-item svg {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #E5E7EB;
}

@media (max-width: 767px) {
  .why-choose-left h1 {
    font-size: 36px;
  }

  .why-choose-item {
    padding: 35px 30px;
  }
}

/* Trust Card */
.trust-card {
  padding: 100px 0;
}

.trust-card-left img {
  width: 100%;
  border-radius: 16px;
}

.trust-card-right h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
}

.trust-card-right h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 15px 0;
}

.trust-card-right > p {
  font-size: 16px;
  font-weight: 500;
  color: var(--purple-text);
  margin: 0 0 20px 0;
}

@media (max-width: 767px) {
  .trust-card-right h1 {
    font-size: 36px;
  }
}

/* Footer */
.footer {
  padding: 100px 0 50px 0;
  background-color: var(--dark-bg);
}

.footer-top h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
}

.footer-top h1 {
  color: var(--text-white);
  font-size: 40px;
  font-weight: 700;
  margin: 20px 0 40px 0;
}

.footer-bottom {
  margin-top: 50px;
  background-color: var(--purple-gray-bg);
  border-radius: 30px;
  padding: 120px 110px;
}

.footer-item {
  margin: 15px 0;
}

.footer-item.info {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.footer-item.info img {
  width: 50px;
  margin-bottom: 10px;
}

.footer-item.info p {
  margin: 0;
  color: var(--text-white);
  font-size: 16px;
  font-weight: 500;
}

.footer-item.info h3 a {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;

  &:hover {
    color: #F5B21A;
  }
}


.footer-item.info h5 a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-white);
  text-decoration: none;
  transition: all 0.3s ease;

  &:hover {
    color: #F5B21A;
  }
}

.footer-item.menu h1,
.footer-item.business-hour h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 30px 0;
}

.footer-item.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-item.menu ul li {
  margin: 15px 0;
}


.footer-item.menu ul li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-white);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;

  &::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--green-bg);
    transition: all 0.3s ease;
  }

  &:hover {
    color: var(--purple-light-text);

    &::after {
      width: 100%;
    }
  }
}

.footer-item.business-hour p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-white);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--purple-light-text);
  font-size: 16px;
  font-weight: 500;
  margin: 20px 0;
}

.footer-item.business-hour p span.closed {
  color: var(--purple-light-text);
}

.footer-copyright {
  margin-top: 50px;
  text-align: center;
}

.footer-copyright p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-white);
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  .footer-top h1 {
    font-size: 36px;
  }

  .footer-bottom {
    padding: 50px 24px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom {
    padding: 50px 40px;
  }
}


/* Back To Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white-bg);
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
  z-index: 10;
}

/* Sub Hero */
.sub-hero {
  background-color: var(--dark-bg);
  padding: 180px 0 100px 0;
  display: flex;
  align-items: center;
}

.sub-hero-in > h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  margin: 10px 0;
}

.sub-hero-in > h1 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--text-white);
}

.sub-hero-in > p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray-3);
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .sub-hero-in > h1 {
    font-size: 34px;
  }
}

/* Apply Form */
.apply-form {
  padding: 150px 0;
  background-color: var(--white-bg);
}

.apply-form-top h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
}

.apply-form-top h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .apply-form {
    padding: 100px 0;
  }

  .apply-form-top h1 {
    font-size: 36px;
  }
}

/* Thank You */
.thank-you-content {
  padding: 100px 0;
  background-color: var(--white-bg);
}

.thank-you-content .row > div {
  margin: 15px 0;
}

@media (max-width: 767px) {
  .thank-you-content {
    padding: 50px 0;
  }
}

/* About Us */
.about-us {
  padding: 180px 0 100px 0;
}

.about-img {
  margin: 0 0 20px 0;
}

.about-img img:first-child {
  max-width: 95%;
}

.about-img img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}


.about-hero-shape {
  position: absolute;
  bottom: -40px;
  left: 40px;
  width: 200px;
  height: 200px;
  object-fit: contain;
  z-index: -1;
}

.about-right h2 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  margin: 0;
}

.about-right h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 15px 0 20px 0;
}

.about-right h1 span {
  color: var(--primary-color);
}


.about-right h1 span.visible::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 4px;
  background-color: var(--primary-color);
}

.about-right p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
  margin: 0 0 15px 0;
}

.about-features__wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-feature-item .icon {
  height: 45px;
  width: 45px;
  min-width: 45px;
  background-color: var(--white-bg);
  border: 1px solid var(--text-gray-3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 18px;
}

.about-feature-item h5 {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

@media (max-width: 767px) {
  .about-us {
    padding: 100px 0;
  }

  .about-right h1 {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .about-us {
    padding: 100px 0;
  }

  .about-img img:first-child {
    max-width: 100%;
  }
}

/* Our Team */
.our-team {
  padding-bottom: 100px;
}

.our-team-left h2 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  margin: 0;
}

.our-team-left h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 15px 0 20px 0;
}

.our-team-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.teams-filter-btn {
  background-color: var(--light-primary-bg);
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 5px;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

.teams-filter-btn.active {
  color: var(--text-white);
  background-color: var(--primary-color);
}

.team-content p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
  margin: 10px 0;
}



.our-team-right img {
  width: 100%;
  border-radius: 16px;
}

@media (max-width: 767px) {
  .our-team-left h1 {
    font-size: 36px;
  }
}

/* Quick Funds  */
.quick-funds {
  padding: 100px 0;
  background-color: var(--purple-gray-bg);
}

.quick-funds__header h2 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.quick-funds__header h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 15px 0;
}

.quick-funds__header p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.quick-funds__item img {
  width: 100%;
  border-radius: 16px;
}

.quick-funds__item h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 20px 0;
  color: var(--text-white);
}

.quick-funds__item p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: var(--text-gray-3);
}

@media (max-width: 767px) {
  .quick-funds__header h1 {
    font-size: 36px;
  }
}

/* faqs */
.faqs {
  padding: 100px 0;
  background-color: var(--white-bg);
}

.faqs-header h2 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  margin: 0;
}

.faqs-header h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 15px 0;
}

#faqs-accordion .accordion-item {
  margin: 15px 0 !important;
  background-color: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 1px solid #D1D5DB;
}

#faqs-accordion button {
  font-size: 22px;
  font-weight: 600;
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  border-radius: 0 !important;
  padding-top: 10px;
  padding-bottom: 20px;
}

#faqs-accordion .accordion-button::after {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../icons/plus-icon.svg");
  background-size: 15px;
  background-position: center;
  background-repeat: no-repeat;
  transform: none;
}

#faqs-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("../icons/minus-icon.svg");
  transform: none;
}

.accordion-body.faqs-accordion-body {
  padding: 0;
}

.accordion-body.faqs-accordion-body p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
}

.accordion-body.faqs-accordion-body ul,
.accordion-body.faqs-accordion-body ol {
  padding: 0;
  padding-left: 20px;
}

.accordion-body.faqs-accordion-body ul li,
.accordion-body.faqs-accordion-body ol li {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
  margin: 5px 0;
}

@media (max-width: 767px) {
  .faqs-header h1 {
    font-size: 36px;
  }
}

/* Bank Details */
.bank-details-table {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bank-details-table table {
  vertical-align: middle;
}

.bank-details-table table thead tr th {
  background-color: var(--primary-color-hover);
  color: var(--text-white);
  font-size: 18px;
  font-weight: 600;
  padding: 15px 10px;
}


.bank-details-table table tbody tr td {
  padding: 15px 10px;
  font-size: 16px;
  color: #374151;
}

.bank-details-table table tbody tr td:nth-child(1) {
  font-weight: 600;
}

/* Contact */

.contact-left > h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item i {
  font-size: 30px;
  color: var(--primary-color);
}

.contact-item h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.contact-item p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
  margin: 10px 0 0 0;
}

.contact-form-wrapper {
  background-color: var(--white-bg);
  box-shadow: 0 0 0 0.5px rgba(0, 20, 40, 0.1),
    0 2px 8px 0 rgba(50, 55, 90, 0.2);
  border-radius: 5px;
  padding: 40px 30px 30px 30px;
}

.contact-submit-btn {
  background-color: var(--primary-color);
  color: var(--text-white);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 2px;
  border: none;
  outline: none;
  cursor: pointer;
  width: 100%;

  &:hover {
    background-color: var(--primary-color-hover);
  }
}

@media (max-width: 767px) {
  .contact-left > h1 {
    text-align: center;
  }

  .contact-item {
    gap: 20px 10px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}


/* Map */
.map-section {
  overflow-x: hidden;
  background-color: var(--white-bg);
  padding: 10px;
}

.map-section iframe {
  height: 400px;
  width: 100%;
}

/* Privacy Policy  */

.privacy-content p {
  font-size: 16px;
  font-weight: 500;
  margin: 15px 0;
  color: var(--text-gray);
}

.privacy-content h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.privacy-content ul {
  padding: 0;
  padding-left: 20px;
}

.privacy-content ul li {
  font-size: 16px;
  font-weight: 500;
  margin: 5px 0;
  color: var(--text-gray);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 230px !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: contain;
}

@media (max-width: 767px) {
    .footer-logo img {
        width: 190px !important;
    }
}

/* Scroller Margin For Services */
section#pending-bills,
section#shopping,
section#travel,
section#emergency,
section#home-renovation,
section#credit-card-bills,
section#school-fees {
  scroll-margin-top: 150px;
}

/* AapkaCash Brand Utility Classes */
.text-brand-primary {
  color: var(--primary-color) !important;
}

.text-brand-blue {
  color: var(--text-color) !important;
}

.text-brand-gold {
  color: var(--accent-color) !important;
}

.bg-brand-primary {
  background-color: var(--primary-color) !important;
}

.bg-brand-blue {
  background-color: var(--blue-bg) !important;
}

.bg-brand-light {
  background-color: var(--white-light-bg) !important;
}

.border-brand-primary {
  border-color: var(--primary-color) !important;
}