
:root {
  --primary-color: #14b8a6;
  --secondary-color: #084c41;
  --accent-color: #dcfce7;
  --text-dark: #000000;
  --text-light: #202122;
  --bg-light: #f9fafb;
  --bg-mint: #dceffc;
  --shadow-sm: 0 2px 16px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 8px 32px rgba(20, 184, 166, 0.08);
  --radius-sm: 5px;
  --radius-lg: 10px;
  --transition: all 0.3s ease;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--bg-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  border-radius: 2px;
  font-weight: 600;
}

.btn:hover i {
  transform: translateX(3px);
  transition: transform 0.2s;
}

.lead {
  font-size: 1rem;
  font-weight: 500;
}

input,
select,
textarea,
button,
.apply-btn,
.cta-btn,
.submit-btn {
  cursor: pointer;
}

.custom-bg {
  background: linear-gradient(45deg, #0a0a0a30, #0101011a),
    url(../images/background.png);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.text-muted {
  font-weight: 600;
  color: black;
}

/* Header & Navigation */
header {
  color: #111827;
  background: #ffffff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 1px 7px rgb(0 0 0 / 22%);
}

header.sticky {
  backdrop-filter: blur(50px);
  box-shadow: 0 1px 7px rgb(0 0 0 / 22%);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  background: transparent;
  min-height: 70px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: auto;
  height: 75px;
  object-fit: contain;
  vertical-align: middle;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(20, 184, 166, 0.1));
}

@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }
}

@media (max-width: 375px) {
  .logo img {
    height: 37px;
  }
}

/* header.sticky .logo img {
  height: 40px;
} */

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0rem 0.5rem;
  position: static;
  /* background: rgba(255,255,255,0.10); */
  border-radius: 32px;
  /* box-shadow: 0 2px 8px rgba(20, 184, 166, 0.06); */
  align-items: center;
  transition: background 0.3s;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 600;
  /* letter-spacing: 0.0em; */
  padding: 0.6rem 0.5rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  position: relative;
}

.nav-links a.active,
.nav-links a:hover {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 2px 8px rgba(20, 184, 166, 0.1);
  transform: translateY(-2px) scale(1.04);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.apply-btn {
  background: #0d6efd;
  color: #ffffff;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 2px 8px rgb(0 0 0 / 35%);
  border: none;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

@media (max-width: 375px) {
  .apply-btn {
    padding: 0.5rem 1rem;
  }
}

.apply-btn:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.3s;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #141414;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 1024px) {
  .navbar {
    padding: 0 1rem;
  }

  .nav-links {
    gap: 1rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 900px) {
  .nav-links {
    gap: 0.5rem;
    padding: 0.5rem 0.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    min-height: 60px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(90deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%);
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.1);
    border-radius: 0 0 24px 24px;
    margin: 0;
    padding: 1.5rem 0.5rem;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .nav-links.open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    color: #000000;
    font-size: 1.1rem;
    padding: 0.8rem 0.5rem;
    border-radius: 16px;
    display: block;
    padding: 0.8rem;
    width: 100%;
  }

  .nav-actions {
    gap: 0rem;
  }
}

/* Hero Section */
.hero {
  margin-top: -70px;
  box-shadow: 0 -4px 16px rgba(53, 54, 54, 30%);
  background: linear-gradient(42deg, #e1fffcb3 20%, #eff5ee45 60%);
  padding: 5rem 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* .hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
} */

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  /* font-size: 1.25rem; */
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.top {
  position: relative;
  padding: 7rem 0rem 0rem;
  /* background: linear-gradient(42deg, #e1fffcb3 20%, #eff5ee45 60%); */
}

.moving-logo {
  width: 110px;
  height: 110px;
  animation: moveY 2s infinite alternate;
  display: inline-block;
}

@keyframes moveY {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(10px);
  }
}

.cta-btn {
  background: #2e2eea;
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Slider/Screenshot Section */
/*  */
.slide {
  border-radius: 25px;
  background: linear-gradient(312deg, #f1fdfc 7%, #ffffff 43% 55%);
  border: 0.5px solid #f0eeee;
}

/* Services Section */
.services {
  padding: 6rem 2rem;
  background: white;
}

.section-title {
  font-size: 1.5rem;
  color: var(--secondary-color);
  color: #1a237e;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-title span {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: #e91e63;
  vertical-align: middle;
  margin-left: 10px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: linear-gradient(346deg, #ebf5f4b3 3%, #fdfdfd45);
  padding: 1rem 2rem;
  border: 1px solid #e3e6ef;
  border-radius: var(--radius-lg);
  box-shadow: 2px 3px 10px 0px #cdcdcd8f;
  transition: var(--transition);
}

.card h5 {
  color: #1a237e;
  font-weight: 700;
  text-align: center;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.card p {
  color: var(--text-light);
  text-align: justify;
}

#contact .card p {
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

#popular-products .card {
  padding: 1rem 1rem !important;
}

#contact .card:hover {
  transform: none;
  box-shadow: none;
}

.card-footer {
  border: none;
  background: none;
  padding: 5px 0px;
}

#contact .card.h-100 {
  min-height: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  #contact .row.align-items-stretch {
    min-height: 420px;
  }

  #contact .card.h-100 {
    height: 100%;
  }
}

