/**
* Website Name: Quid Prime
* Updated: Jan 14 2026
* Author: Quid Prime
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* Fonts */
:root {
  --default-font: "Poppins", sans-serif;
  --nav-font: "Inter", sans-serif;
  --count-font: "Roboto", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  --background2-color: #131414;
  --default-color: #000000;
  --heading-color: #000000;
  --accent-color: #198de8;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #191d4d;
  --nav-hover-color: #198de8;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #191d4d;
  --nav-dropdown-hover-color: #198de8;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f3f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0d83fd;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --contrast-color: #ffffff;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
* {
  text-decoration: none;
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--default-font);
  color: var(--default-color);
  overflow-x: hidden;
  transition: opacity 0.5s 0.3s ease-in-out;
}

a,
li {
  text-decoration: none;
  list-style-type: none;
}

a {
  color: var(--accent-color);
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

a:hover,
li:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

p {
  color: #4a5565;
  line-height: 1.5;
}

h1 {
  font-size: 38px;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 26px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}

@media (max-width: 991px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 26px;
  }
}

[type="reset"],
[type="submit"],
button,
html [type="button"] {
  outline: none;
}

button {
  border: none;
  outline: 0;
  box-shadow: none;
}

.btn {
  font-weight: 500;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  /* transition: 0.5s ease; */
  text-transform: capitalize;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: rgba(255, 255, 255, 0.741);
  border: 1.5px solid #ffffff;
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  max-width: 775px;
}

.scrolled .header .header-container {
  /* background: color-mix(in srgb, var(--surface-color), transparent 5%); */
  backdrop-filter: blur(74px);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.btn-apply .btn-apply__icon {
  width: 30px;
  height: 30px;
  line-height: 28px;
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
}

.header .btn-apply,
.header .btn-apply:focus {
  color: var(--contrast-color);
  background: var(--background2-color);
  font-family: var(--nav-font);
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  box-shadow: 0px 1px 25.8px -8px #0f163a26;
  border: 0.5px solid #899cfd;
  transition: 0.4s;
}

.header .btn-apply:hover,
.header .btn-apply:focus:hover {
  color: var(--contrast-color);
  background: linear-gradient(100.79deg, #1c86ee 8.91%, #02f5ff 135.21%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
    justify-content: center;
    margin: 0 auto;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-apply {
    order: 2;
    margin: 0 10px 0 0;
    padding: 10px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 16px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.bottom {
  background: url("../images/bg-bottom.png") no-repeat;
  margin: 0 20px;
  border-radius: 60px;
  background-size: cover;
  background-position: bottom center;
}
.footer {
  color: var(--default-color);
  font-size: 14px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #ffffff1c;
  font-size: 16px;
  color: #000000;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--default-color);
  background: #ffffff;
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}

.footer .footer-links ul li {
  padding: 15px 0;
  display: flex;
  align-items: center;
  flex: 0 1 auto;
}

.footer .footer-links ul a {
  color: var(--default-color);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}



/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.accent-text {
  color: var(--accent-color);
}

.text-black {
  color: var(--default-color) !important;
}

.text-light {
  color: #787a7a !important;
}
.text-light1 {
  color: #6b7280;
}
.text-green {
  color: #008236;
}
.font-10 {
  font-size: 10px !important;
}
.font-11 {
  font-size: 11px !important;
}
.font-12 {
  font-size: 12px !important;
}
.font-13 {
  font-size: 13px !important;
}
.font-14 {
  font-size: 14px !important;
}
.font-15 {
  font-size: 15px !important;
}
.font-16 {
  font-size: 16px !important;
}

.font-400 {
  font-weight: 400;
}
.font-500 {
  font-weight: 500;
}
.font-600 {
  font-weight: 600;
}
.font-700 {
  font-weight: 700;
}
.font-800 {
  font-weight: 800;
}
.ps-40 {
  padding-left: 40px;
}
.ps-80 {
  padding-left: 80px;
}
.w-90 {
  width: 90%;
}
.w-100 {
  width: 100%;
}
/* .alert-danger {
  color: #bb261e;
} */
.btn-link {
  color: #1c86ee;
}
.loader {
  width: 1.5em;
  height: 1.5em;
  margin: 0 auto;
  color: inherit;
  vertical-align: middle;
  pointer-events: none;
}

.loader {
  border: 0.2em solid rgb(28 134 238);
  border-bottom-color: transparent;
  border-radius: 50%;
  -webkit-animation: 1s loader linear infinite;
  animation: 1s loader linear infinite;
  position: relative;
}

@-webkit-keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-head h2 {
  font-size: 32px;
  font-weight: 600;
}

.section-head p {
  font-size: 18px;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
  background: url("../images/bg-main.png") no-repeat;
  background-size: cover;
  padding: 150px 0 40px;
}

.hero h1 {
  font-size: 34px;
  line-height: 1.47;
  font-weight: 600;
}

.hero p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  line-height: 1.6;
}

.hero-list li {
  border: 0.8px solid #59c700;
  box-shadow: 0px 1px 0px 0px #39ebff40 inset;
  padding: 10px 13px;
  border-radius: 14px;
  color: var(--default-color);
  font-size: 12px;
}

.offer-desc {
  box-shadow: 0px 0px 0px 3px #4ca7032b;
  background: rgba(255, 255, 255, 0.16);
  padding: 4px 16px 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  margin: 0 auto 30px;
  width: fit-content;
  border-radius: 50px;
}

.offer-desc .highlight {
  background: linear-gradient(0deg, #59c700 50%, rgba(74, 240, 255, 0.5) 140%);
  border: 1px solid rgba(255, 255, 255, 0.21);
  color: #ffffff;
  padding: 2px 14px;
  border-radius: 50px;
  margin-right: 5px;
  text-transform: capitalize;
}

.other-page {
  background: url("../images/bg-pages.png") no-repeat;
  background-size: cover;
  background-position: top center;
}

.hero.hero-next {
  background: none;
  padding: 30px 0 40px;
}

.hero-img img.img-fluid {
  max-width: 80%;
}

img.home-logo.img-fluid {
  background: rgb(137 214 246);
  border: 1.5px solid #ffffff;
  border-radius: 10px;
}

/*--------------------------------------------------------------
# EmI Form
--------------------------------------------------------------*/
.emi-form {
  max-width: 90%;
  margin: 0 0 0 auto;
  padding: 30px 30px;
  border-radius: 24px;
  border: 1px solid;
  border: 1px solid #a7e1f5;
}
@media screen and (max-width: 991px) {
  .emi-form {
    margin: 0 auto;
  }
}

@media screen and (max-width: 575px) {
  .emi-form {
    padding: 30px 15px;
  }
}
.form h4 {
  font-weight: 600;
  font-size: 18px;
}
.form .bg-form {
  background: url("../images/bg-pages.png") no-repeat;
  background-position: top center;
}
.form .form-label {
  font-size: 14px;
  font-weight: 500;
  color: #000000cc;
}
.form .form-label .asterisk {
  color: #fb2c36;
}
.form .error {
  margin-top: 5px;
}
.form .field-icon {
  position: absolute;
  top: 12px;
  left: 12px;
}
.form .field-icon.field-icon-rt {
  left: auto;
  right: 12px;
}
.form .field-icon span {
  color: #7a8289;
}
.form .form-control {
  padding-right: 35px;
  padding-top: 12px;
  padding-bottom: 12px;
  border: 1.6px solid rgba(28, 134, 238, 0.1701);
  border-radius: 14px;
  font-size: 14px;
}
.form .form-control:focus {
  box-shadow: none;
  outline: 0;
  border-color: #198de8;
}



/* Validation Changes */

.form-field.has-error .form-control {
  border: 1.6px solid #bb261e;
}

/* .form-field.has-error .error {
  color: #bb261e;
}

.form-field.has-error .form-wrong-icon {
  display: block;
  color: #bb261e;
}

.form-field.is-valid .form-check-icon {
  color: #59c700;
  display: block;
} */

.error {
  color: #bb261e;
}

.form-wrong-icon {
  /* display: block; */
  color: #bb261e;
}

.form-check-icon {
  color: #59c700;
  /* display: block; */
}

.emi-form .form-check-icon,
.emi-form .form-wrong-icon {
  position: absolute;
  top: 0;
  right: 25px;
  margin-top: 43px;
  display: block;
}

.emi-form #manual-loan-amt .form-check-icon,
.emi-form #manual-loan-amt .form-wrong-icon {
  margin-top: 14px;
}

.form-field.is-valid .form-control {
  border: 1.6px solid #198de8;
}

.form .tc-check {
  background: #b2b0b01a;
  border: 1.6px solid rgba(0, 0, 0, 0.0405);
  padding: 12px 22px;
  border-radius: 16px;
  color: #00000066;
}
.form .tc-check a {
  color: #000000;
  text-decoration: underline;
}
.btn-apply {
  background: linear-gradient(90deg, #1c86ee 0%, #1c86ee 100%);
  color: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.21);
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 50px;
  padding: 10px 30px;
}

.btn-apply__icon {
  color: #1c86ee;
  text-align: center;
  line-height: 29px;
}

.btn-apply:hover {
  background: linear-gradient(90deg, #1c86ee 0%, #02f5ff 100%);
  color: #ffffff;
}

.btn-apply__icon i {
  transition: transform 0.4s ease, all 0.4s ease-in-out;
  transform: rotate(-45deg);
}

.btn-apply:hover .btn-apply__icon i {
  transform: rotate(0deg);
}

.emi-form .otp-fields {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  gap: 15px;
}
.emi-form .otp__digit {
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  border-radius: 14px;
  border: 1.6px solid rgba(28, 134, 238, 0.21);
  outline: none;
  transition: 0.2s;
  color: #232323;
}

@media screen and (max-width: 575px) {
  .emi-form .otp__digit {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

.emi-form .otp__digit:focus {
  border-color: #1c86ee;
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.15);
}

button:disabled {
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
}

.emi-form .count-down {
  border: 1px dashed #59c700;
  background: #59c70012;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #59c700;
  /* display: inline-block; */
}

.emi-form .form-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.emi-form .form-flex .form-check {
  padding-left: 0;
  width: 47%;
}

.emi-form input[type="radio"] {
  opacity: 0;
  position: absolute;
  height: auto;
  width: auto;
  left: 0;
  z-index: 1;
}
.emi-form input.form-check-input {
  border: 1px solid #1c86ee36;
  padding: 0;
}

.emi-form .form-check-label {
  position: relative;
  padding: 15px 10px;
  display: block;
  font-size: 14px;
  font-weight: 400;
  background-color: #ffffff;
  border: 1px solid #1c86ee36;
  border-radius: 6px;
  text-align: center;
  color: #121212;
  min-width: fit-content;
  cursor: pointer;
}

.emi-form .form-check.checked input[type="radio"]:checked + label.form-check-label,
.emi-form .form-check.active input[type="radio"]:checked + label.form-check-label,
.emi-form .form-check.checked + label.form-check-label,
.emi-form .form-check.active + label.form-check-label {
  background: #1c86ee1f;
  border: 1px solid #1c86ee;
  color: #221f1f;
  font-weight: 500;
}


/* When parent div has .active, style the LABEL */
.emi-form .form-check.checked .form-check-label,
.emi-form .form-check.active .form-check-label {
  background: #1c86ee1f ;
  border: 1px solid #1c86ee;
  color: #221f1f;
  font-weight: 500;
}

.emi-form .form-check .check-radio {
  position: absolute;
  top: -8px;
  right: 0;
  color: #59c700;
  font-size: 15px;
  display: none;
}

.emi-form .form-check.checked .check-radio,
.emi-form .form-check.active .check-radio {
  display: block;
}


@media (max-width: 499px) {
  .font-xs-12 {
    font-size: 12px;
  }
  .form h4 {
    font-size: 16px;
  }
  .emi-form .form-check-label {
    font-size: 12px;
  }
}

.emi-form .form-check-label p {
  color: #121212;
}

.emi-form input.form-check-input:checked[type="radio"] {
  background-image: none !important;
}

/* .form-lj input[type="date"]::-webkit-inner-spin-button,
.form-lj input[type="date"]::-webkit-calendar-picker-indicator {
  display: block;
  -webkit-appearance: none;
  opacity: 0;
  visibility: hidden;
} */

/* .form-control.checked
  ~ .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}
.emi-form input[type="radio"]:checked + label.form-check-label,
.emi-form input[type="radio"].checked + label.form-check-label {
  background: #1c86ee1f;
  border: 1px solid #1c86ee;
  color: #221f1f;
  font-weight: 500;
} */
/* .emi-form .form-check.gender-type ~ .form-check-icon {
  display: none;
}
.emi-form .form-check.gender-type.checked + label.form-check-label {
  background: #1c86ee1f;
  border: 1px solid #1c86ee;
  color: #221f1f;
  font-weight: 500;
}

.emi-form .form-check.gender-type.checked ~ .form-check-icon {
  top: -100%;
  right: 0;
  display: block;
  background: transparent;
} */

/* .emi-form input[type="checkbox"].checked:checked {
  background-color: #58c727;
  border-color: #58c727;
}

.emi-form input[type="radio"].checked ~ .form-check-icon {
  top: -100%;
  right: 0;
  display: block;
  background: transparent;
}
.emi-form .profession input[type="radio"].checked ~ .form-check-icon {
  top: -70%;
} */

/* .emi-form .form-field.selected .form-label {
  color: #12121266;
}

.emi-form .form-field.selected input {
  color: #121212;
} */

.emi-form .form-control:disabled,
.emi-form .form-control[readonly] {
  background-color: #ffffff;
}

.dob-picker-wrapper {
  position: absolute;
  /* font-family: Arial, Helvetica, sans-serif; */
  top: 100%;
  left: 0;
  width: 100%;
  margin: 10px auto 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0px 25px 50px -12px #00000040;
  z-index: 1050;
}

.picker-header {
  border-bottom: 0.8px solid #f3f4f6;
  text-align: center;
  font-weight: 600;
}

.picker-footer {
  border-top: none;
  padding: 15px;
}

.picker-header,
.picker-footer {
  display: block;
}

.picker-footer .btn-confirm {
  background: #101828;
  color: #ffffff;
  border-radius: 10px;
  width: 100%;
}

.picker-container {
  padding: 15px;
}

.dob-picker-wrapper .picker {
  background-color: #ffffff;
}

.dob-picker-wrapper .picker-container .picker-dialog {
  border: none;
}

.dob-picker-wrapper .picker-container .picker-dialog .picker-header,
.dob-picker-wrapper .picker-container .picker-dialog .picker-footer {
  display: none;
}

.dob-picker-wrapper .picker-container .picker-cell:before,
.dob-picker-wrapper .picker-container .picker-cell:after {
  background-image: none;
}

.dob-picker-wrapper .picker-container .picker-item {
  color: #99a1af;
  padding: 0.45rem 0.5rem;
  font-weight: 400;
}

.dob-picker-wrapper .picker-container .picker-picked {
  color: #1c86ee;
  background: #eff6ff4d;
  border-top: 1.6px solid #1c86ee33;
  border-bottom: 1.6px solid #1c86ee33;
  font-size: 16px;
  font-weight: 600;
}

.dob-input {
  cursor: pointer;
  background-color: #fff;
}

/* Optional: prevent mobile zoom on focus */
input {
  font-size: 16px;
}
.datepicker {
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-family: inherit;
}

.datepicker table tr td,
.datepicker table tr th {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover {
  background-color: #0d6efd;
  color: #fff;
}

.datepicker table tr td.today {
  background-color: #e7f1ff;
  color: #0d6efd;
}

.datepicker .datepicker-switch {
  font-weight: 600;
}

.datepicker .clear,
.datepicker .today {
  font-weight: 500;
}

.loanAmt-control {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  width: 100%;
}

.loan-amt .currency,
.loan-amt input {
  color: #121212;
  font-size: 22px;
  margin-bottom: 0;
}

.loan-amt input {
  font-size: 22px;
  font-weight: 600;
  border: none;
  border-bottom: 1px dashed #ccc;
  text-align: start;
  outline: none;
}
.loan-amt input,
.loan-amt input:focus {
  border: 0;
}

.loan-amt {
  width: calc(100% - 55px - 55px);
  border-bottom: 1.5px dashed #00000066;
  overflow: hidden;
  padding-bottom: 6px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}
.loan-amt .currency {
  width: 20%;
  text-align: end;
}
.loan-amt input {
  width: 80%;
}

.btn-amt {
  border: 1px solid #0000004d;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: rgba(0, 0, 0, 0.749);
  background: transparent;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.form-progress .progress {
  background: #e5e7eb;
  height: 8px;
  border-radius: 80px;
}

.form-progress .progress-status {
  color: #59c700;
  font-size: 12px;
}

.form-progress .progress .progress-bar {
  background: linear-gradient(180deg, #1c86ee 0%, #59c700 100%);
}

@media (max-width: 575px) {
  .btn-amt {
    width: 28px;
    height: 28px;
    line-height: 25px;
  }
  .loanAmt-control {
    gap: 10px;
  }
  .loan-amt {
    width: auto;
  }
}

/*--------------------------------------------------------------
# Summary Page
--------------------------------------------------------------*/

.seperater {
  border-top: 0.8px solid #f3f4f6;
}
.equifax-logo {
  position: absolute;
  top: 20px;
  right: 20px;
}
.card.summary-card {
  box-shadow: 0px 4px 12px 0px #00000014;
  background: #ffffff;
  padding: 15px;
  border-radius: 14px;
  border: 1px solid transparent;
}

.card.summary-card .card-body {
  padding: 7px 10px;
}

.card.summary-card.expanded {
  border: 1px solid #A7F3D0;
}

.card.summary-card.expanded .card-body {
  background: rgba(236, 253, 245, 0.6);
  border-radius: 6px;
  
}

.card.summary-card.highlight {
  border: 0.8px solid #a7f3d0;
  background: #ecfdf5;
}

.discount-emi {
  color: #008236;
  font-weight: 600;
}

.loan__amount {
  color: #ee1c1c;
  font-size: 30px;
  font-weight: 600;
}
.coin-scale {
  max-width: 100px;
}

.coin-mob img {
  position: absolute;
  top: -16%;
  width: auto;
  left: 50%;
  transform: translate(-50%);
  max-width: 70px;
}
.coin-mob::before {
  content: "";
  display: block;
  background: #ffffff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: -22%;
  left: 50%;
  transform: translate(-50%);
}

.loan___summary .btn-apply {
  border-radius: 10px;
}

.quid-info p {
  font-size: 12px;
}

.card-list:first-child {
  margin-bottom: 0;
  border-top: none;
}

.card-list.extra-loans {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1.5px solid rgba(102, 102, 102, 0.4);
}

.card-bottom {
  display: flex;
  align-items: center;
}

.card-bottom.no-data {
  display: block;
  text-align: end;
  margin-top: 10px;
}

.card-bottom:not(.no-data) {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-bottom-main {
  align-items: flex-end;
}

.card-bottom-main .view-more-btn {
  margin-left: auto;
}
.view-more-btn {
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-size: 13px;
}

.view-more-btn.btn-fade {
  transform: translateY(4px);
}

.view-more-btn.view-less {
  display: block;
  text-align: end;
  margin-top: 10px;
  text-decoration: underline;
}


.extra-loans {
  width: 100%;
}
/* .extra-loans {
  overflow: hidden;
} */

@media (max-width: 575px) {
  .header .header-next {
    padding: 10px 15px;
  }
  /* .card.summary-card {
    padding-top: 70px;
  } */
  .card.summary-card.highlight,
  .card.summary-card.right {
    padding-top: 20px;
  }
  .quid-info p {
    font-size: 10px;
  }
  .loan___summary .fixed-bottom {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.405);
  }
  .hero.hero-next.loan___summary {
    padding-bottom: 130px;
  }
}

/*--------------------------------------------------------------
# Offers
--------------------------------------------------------------*/
.benefits-wrapper {
  padding: 50px 0 0 0;
}
.benefits-card {
  padding: 30px 20px;
  margin-bottom: 30px;
  border: 1px solid #ebecf4;
  background: #ffffff0d;
  border-radius: 28px;
  cursor: pointer;
  transition: border-color 0.5s ease, all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.benefits-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, #ebecf4 0%, #ebecf4 100%);
  -webkit-mask: linear-gradient(#ebecf4 0 0) content-box,
    linear-gradient(#ebecf4 0 0);
  mask: linear-gradient(#ebecf4 0 0) content-box, linear-gradient(#ebecf4 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.5s ease, all 0.5s ease;
  opacity: 0;
}

.benefits-card:hover::before {
  opacity: 1;
  background: linear-gradient(90deg, #1c86ee 0%, #02f5ff 100%);
}

.benefits-card h4 {
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 15px;
}

.benefits-card p {
  color: #4a5565;
  margin-bottom: 0;
}

.benefits-card .count {
  border: 1px solid #ebecf4;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  color: #1c86ee;
  font-family: var(--count-font);
  font-size: 22px;
  font-weight: 700;
}

.benefits-card:hover .count {
  background: linear-gradient(90deg, #1c86ee 0%, #02f5ff 100%);
  color: #ffffff;
}
.benefits-card div > div {
  width: calc(100% - 50px - 16px);
}

.image-preview {
  position: relative;
  height: auto;
}

.image-preview img {
  border-radius: 28px;
}

.image-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 28px;
}

.image-preview img.active {
  opacity: 1;
}

/* 🔥 MAGIC */
.benefits-wrapper:has(.card-1:hover) .img-1 {
  opacity: 1;
}
.benefits-wrapper:has(.card-2:hover) .img-2 {
  opacity: 1;
}
.benefits-wrapper:has(.card-3:hover) .img-3 {
  opacity: 1;
}

.benefits-wrapper:has(.benefits-card:hover) img {
  opacity: 0;
}

/*--------------------------------------------------------------
# Why choose us
--------------------------------------------------------------*/

.why-choose-us .card-row {
  display: flex;
  padding-top: 40px;
}

.why-choose-col {
  transition: flex 0.4s ease;
  flex: 1;
}

.why-choose-card {
  height: 100%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.why-choose-card img {
  width: 100%;
  height: 365px;
  object-fit: cover;
  border-radius: 40px;
}

.why-choose-col .card-content {
  margin-top: 20px;
  transition: opacity 0.3s ease;
}

.why-choose-col .card-content a {
  color: var(--default-color);
  text-transform: capitalize;
}

.why-choose-col .choose-links li {
  list-style: disc;
  color: #4a5565;
  margin: 3px;
}
.why-choose-col:hover {
  flex: 2.2;
}

.why-choose-col:hover .card-content {
  opacity: 1;
}

.card-row:hover .hover-col:not(:hover) {
  flex: 0.9;
}

.card-content h5 {
  font-weight: 600;
  line-height: 1.55;
  min-height: 56px;
}

.card-content ul {
  padding-left: 15px;
  font-size: 14px;
}
.why-choose-card ul {
  display: none;
}

.why-choose-card:hover .card-content a {
  display: none;
}

.why-choose-card:hover ul {
  display: block;
}

.why-choose-card:hover .card-content h5 {
  min-height: auto;
}
/* .why-choose-card img:hover .card-content a {
  display: none;
}
.why-choose-card img:hover .card-content h5 {
  min-height: auto;
}

.why-choose-card img:hover ul {
  display: block;
} */


/*--------------------------------------------------------------
# How to apply
--------------------------------------------------------------*/
.how-to-apply {
  background: url("../images/how-to-apply/bg-blue-2x.png") no-repeat;
  background-size: inherit;
  background-position: center center;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 50px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.card {
  border-radius: 28px;
  padding: 30px 15px;
  box-shadow: 0px 4px 16.3px 0px #00000040;
}

.card.apply-card {
  width: 100%;
  padding: 50px 30px;
}

.card.apply-card p {
  color: #4a5565;
  line-height: 1.6;
  font-size: 16px;
}

.card.apply-card .icon {
  max-width: 75px;
  height: 75px;
  background: linear-gradient(180deg, #1c86ee 0%, #02f5ff 100%);
  border-radius: 16px;
  /* box-shadow: 0px 4px 6px -4px #0000001a; */
  box-shadow: 0px 10px 15px -3px #0000001a;
  text-align: center;
  line-height: 70px;
  width: 30%;
  position: relative;
}

.card.apply-card .icon .count {
  position: absolute;
  color: #1992f021;
  font-family: var(--count-font);
  font-size: 50px;
  font-weight: 700;
  bottom: -45px;
  left: 5px;
}

.card.apply-card .card-content {
  width: 70%;
  margin-left: 30px;
}

.card.apply-card .app-image {
  position: absolute;
  max-width: 70%;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.left .card.apply-card {
  height: 450px;
  z-index: 2;
}

.left .card.apply-card h4 {
  padding-top: 70px;
}

.left .card.apply-card p {
  padding-right: 70px;
}

.right .card.apply-card {
  padding: 50px 30px 70px 30px;
}

/*--------------------------------------------------------------
# EMI CALCULATOR
--------------------------------------------------------------*/
.emi-calculator {
  padding: 100px 0;
}
.emi-calculator .field {
  margin-bottom: 25px;
  font-size: 16px;
}
.emi-calculator .field label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.emi-calculator .input-row {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #EBECF4;
  padding: 8px 10px;
  border-radius: 8px;
  width: 180px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

.emi-calculator .input-row input {
  border: none;
  outline: none;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  text-align: end;
}

.emi-calculator .field:nth-child(2) .input-row,
.emi-calculator .field:nth-child(3) .input-row {
  width: 120px;
}

.emi-calculator .field:nth-child(2) .input-row input,
.emi-calculator .field:nth-child(3) .input-row input{
  text-align: start;
}


.emi-calculator input[type="range"] {
  width: 100%;
}
.emi-calculator .emi-result {
  background: #f1fbf4;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.emi-calculator .emi-label {
  font-size: 20px;
}
.emi-calculator .emi-amount {
  font-size: 26px;
  font-weight: 600;
  color: #59C700;
}

.emi-calculator .btn-apply {
  box-shadow: 0px 1px 25.8px -8px #0F163A26;
  border: 0.5px solid #899CFD;
  font-weight: 400;
  padding: 10px 20px;
}

.emi-calculator .legend {
  margin-top: 50px;
  display: flex;
  justify-content: space-around;
}
.emi-calculator .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}
.emi-calculator .legend p {
  font-size: 20px;
  font-weight: 500;
  margin-top: 12px;
}
.emi-calculator .principal {
  background: #f4b400;
}
.emi-calculator .interest {
  background: #7b1fa2;
}
.emi-calculator .emi-chart-wrap {
  background: linear-gradient(180deg, rgba(28, 134, 238, 0.012) 0%, rgba(2, 245, 255, 0.036) 100%);
  border: 1px solid #EBECF4;
  padding: 30px;
  border-radius: 30px;
}
.emi-calculator canvas {
  max-width: 280px;
  max-height: 280px;
  margin: 0 auto;
}
/* ========== CUSTOM RANGE SLIDER ========== */

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: #E2E2E2;
  outline: none;
}

.range-minmax {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #aaa;
  margin-top: 6px;
}

/* Track */
input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
  border-radius: 0;
}

input[type=range]::-moz-range-track {
  height: 4px;
  background: transparent;
  border-radius: 0;
}

/* Thumb */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: #1C86EE;
  border-radius: 50%;
  border: 3px solid #ffffff;
  margin-top: -7px; /* center thumb */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #1C86EE;
  border-radius: 50%;
  border: 3px solid #ffffff;
  margin-top: -7px; /* center thumb */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Focus */
input[type=range]:focus {
  outline: none;
}

/* ========== FILLED TRACK (PROGRESS EFFECT) ========== */
/* .range-wrap {
  position: relative;
}

.range-fill {
  position: absolute;
  height: 4px;
  background: #00c2ff;
  border-radius: 4px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0%;
  pointer-events: none;
} */



/*--------------------------------------------------------------
# Download App
--------------------------------------------------------------*/
.download-app {
  position: relative;
  border-radius: 50px;
  margin-left: 20px;
  margin-right: 20px;
  overflow: hidden;
  z-index: 2;
  padding: 100px 0 100px 0;
}

.download-app::after {
  content: "";
  background: radial-gradient(215.04% 384.39% at 74.89% 44.4%,
   #1993F0 13.64%, #57C506 51.41%, #093E8A 99.74%) no-repeat;
  background-position: center center;
  opacity: 0.27;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: -1;
}

.btn-gradient {
  background: linear-gradient(90deg, #1C86EE 0%, #59C700 100%);
  border-radius: 50px;
  padding: 12px 24px;
  text-transform: uppercase;
  color: var(--contrast-color);
}

.btn-gradient:hover, 
.btn-gradient:focus, 
.btn-gradient.active {
  background: linear-gradient(90deg, #59C700 0%, #1C86EE 100%);
  color: var(--contrast-color);
  box-shadow: none;
  outline: 0;
}

.download-app-content h2, 
.download-app-content p {
  color: #000000;
} 

.download-app-content h2 {
  font-weight: 600;  
  line-height: 1.4;
  margin: 20px 0 25px 0;
}

.download-app-content p {
  font-size: 18px;
  margin-bottom: 40px;
}

.download-app-content .gplay-img {
  max-width: 204px;
}

.arrow-gif {
  transform: rotate(180deg);
  max-width: 60px;
  margin: 20px 0 0 40px;
}

.app-scanner p {
 padding-right: 35px;
}

/* MOBILE IMAGES */
.download-app-images {
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  width: 50%;
  display: flex;
  align-items: center;   /* center reference position */
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.mobile-img {
  max-width: 40%;
  height: auto;
  position: relative;
  will-change: transform;
}

/* Initial positions */
/* .mobile-left {
  position: relative;
  left: 40px;
  top: 0;
  animation: floatUpDown 4s ease-in-out infinite;
}

.mobile-right {
  position: relative;
  right: 40px;
  bottom: 0;
  margin-left: 50px;
  animation: floatUpDown 4s ease-in-out infinite;
  animation-delay: 0.8s;
  opacity: 1;
} */

/* Floating animation */
/* @keyframes floatUpDown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-20px); }
  100% { transform: translateY(0); }
} */

/* Activated animation */
/* .animate .mobile-left {
  animation: floatUpDown 4s ease-in-out infinite;
}

.animate .mobile-right {
  animation: floatUpDown 4s ease-in-out infinite;
  animation-delay: 0.8s;
  opacity: 1;
} */

@keyframes floatUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-120px); /* touches top edge */
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes floatDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(170px); /* touches bottom edge */
  }
  100% {
    transform: translateY(0);
  }
}

.mobile-left,
.mobile-right {
  animation-play-state: paused;
}

.mobile-right {
  margin-left: 50px;
}

.download-app.in-view .mobile-left {
  animation: floatUp 7s ease-in-out infinite;
  animation-play-state: running;
}

.download-app.in-view .mobile-right {
  animation: floatDown 7s ease-in-out infinite;
  animation-play-state: running;
}

.app-bg-right,
.app-bg-left {
  position: absolute;
  z-index: 0;
}

.app-bg-right {
  top: 0;
  right: 0;
}

.app-bg-left {
  bottom: 0;
  left: 0;
}

/*--------------------------------------------------------------
# TEXT SLIDER SECTION
--------------------------------------------------------------*/
.fill-text {
  fill: url(#fillGradient);     /* Gradient FILL */
  animation: moveGradientRight 15s ease-in-out infinite;
  transform-origin: center;
}

.stroke-text {
  fill: none;                          /* No fill */
  stroke: url(#strokeGradient);        /* Gradient STROKE */
  stroke-width: 3px;
  animation: moveGradientLeft 15s ease-in-out infinite;
  transform-origin: center;
}

.fill-text,
.stroke-text {
  font-family: "Poppins", sans-serif;
  font-size: 120px;
  font-weight: 600;
  letter-spacing: 1px;
}

.slanted {
  transform: skewY(-4deg);
}

.slanted svg {
  height: 150px;
}

@keyframes moveGradientRight {
  0% {
    transform: translate(-800px, 0);
  }
  20% {
    transform: translate(-300px, 0);
  }
  40% {
    transform: translate(0px, 0);
  }
  50% {
    transform: translate(0px, 0);
  }
  70% {
    transform: translate(300px, 0);
  }
  90% {
    transform: translate(800px, 0);
  }
  100% {
    transform: translate(0px, 0);
  }
}

@keyframes moveGradientLeft {
  0% {
    transform: translate(800px, 0);
  }
  20% {
    transform: translate(300px, 0);
  }
  40% {
    transform: translate(0px, 0);
  }
  50% {
    transform: translate(0px, 0);
  }
  70% {
    transform: translate(-300px, 0);
  }
  90% {
    transform: translate(-800px, 0);
  }
  100% {
    transform: translate(0px, 0);
  }
}



/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta .container {
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.06);
}

.cta h2 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.48;
}

.btn-getstarted {
  background: linear-gradient(90deg, #1c86ee 0%, #02f5ff 100%),
    linear-gradient(
      180deg,
      rgba(18, 40, 55, 0) -175%,
      rgba(2, 245, 255, 0.2) 140%
    );
  color: var(--surface-color);
  border-radius: 50px;
  padding: 12px 30px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  box-shadow: 0px 0px 0px 3px #1cffff2b;
  box-shadow: 0px 1px 2px 0px #1dffff8c;
}
.btn-getstarted:hover,
.btn-getstarted.active,
.btn-getstarted:focus {
  box-shadow: none;
  outline: 0;
  background: linear-gradient(90deg, #02f5ff 0%, #1c86ee 100%),
    linear-gradient(
      180deg,
      rgba(18, 40, 55, 0) -175%,
      rgba(2, 245, 255, 0.2) 140%
    );
  color: var(--surface-color);
}

.apply-btn.disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}


/* Loader for ajax CSS */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    margin-left: 8px;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


@media screen and (max-width: 1199px) {
  .hero h1 {
    font-size: 30px;
  }
  .form h4 {
    font-size: 16px;
  }
  .left .card.apply-card {
    height: 485px;
  }
  .slanted svg {
    height: 120px;
  }

}

@media screen and (max-width: 991px) {
  .footer .gplay-img {
    max-width: 180px;
  }
  .cta h2 {
    font-size: 30px;
  }
  .download-app {
    padding: 70px 0 70px 0;
  }
  .arrow-gif {
    margin: 5px 0 0 5px;
  }
  .download-app-content p {
    font-size: 16px;
  }
  .download-app-images {
    right: 0;
  }
  .mobile-right {
    margin-left: 15px;
  }
  .emi-calculator .field label {
    font-size: 15px;
  }
  .emi-calculator .emi-result {
    display: block;
    text-align: center;
  }
  .emi-calculator .emi-result div {
    margin-bottom: 20px;
  }
  .emi-calculator .emi-result a {
    display: block;
    text-align: center;
  }
  .card.apply-card .card-content {
    width: 90%;
  }
  .right .card.apply-card {
    padding: 35px 30px 50px 30px;
  }
  .card.apply-card .icon .count {
    font-size: 40px;
    left: 10px;
  }
  .left .card.apply-card h4 {
    padding-top: 50px;
  }
  .left .card.apply-card p {
    padding-right: 50%;
  }
  .emi-calculator .legend {
    margin-top: 40px;
    display: block;
  }
  .emi-calculator .legend div:first-child {
    margin-bottom: 15px;
  }
  .benefits-card {
    padding: 20px 15px;
  }
  .benefits-card .count {
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .why-choose-col:hover {
    flex: 2.6;
  }

  .why-choose-col:hover .card-content {
    opacity: 1;
  }

  .card-row:hover .hover-col:not(:hover) {
    flex: 1.2;
  }
  .left .card.apply-card {
    margin-bottom: 20px;
  }
  .emi-calculator .emi-chart-wrap {
    margin-top: 30px;
  }
  .emi-calculator {
    padding: 50px 0;
  }
  .download-app {
    padding: 69px 0 120px 0;
  }
  .download-app-images {
    right: 0;
    bottom: 0;
    /* left: 30px; */
    top: 0;
  }
  .section-head h2 {
    font-size: 28px;
  }
  .fill-text, .stroke-text {
    font-size: 90px;
  }
  .slanted svg {
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .card-row {
    flex-direction: column;
  }
  .hover-col,
  .hover-col:hover {
    flex: 1 !important;
  }
  .card-content {
    opacity: 1;
    position: relative;
  }
  .why-choose-col:hover {
    flex: 2.5;
  }
  /* section, .section {
    overflow: auto;
  } */
  .benefits-wrapper {
    padding: 0;
  }
  .image-preview img {
    height: 400px;
  }
  .card-content h5 {
    min-height: auto;
  }
  .benefits {
    padding-bottom: 420px;
  }
  @keyframes floatUp {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-60px); /* touches top edge */
    }
    100% {
      transform: translateY(0);
    }
  }
  .hero h1,
  .cta h2,
  .section-head h2 {
    font-size: 25px;
  }
  .download-app {
    padding: 69px 0 250px 0;
  }
  .download-app-images {
    right: auto;
    bottom: 0;
    left: 30px;
    top: 50%;
  }
  .slanted svg {
    height: 60px;
  }
}

@media screen and (max-width: 575px) {
  .hero {
    padding: 100px 0 40px;
  }
  .header .header-container {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    padding: 10px 5px 10px 5px;
  }
  .header {
    padding: 0;
  }
  .hero h1, .cta h2 {
    font-size: 22px;
  }
  .section-head h2 {
    font-size: 22px;
  }
  .section-head p,
  .benefits-card h4,
  .card-content h4 {
    font-size: 16px;
  }
  .footer .footer-links ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .how-to-apply {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .right .card.apply-card {
    padding: 30px 20px 30px 20px;
  }
  .fill-text, .stroke-text {
    font-size: 50px;
  }
}

@media (max-width: 400px) {

  .offer-desc {
    display: block;
    margin: 0 auto 15px;
    text-align: center;
    width: 90%;
  }
  .offer-desc .highlight {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .hero h1 {
    font-size: 22px;
  }
  @keyframes floatDown {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(120px); /* touches top edge */
    }
    100% {
      transform: translateY(0);
    }
  }
  .download-app-images {
    left: 0;
  }
  .download-app {
    padding: 69px 0 170px 0;
  }
  .bottom,
  .download-app,
  .how-to-apply {
    margin: 0 15px;
  }
  .card.apply-card,
  .right .card.apply-card {
    padding: 20px 15px 20px 15px;
  }
  .card.apply-card .card-content {
    margin-left: 10px;
  }
  .left .card.apply-card p {
    padding-right: 30%;
  }
  .card.apply-card .card-content {
    width: 70%;
  }
  .left .card.apply-card h4 {
    padding-top: 30px;
  }
  .left .card.apply-card .card-content {
    width: 90%;
  }
  .footer .footer-links ul a {
    font-size: 12px;
  }
}


/* Loan summary page CSS */
.summary-page {
  background: url("../images/bg-main.png") no-repeat;
  background-size: cover;
  background-position: top left;
}
.card.summary-card {
  box-shadow: 0px 1px 2px 0px #0000000d;
  background: #ffffff;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
  justify-content: center;
}
.half-circle {
  position: absolute;
  top: 0;
  right: 0;
}
.emi-info > div {
  width: 50%;
}
.card.summary-card .emi-desc {
  display: flex;
  align-items: center;
}
.card.summary-card .emi-desc h3 {
  font-size: 16px;
  font-weight: 600;
  margin-left: 8px;
  margin-bottom: 0;
}
.card.summary-card.highlight-red {
  border: 1px solid #ff0004;
  background: #f8fafc;
  padding: 30px 20px;
}
.card.summary-card.highlight-red .emi-desc .icon {
  background: #ff000412;
  width: 45px;
  height: 45px;
  line-height: 42px;
  border-radius: 50%;
  text-align: center;
}
.card.summary-card.highlight-blue .emi-desc .icon {
  background: #1c86ee1a;
  width: 55px;
  height: 55px;
  line-height: 52px;
  border-radius: 50%;
  text-align: center;
}

.card.summary-card.highlight-red .emi-amount,
.card.summary-card.highlight-blue .emi-amount {
  font-size: 24px;
  font-weight: 700;
}
.card.summary-card.highlight-red .emi-amount {
  color: #ff0004;
}
.card.summary-card.highlight-red .emi-amount .time {
  font-size: 16px;
  font-weight: 400;
}
.card.summary-card.highlight-blue {
  padding: 35px 20px 30px 20px;
  border: 2px solid #1c86ee;
  box-shadow: 0px 0px 15.4px 0px #1c86ee4d;
}
.card.summary-card.highlight-blue .emi-amount .time {
  font-size: 12px;
}
.card.summary-card.highlight-blue .emi-offer-badge {
  background: #1c86ee;
  color: #ffffff;
  text-transform: uppercase;
  border-bottom-left-radius: 16px;
  padding: 5px 15px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  font-weight: 700;
}
.card.summary-card.highlight-blue .emi-amount {
  color: #22c55e;
}
.loan___summary .btn-apply {
  background:
    linear-gradient(90deg, #1c86ee 0%, #02f5ff 100%),
    linear-gradient(
      180deg,
      rgba(18, 40, 55, 0) -175%,
      rgba(2, 245, 255, 0.2) 140%
    );

  box-shadow:
    0px -2px 4px 0px #0b79b1 inset,
    0px 4px 12.9px 0px #1c86ee40;
}
.loan___summary .btn-apply i {
  padding-left: 5px;
  transition: padding-left 0.4s ease;
}
.loan___summary .btn-apply:hover i {
  padding-left: 8px;
}

.total__emi-desc {
  background: #e9faef;
  border-radius: 16px;
  padding: 10px 15px;
  text-align: center;
  color: #22c55e;
  display: flex;
  justify-content: center;
  align-items: center;
}
.total__emi-desc span {
  font-weight: 700;
  font-size: 20px;
}
.total__emi-desc sub {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  top: 0em;
}
.save__emi {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-top: 3px;
}
.prime-title {
  font-size: 18px;
}
@media screen and (max-width: 1199px) {
  .emi-info > div:first-child {
    width: 45%;
  }
  .emi-info > div:last-child {
    width: 55%;
  }
  .card.summary-card.highlight-red {
    padding: 30px 10px;
  }
  .card.summary-card.highlight-blue {
    padding: 35px 10px 30px 10px;
  }
}
@media screen and (max-width: 767px) {
  .emi-info > div:first-child {
    width: 100%;
  }
  .emi-info > div:last-child {
    width: 100%;
  }
  .card.summary-card.highlight-red {
    padding: 30px 20px;
  }
  .card.summary-card.highlight-blue {
    padding: 35px 20px 30px 20px;
  }
}
@media screen and (max-width: 575px) {
  .summary-page {
    background: url("../images/bg-pages.png") no-repeat;
    background-size: cover;
    background-position: top left;
  }
  .card.summary-card .emi-desc h3 {
    font-size: 15px;
  }
  .card.summary-card.highlight-red {
    padding: 20px 15px;
  }
  .card.summary-card.highlight-blue {
    padding: 35px 15px 30px 15px;
  }
  .total__emi-desc span {
    font-size: 18px;
  }
  .total__emi-desc sub {
    font-size: 12px;
  }
  .save__emi {
    font-size: 11px;
  }
  .prime-title {
    font-size: 16px;
  }
  .card.summary-card.highlight-red .emi-amount {
    font-size: 18px;
  }
  .card.summary-card.highlight-blue .emi-amount {
    font-size: 24px;
  }
  .card.summary-card.highlight-red .emi-amount .time {
    font-size: 12px;
  }
  .card.summary-card.highlight-red .emi-desc .icon {
    width: 40px;
    height: 40px;
    line-height: 37px;
  }
}



/* Loan Journey */
/* .lj-bg {
  background: url(../images/loan-journey/green-bg.png) no-repeat;
  background-size: contain;
  background-position: top;
}
.lj-init {
  background: url(../images/loan-journey/blue-gradient-bg.png) no-repeat;
  background-size: contain;
  background-position: top;
} */
.lj-status-bar {
  padding: 20px 0 10px;
}
.back {
  border: 1px solid #f7f7f714;
  backdrop-filter: blur(15px);
  border-radius: 6px;
  padding: 5px 10px;
}
.border-play-icon {
  border: 1px solid #ffffff33;
  backdrop-filter: blur(15px);
  border-radius: 6px;
  padding: 8px 10px;
}
.form-lj,
.card-lj {
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0px 8px 16px 0px #1c86ee29;
  max-width: 100%;
  margin: 0 auto;
  min-height: 320px;
}

.card-lj {
  min-height: auto;
  margin-bottom: 30px;
}

.form-lj .form-header {
  border-radius: 22px 22px 0 0;
  padding: 15px 20px;
  color: #ffffff;
  border-bottom: 1px solid #0000000f;
}
.form-lj .form-body {
  border-radius: 0 0 22px 22px;
  padding: 20px 15px;
}

.form-lj .form-label {
  font-weight: 500;
  font-size: 13px;
}

.form-lj input {
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #121212;
}

.form-lj input:focus {
  border: 1px solid #1c86ee;
  box-shadow: none;
  outline: 0;
}

.form-lj .country {
  position: absolute;
  top: 12px;
  left: 20px;
}

.form-lj .form-check-icon {
  position: absolute;
  top: 0;
  right: 14px;
  margin-top: 45px;
}

.form-lj .form-check-icon .fa-circle-check {
  display: none;
  color: #59c700;
}

.form-lj input[type="date"].checked::-webkit-calendar-picker-indicator {
  background-image: none;
}

/* .form-lj input {
  -webkit-appearance: none;
  appearance: none;
} */

.form-lj .form-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.form-lj .form-flex .form-check {
  padding-left: 0;
  width: 47%;
}

.form-lj input[type="radio"] {
  opacity: 0;
  position: absolute;
  height: auto;
  width: auto;
  left: 0;
  z-index: 1;
}
.form-lj input.form-check-input {
  border: 1px solid #e0e0e0;
  padding: 0;
}

.form-lj .form-check-label {
  position: relative;
  padding: 15px 10px;
  display: block;
  font-size: 12px;
  font-weight: 400;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  text-align: center;
  color: #121212;
  min-width: 130px;
  cursor: pointer;
}

.form-lj input.form-check-input:checked[type="radio"] {
  background-image: none !important;
}

.form-lj input[type="radio"]:checked + label.form-check-label {
  background: #1c86ee1f;
  border: 1px solid #1c86ee;
  color: #221f1f;
  font-weight: 500;
}

.form-control.hide-select
  ~ .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}

form.form-lj input[type="checkbox"].checked:checked {
  background-color: #58c727;
  border-color: #58c727;
}

.form-lj .form-field.selected .form-label {
  color: #12121266;
}

.form-lj .form-field.selected input {
  color: #121212;
}

.ps-80 {
  padding-left: 75px !important;
}

.form-lj input::placeholder {
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.2);
}

.form-lj .otpHide,
.form-lj .hide {
  display: none;
}

.form-lj .otp-fields {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  gap: 10px;
}

.form-lj input.otp__digit {
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  font-weight: 600;
  padding: 10px;
  color: #121212;
}
.form-lj .count-down {
  border: 1px dashed #2b6100;
  /* border-image-source: linear-gradient(180deg, #59c700 0%, #2b6100 100%); */
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #59c700;
  /* display: inline-block; */
}
.w-90 {
  width: 90%;
}

.status {
  width: 85%;
  font-weight: 600;
  text-align: center;
}

.loan-amt-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.loan-amt label.form-label,
.loan-amt input {
  color: #121212;
  font-size: 25px;
  width: auto;
  margin-bottom: 0;
}

.loan-amt input {
  padding: 0 10px;
  overflow: hidden;
  min-width: 140px;
}
.loan-amt input,
.loan-amt input:focus {
  border: 0;
}

.loan-amt {
  display: flex;
  align-items: center;
  width: calc(100% - 20px - 72px);
  border-bottom: 1.5px dashed #00000066;
  overflow: hidden;
}

.lj-step-text {
  background: #f4f4f4;
  border-radius: 10px;
  font-size: 10px;
  color: #121212;
  padding: 10px;
  display: flex;
  align-items: center;
  margin: 50px 0 15px;
}

.lj-logo {
  max-width: 65px;
}

.sect-lj {
  padding: 15px 0 100px;
}

.card-lo {
  border: 1.5px solid #1c86ee;
  padding: 20px 12px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.card-lo-num {
  position: absolute;
  width: 40px;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1c86ee33;
  border-radius: 12px 0 0 12px;
  color: #121212;
  font-size: 18px;
  font-weight: 700;
  z-index: 1;
}
.card-lo-ribbon {
  background: url("../images/loan-journey/ribbon-bg.png") no-repeat;
  /* background-size: contain; */
  background-size: 100% 100%;
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
  display: inline-block;
  padding: 5px 10px;
  position: absolute;
  top: -1px;
  left: -1px;
}
.card-lo p {
  font-size: 12px;
  color: #121212;
  font-weight: 500;
}
.card-lo .btn-box .btn {
  width: 100%;
}

.card-lo-logo {
  max-width: 100px;
}
.ptf {
  background: #0d0d0d08;
  border-radius: 6px;
  padding: 8px;
  margin-bottom: 15px;
}

.ptf h6 {
  font-size: 12px;
  font-weight: 600;
}

.ptf p {
  font-size: 9px;
  color: #121212cc;
  margin-bottom: 0;
}
.ptf .col-4:not(:last-child) {
  border-right: 0.5px solid #1c86ee33;
}

.btn-amt {
  width: 25px;
  height: 25px;
  border: 1px solid #0000004d;
  text-align: center;
  border-radius: 50%;
  background: transparent;
  color: #121212;
  padding: 0;
  line-height: 25px;
}
.btn-amt:hover,
.btn-amt:focus {
  border: 1px solid #58c727;
}

.btn-lj-blue {
  background: linear-gradient(182.63deg, #1c86ee 2.14%, #1875d0 97.76%);
  box-shadow: 0px 0px 28px 0px #1875d047;
  border-radius: 6px;
  padding: 14px 20px;
  color: #ffffff;
  font-size: 14px;
}

.btn-lj-blue:hover {
  background: linear-gradient(182.63deg, #1c86ee 2.14%, #1875d0 97.76%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  color: #ffffff;
}

.btn-google {
  border: 1px solid transparent;
}

.btn-google:hover {
  background: linear-gradient(
    180deg,
    rgba(28, 134, 238, 0.05) 0%,
    rgba(24, 117, 208, 0.05) 100%
  );
  border: 1px solid #1c86ee33;
}
.icon20 {
  max-width: 20px;
}

.selected-amt {
  background: #0154a6ad;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  color: #ffffff;
  font-size: 12px;
  border-radius: 8px;
}
.coin-img {
  max-width: 138px;
}
.confetti {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 100%;
  height: 300px;
}
.coinspin {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.footer-lj-tp {
  background: #ffffff;
  padding: 15px;
  box-shadow: 4px 0px 16.3px 0px #00000040;
}

.get-app p,
.get-app {
  font-size: 11px;
  color: #121212;
}

.gplay {
  height: 40px;
}

.footer-lj-btm {
  background: #000000;
  padding: 15px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.deadline {
  animation: spin 2s infinite ease;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/* 31-3-2025 content css for different loans */
.benefits-lj .card {
  border-radius: 16px;
  align-items: center;
  padding: 20px;
}

.card_icon {
  max-width: 70px;
}

.benefits-lj-img {
  max-width: 100%;
}

.top-banks-offers-lj .row {
  border-radius: 22px;
  text-align: center;
}

.top-banks-offers-lj .row .col-lg-3.col-6:not(:last-child) {
  border-right: 0;
}

.loan-eligibility-lj .card {
  border: 2px solid #1c86ee;
  background: #f5faff;
  box-shadow: none;
  border-radius: 15px;
  padding: 20px;
}

.loan-eligibility-lj .card p {
  color: #121212;
  min-height: auto;
  margin-bottom: 0;
}

.docs-require-lj ul li {
  list-style-type: disc;
}

.loan-steps-lj .card {
  padding: 15px;
  margin-right: 12px;
  border-radius: 8px;
  max-width: 125px;
  margin-bottom: 15px;
}

.loan-steps-lj .card h6 {
  font-size: 14px;
  font-weight: 600;
}

/* 01-04-2025 updation */
.accordion-button {
  background: #f4f4f4;
  padding: 15px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
}
.accordion-button:focus {
  background: #f4f4f4;
  color: #1c86ee;
}
/* ./end */
.download-now-lj {
  background: linear-gradient(88deg, #075395 0%, #17a0d8 100%);
  color: #ffffff;
  padding: 50px 0;
  margin-bottom: 50px;
}

.btn-green-gradient-lj {
  background: linear-gradient(175deg, #58c727 0%, #5f9b5a 100%);
  color: #ffffff;
  padding: 10px 30px;
}

.btn-green-gradient-lj:hover {
  background: #272424;
  color: #ffffff;
}

/* 01-04-2025 */
.loan-eligibility-lj .business-lj .card h5,
.loan-eligibility-lj .business-lj .card p {
  min-height: auto;
}
.hero-cc li {
  color: #939ba4;
  font-weight: 500;
  font-size: 12px;
}

.hero-cc .fa-check {
  background: #59c727;
  width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 50px;
  margin-right: 5px;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
}

.apply-loan-cc .row {
  background: linear-gradient(88deg, #075395 0%, #17a0d8 100%);
  border-radius: 22px;
  padding: 30px;
}

.apply-loan-cc h1 {
  font-size: 20px;
}

.benefit-lj-card {
  min-width: 166px;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 8px !important;
  color: #000000;
  font-weight: 500;
  font-size: 14px;
  border: 0;
  text-align: center;
  margin-bottom: 15px;
  cursor: pointer;
}
.lj-card-blue {
  border: 2px solid #1c86ee;
  background: #f5faff;
  box-shadow: none;
  border-radius: 15px;
  padding: 15px;
  flex-direction: column;
  display: flex;
  align-items: center;
}
.lj-card-blue .card-body {
  text-align: left;
  color: #000000;
  padding: 20px 15px 0;
  width: 100%;
}
.lj-card-blue .card-body p {
  color: #000000;
  font-weight: 500;
}

.nav-tabs.bestCC-tabs {
  border-bottom: 0;
  max-width: 100%;
  margin: 0 auto;
}
.nav-tabs.bestCC-tabs .nav-link {
  border: 0;
}



/* Welcome */
.note {
  font-weight: 500;
  font-size: 11px;
  color: #f60303;
  text-align: center;
  margin: 0 0 20px 0;
}

/* table */
.table tr th {
  border-radius: 5px 0 0 5px;
}
.table tr td {
  border-radius: 0 5px 5px 0;
}
.table tr th,
.table tr td {
  padding: 15px 15px;
}

.table tbody th {
  border-right: 0.5px solid #1a8fef;
}
.table > :not(caption) > * > * {
  border-bottom-width: 0;
  box-shadow: none;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background: #c8e8ff;
  border-radius: 5px;
}
.table-striped > tbody > tr:nth-of-type(even) {
  background: #f2faffcf;
  border-radius: 5px;
}
.table tr td {
  color: #1a8fef;
  font-weight: 600;
}

/* Select */
.form-lj select {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #121212;
}

.form-lj select:focus {
  border: 1px solid #1c86ee;
  box-shadow: none;
  outline: 0;
}

/* Select 2 CSS - 02-04-2025 */
.select2-container {
  width: 100% !important;
  display: block;
}
.select2-container--default .select2-selection--single {
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 10px;
  font-size: 14px;
  /* font-weight: 500; */
  color: #212529;
  height: 46.33px;
  line-height: 46.33px;
  width: 100%;
  display: block;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: auto;
  top: 50%;
  right: 20px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #212529 transparent transparent transparent;
  border-width: 7px 6px 0 6px;
  left: 0px;
}
.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: transparent transparent #212529 transparent;
  border-width: 0 6px 7px 6px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #212529;
  line-height: normal;
  padding-left: 0;
}

.select2-results__option {
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 6px;
  color: #212529;
  font-size: 13px;
  margin: 0 10px 0 4px;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background: linear-gradient(
    0deg,
    rgba(28, 134, 238, 0.12),
    rgba(28, 134, 238, 0.12)
  ) !important;
  border: 1px solid #1c86ee;
  color: #212529;
}

.select2-dropdown {
  width: 100%;
  box-shadow: 0px 4px 14px 0px #0000001a;
  background: #ffffff;
  border-radius: 6px;
  padding: 4px;
  margin-top: 8px;
  border: 0;
}

.read-text {
  display: none;
}
.currrency-sign {
  position: absolute;
  top: 12px;
  left: 12px;
}

/* 07-04-2025 */

.base-timer {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.base-timer__svg {
  transform: scaleX(1);
}
.base-timer__circle {
  fill: none;
  stroke: none;
}
.base-timer__path-elapsed {
  stroke-width: 6px;
  stroke: #59c70024;
}
.base-timer__path-remaining.green {
  color: #59c700;
}
.base-timer__path-remaining.transparent {
  color: transparent;
}
.base-timer__path-remaining.red {
  color: red;
}
.base-timer__path-remaining.warning {
  color: orange;
}
.base-timer__path-remaining {
  stroke-width: 6px;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: 1s linear all;
  fill-rule: nonzero;
  stroke: currentColor;
}

.base-timer__label {
  position: absolute;
  width: 150px;
  height: 150px;
  top: -5%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #121212;
  font-weight: 600;
  letter-spacing: 0.8px;
}
.base-timer__text-time {
  color: #121212;
  display: flex;
  justify-content: center;
  font-size: 9px;
  font-weight: 500;
  position: absolute;
  top: 58%;
  width: 150px;
  margin: 0 auto;
}

#secondChanceModal .modal {
  background: rgba(0, 0, 0, 0.5);
}
#secondChanceModal .modal-content {
  border-radius: 22px;
  border: 0;
}
#secondChanceModal .modal-body p {
  color: #121212;
  font-size: 15px;
}
.time-end-icon {
  color: #59c700;
  font-size: 3rem;
  text-align: center;
}


.slide-up {
  animation: slideUp 1.2s ease-in-out forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}
#popUpBlockedModal .logo img {
  max-width: 60px;
}
#popUpBlockedModal .modal-dialog .modal-content {
  background: #ecf6ff;
  border-radius: 0 0 12px 12px;
}
#popUpBlockedModal .modal-dialog p {
  color: #000000;
  font-size: 16px;
}
#popUpBlockedModal .modal-header .btn-close {
  background: none;
  width: 1.5em;
  color: rgb(0, 0, 0, 0.9);
  margin: -10px 0 0 auto;
  font-size: 16px;
}
#popUpBlockedModal .modal-header .btn-close:hover {
  color: rgb(0, 0, 0);
}
#popUpBlockedModal .modal-header .btn-close:focus {
  box-shadow: none;
}
.modal-custom {
  top: 0;
  margin: 0 0;
}
#popUpBlockedModal .btn-green-gradient-lj,
#popUpBlockedModal .btn-lj-blue {
  padding: 6px 15px;
  border-radius: 6px;
}
#popUpBlockedModal .btn-green-gradient-lj {
  padding: 6px 30px;
  min-width: 150px;
}
#popUpBlockedModal {
  background: rgba(0, 0, 0, 0.5);
}

@media (min-width: 576px) {
  #popUpBlockedModal .modal-dialog {
    margin: 0 auto;
  }
}

.check-radio {
  position: absolute;
  right: -5px;
  top: -5px;
  background-color: #58C727;
  color: #fff;
  width: 15px;
  height: 15px;
  display: none;
  line-height: 16px;
  border-radius: 50px;
  text-align: center;
  font-size: 8px;
  margin-top: 4px;
}

.g-check .check-radio {
  display: block;
}

.modal-open {
}
@media (max-width: 576px) {
  #secondChanceModal .modal-dialog {
    width: 270px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 420px) {
  .succes-coin {
    margin-top: 10%;
  }
  .get-app,
  .get-app p {
    font-size: 16px;
  }
}





@media (min-width: 768px) and (max-width: 992px) {
  .loan-eligibility-lj .business-lj .card h5 {
    min-height: 44px;
  }
  .apply-loan-cc h1 {
    font-size: 22px;
  }

  .form-lj .form-flex .form-check {
    padding-left: 0;
    width: 22%;
  }
}

@media screen and (min-width: 768px) {
  .lj-bg,
  .lj-init,
  .lj-init.loan-offers {
    background: none;
  }

  /* .lj-init.loan-offers .topbar,
  .lj-init .lj-status-bar {
    background: linear-gradient(172.75deg, #1c86ee 5.49%, #0056ab 112.68%);
  } */

  .lj-bg .topbar {
    background: #f2fbeb;
  }

  .lj-init .lj-status-bar {
    padding: 15px 0;
  }
  .card-lj .get-app {
    font-size: 22px;
  }
  .card-lo p,
  .ptf h6 {
    font-size: 15px;
  }

  .ptf p {
    font-size: 11px;
  }

  .confetti {
    top: -100%;
    width: 300px;
    height: 250px;
  }
  /* 31-03-2025 */
  .loan-eligibility-lj .card p {
    min-height: 72px;
  }
  .download-now-lj {
    padding: 90px 0;
  }
  /* 01-04-2025 */
  .accordion-button {
    padding: 20px 30px 20px 30px;
    font-size: 18px;
  }
  .lj-card-blue {
    flex-direction: row;
  }
  .lj-card-blue .card-img {
    width: 45%;
  }
  .lj-card-blue .card-body {
    width: 55%;
    padding: 0 0 0 15px;
  }
  .benefits-lj-carousel.owl-carousel .owl-nav button.owl-next,
  .benefits-lj-carousel.owl-carousel .owl-nav button.owl-prev,
  .bestCC-carousel.owl-carousel .owl-nav button.owl-next,
  .bestCC-carousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 40%;
    width: 30px;
    height: 30px;
    background: linear-gradient(182.63deg, #1c86ee 2.14%, #1875d0 97.76%);
    box-shadow: 0px 0px 28px 0px #1875d047;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    line-height: 26px;
  }
  .bestCC-carousel.owl-carousel .owl-nav button.owl-next,
  .benefits-lj-carousel.owl-carousel .owl-nav button.owl-next {
    right: -38px;
  }
  .bestCC-carousel.owl-carousel .owl-nav button.owl-prev,
  .benefits-lj-carousel.owl-carousel .owl-nav button.owl-prev {
    left: -38px;
  }
  /* Welcome */
  .note {
    font-size: 13px;
  }
}

@media screen and (min-width: 991px) {
  .selected-amt,
  .form-lj {
    max-width: 80%;
    margin: 0 0 0 auto;
  }
  .form-lj .form-body {
    padding: 20px;
  }
  .lj-desk {
    display: block;
  }
  .lj-logo {
    max-width: 100%;
  }
  .sect-lj {
    padding: 15px 0 15px;
  }
  .card-lj .get-app {
    font-size: 28px;
  }
  .card-lo .row > div {
    border-right: 0.5px solid #1c86ee33;
  }

  .ptf {
    padding: 0;
    background: transparent;
    border-radius: 0;
    margin-bottom: 0;
  }
  .row.ptf .col-4:last-child {
    border-right: 0;
  }
  .card-lo {
    padding: 30px 12px;
  }
  .card-lo .btn-lj-blue {
    padding: 14px 15px;
  }
  .lj-step-text {
    font-size: 11px;
  }
  /* 31-03-2025 */
  .benefits-lj-img img {
    max-width: 450px;
  }
  .top-banks-offers-lj .row .col-lg-3.col-6:not(:last-child) {
    border-right: 1px solid #b4bdc6;
  }
  .loan-eligibility-lj .card p {
    min-height: 48px;
  }
  /* 01-04-2025 */
  .apply-loan-cc .row {
    padding: 50px 30px;
  }
  .apply-loan-cc h1 {
    font-size: 28px;
  }
  .lj-card-blue h4 {
    min-height: 44px;
  }
  .benefits-lj-carousel.owl-carousel .owl-nav button.owl-next,
  .benefits-lj-carousel.owl-carousel .owl-nav button.owl-prev,
  .bestCC-carousel.owl-carousel .owl-nav button.owl-next,
  .bestCC-carousel.owl-carousel .owl-nav button.owl-prev {
    width: 35px;
    height: 35px;
    font-size: 30px;
    line-height: 32px;
  }
  .benefits-lj-carousel.owl-carousel .owl-nav button.owl-next,
  .bestCC-carousel.owl-carousel .owl-nav button.owl-next {
    right: -50px;
  }
  .benefits-lj-carousel.owl-carousel .owl-nav button.owl-prev,
  .bestCC-carousel.owl-carousel .owl-nav button.owl-prev {
    left: -50px;
  }
  .nav-tabs.bestCC-tabs {
    max-width: 70%;
  }
  /* 02-04-2025 */
  .declaration {
    max-width: 80%;
    margin: 0 0 0 auto;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .card-lo-num {
    width: 30px;
    font-size: 16px;
  }
}


/* Snackbar CSS */
/* ── Snackbar ────────────────────────────────────────────── */
#snackbar {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;

    display: flex;
    align-items: flex-start;
    gap: 10px;

    min-width: 300px;
    max-width: 380px;
    width: auto;

    background: #fff;
    color: #1a1a2e;
    border-left: 4px solid #2196F3;
    border-radius: 8px;
    padding: 14px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);

    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;

    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
    transform: translateX(120%);
}

#snackbar.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Icon */
#snackbar .snackbar-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: #2196F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

#snackbar .snackbar-icon i {
    color: #fff;
    font-size: 11px;
}

/* Text */
#snackbar .snackbar-body {
    flex: 1;
}

#snackbar .snackbar-title {
    font-size: 13px;
    font-weight: 700;
    color: #2196F3;
    margin-bottom: 2px;
}

#snackbar .snackbar-msg {
    font-size: 13px;
    color: #444;
}

/* Close button */
#snackbar .snackbar-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #aaa;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    margin-top: -2px;
    transition: color 0.2s;
}

#snackbar .snackbar-close:hover {
    color: #333;
}

/* Progress bar */
#snackbar .snackbar-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #2196F3;
    border-radius: 0 0 8px 8px;
    animation: snackbar-progress 8s linear forwards;
}

@keyframes snackbar-progress {
    from { width: 100%; }
    to   { width: 0%; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 480px) {
    #snackbar {
        top: auto;
        bottom: 16px;
        right: 12px;
        left: 12px;
        max-width: 100%;
        min-width: unset;
        transform: translateY(120%);
    }

    #snackbar.show {
        transform: translateY(0);
    }
}