.icon {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}


.get img {
  width: 80%;
}


/* Integration Section */
.integration-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  /* background: var(--bg-mint); */
  /* border-radius: var(--radius-lg); */
}

.integration-logos img {
  /* height: 180px; */
  opacity: 1;
  transition: opacity 0.2s;
}

.integration-logos img:hover {
  opacity: 0.8;
}

.nbfc-logos .nbfc-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin: 8px 12px;
  filter: grayscale(30%);
  transition: filter 0.2s, transform 0.2s;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(60, 60, 60, 0.07);
  padding: 6px 12px;
}

.nbfc-logos .nbfc-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.07);
  box-shadow: 0 4px 16px rgba(60, 60, 60, 0.13);
}

@media (max-width: 576px) {
  .nbfc-logos .nbfc-logo {
    height: 70px;
    margin: 6px 6px;
    padding: 4px 6px;
  }
}

.features {
  padding: 3rem 0;
}

/* Stats Section */
.stats {
  background: linear-gradient(45deg, #0a0a0a, #010101a8),
    url(../images/background.png);
  background-attachment: fixed;
  background-position: center center;
  padding: 4rem 2rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  color: var(--bg-light);
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bg-light);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--bg-light);
  font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.contact-form button {
  background: var(--secondary-color);
  color: white;
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 500;
  cursor: pointer;
}

footer {
  background: linear-gradient(45deg, #0a0a0aeb, #010101),
    url(../images/background.png);
  background-attachment: fixed;
  background-position: center center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
}

.footer-logo {
  max-width: 75px;
  height: auto;
  background: white;
  border-radius: 10px;
  margin-bottom: 10px;
}

footer h6 {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
  text-decoration-color: #e91e63;
}

@media (min-width: 1024px) {
  footer h6 {
    margin-top: 40px;
  }
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-3px);
  color: var(--primary-color);
}

footer .list-unstyled li {
  margin-bottom: 0.75rem;
}

footer .list-unstyled li a {
  color: #ffffff;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

footer .list-unstyled li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 3rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  footer {
    text-align: center;
  }

  .social-links {
    justify-content: center;
    margin-bottom: 2rem;
  }

  .list-unstyled {
    margin-bottom: 2rem;
  }

  .contact-info li {
    justify-content: center;
  }

  footer .list-unstyled li {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 1rem;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .col-lg-3:first-child {
    align-items: flex-start;
    text-align: left;
  }

  .col-lg-3:first-child p {
    text-align: justify;
  }

  .col-lg-3:first-child .social-links {
    justify-content: flex-start;
  }
}

footer .col-lg-3:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

footer .col-lg-3:first-child .social-links {
  justify-content: center;
  margin-top: 1.5rem;
}

@media (max-width: 991px) {
  .col-lg-3:not(:first-child) {
    padding-left: 15px;
    text-align: center;
  }

  .col-lg-3 ul.list-unstyled {
    display: inline-block;
    text-align: left;
  }
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover i {
  transform: rotate(-180deg);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  padding: 0.5rem;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin: 12px 0px;
}

.dropdown-content a {
  display: block;
  padding: 0.8rem 1rem;
  color: var(--text-light);
  font-size: 0.95rem;
  border-radius: 8px;
}

.dropdown-content a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 2rem 1rem;
}

.modal.active {
  display: flex;
  opacity: 1;
  align-items: flex-start;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  width: 90%;
  max-width: 600px;
  min-height: 600px;
  max-height: 90vh;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  margin: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 2rem;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  background: linear-gradient(45deg,
      var(--primary-color),
      var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.close-modal {
  background: #f1f5f9;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.close-modal:hover {
  background: #e2e8f0;
  color: var(--text-dark);
  transform: rotate(90deg);
}

.modal-form {
  padding: 2rem;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: white;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #cbd5e1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-actions {
  margin-top: auto;
  padding-top: 1.5rem;
  text-align: right;
  border-top: 1px solid #e5e7eb;
}

.submit-btn {
  background: linear-gradient(45deg,
      var(--primary-color),
      var(--secondary-color));
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.15);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(var(--primary-color-rgb), 0.25);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Form Validations */
.form-group input:invalid,
.form-group select:invalid {
  border-color: #ef4444;
}

.form-group input:invalid:focus,
.form-group select:invalid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Currency Input Styling */
.form-group.currency-input {
  position: relative;
}

.form-group.currency-input input {
  padding-left: 2rem;
}

.form-group.currency-input::before {
  content: "₹";
  position: absolute;
  left: 1rem;
  top: 2.5rem;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal {
    padding: 1rem;
  }

  .modal-content {
    min-height: 500px;
  }

  .modal-header {
    padding: 1.5rem;
  }

  .modal-form {
    padding: 1.5rem;
    gap: 1.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .submit-btn {
    width: 100%;
    padding: 0.875rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 1rem;
    transform: none;
  }

  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 480px) {
  .modal-content {
    min-height: 450px;
  }

  .modal-header {
    padding: 1.2rem;
  }

  .modal-form {
    padding: 1.2rem;
    gap: 1rem;
  }
}

/* Animation Keyframes */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Navigation Adjustments */
@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 0 1rem;
    display: none;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    padding: 0.6rem 1rem;
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
  }

  .login-btn {
    width: 100%;
    text-align: center;
  }
}

/* Responsive Navigation Styles */
@media (max-width: 1024px) {
  .nav-links {
    position: static;
    transform: none;
    margin: 0 auto;
  }

  /* .navbar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  } */

  .logo {
    margin: 0 auto;
  }

  .nav-actions {
    margin-left: auto;
  }
}

/* loan boxx */
.loan-box {
  background: linear-gradient(346deg, #ebf5f4b3 3%, #fdfdfd45);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.loan-title {
  font-weight: 700;
  font-size: 28px;
  color: #000;
}

.loan-subtitle {
  color: #000000;
  margin-bottom: 20px;
  text-align: justify;
}

.loan-feature i {
  color: #4a4af4;
  margin-right: 10px;
}

.motto-list {
  text-align: justify;
}

.btn-apply {
  background-color: #2b2b84;
  color: #fff;
  border: none;
}

.btn-apply:hover {
  background-color: #1e1e6b;
}

.btn-outline-custom {
  border: 1px solid #ccc;
  color: #2b2b84;
}

.loan-image {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .loan-title {
    font-size: 22px;
    text-align: center;
  }

  .loan-subtitle,
  .loan-feature {
    text-align: justify;
  }
}

.benifit {
  padding-top: 60px;
  background-color: #f8f9fa;
}

.carousel-control-next,
.carousel-control-prev {
  width: 7%;
}


.floating-icons {
  position: fixed;
  bottom: 30%;
  right: 0px;
  z-index: 1000;
}

.floating-icons a {
  display: block;
  text-align: center;
  margin: 5px 0;
  font-size: 30px;
  width: 45px;
  line-height: 50px;
  border-radius: 10% 0% 0% 10%;
  color: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.floating-icons a i {
  transition: margin 0.3s ease-in-out;
}



.call-icon {
  background: #28a745;
}

.msg-icon,
.fb-icon {
  background: #007bff;
}

.wht-icon {
  background: #25D366;
}

.insta-icon {
  background: #E1306C;
}

.twitter-icon {
  background: #000000;
}

.youtube-icon {
  background: #FF0000;
}

/* Only hover the current anchor and its child icon */
.floating-icons a:hover {
  transform: scale(1.1) translateX(-10px);
}

.whatsapp-float {
  position: fixed;
  bottom: 10%;
  right: 10px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 4px 11px;
  font-size: 31px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}
@media (max-width: 768px) {
  .floating-icons a {
    display: block;
    text-align: center;
    margin: 5px 0;
    font-size: 25px;
    width: 35px;
    line-height: 40px;
    color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  .whatsapp-float{
    font-size: 25px;
    right: 5px;
  }
}


.emi-box {
  background: linear-gradient(42deg, #e1fffcb3 20%, #eff5ee45 60%);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease-in-out;
}

.emi-box:hover {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.emi-box input {
  margin-bottom: 15px;
}

.result-live {
  background: linear-gradient(312deg, #d5f5d4d1 7%, #d6f1d9d6 55%);
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  font-size: 16px;
}

.result-live p {
  margin-bottom: 10px;
}

.result-live strong {
  color: #1d531d;
}

h3 {
  font-weight: 700;
  color: #1d531d;
}

/* Colorful range slider */
input[type="range"].styled-range {
  height: 9px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(90deg, #00c853, #ffeb3b, #ff5722);
  border-radius: 3px;
  outline: none;
  width: 100%;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 20px;
  width: 20px;
  background: #1d531d;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}