@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap");
/* hero section  */
:root {
  --primary-blue: #2196f3;
  --dark-blue: #1976d2;
  --light-blue: #e3f2fd;
  --accent-blue: #03a9f4;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --text-dark: #2c3e50;
  --azure-primary: #0066cc;
  --azure-secondary: #4d94ff;
  --azure-light: #e6f2ff;
  --azure-dark: #003d7a;
  --pearl-white: #ffffff;
  --frost-gray: #f8f9fa;
  --shadow-blue: rgba(0, 102, 204, 0.1);
}

body.no-scroll {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Host Grotesk";
}

body {
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

/* Navbar */
.navbar {
  background: transparent !important;
  box-shadow: none !important; /* transparent overlay */
  box-shadow: none; /* remove default shadow */
  position: absolute !important; /* overlay on hero */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Logo with white glow */
.navbar-brand img {
  height: 100px;
  width: 250px;
  object-fit: cover;
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 5px rgba(255, 255, 255, 0.9));
}

/* Keep nav links visible */
.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 15px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 5px rgba(255, 255, 255, 0.9));
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Hero Section */

.dl-hero-sections {
  height: 90vh;
  background: linear-gradient(
      135deg,
      rgba(74, 108, 247, 0.85),
      rgba(142, 68, 173, 0.85)
    ),
    url("https://assets.smfgindiacredit.com/sites/default/files/PL-Can-Be-a-Smart-Choice-for-Millennials-Thumb.png?VersionId=MqRRfZzRPLyYZ2vNK4IpVgfzUUf8ScxH");
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
 
}

.dl-hero-content {
  text-align: center;
  color: white;
  z-index: 2;
}

.dl-main-title {
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

@media(max-width:576px){
  .title-primary{
    font-size: 32px !important;
  }
}

.dl-typing-container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dl-typed-text {
  font-size: 3.5rem;
  font-weight: 700;

  color: transparent; /* remove fill */
  -webkit-text-stroke: 2px #ffffff; /* outline thickness + color */
}

.dl-typing-cursor {
  display: inline-block;
  width: 3px;
  height: 60px;
  background-color: #4a6cf7;
  margin-left: 5px;
  animation: dl-blink 1s infinite;
}

@keyframes dl-blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.dl-btn-applys {
  background: #b3b3b3;
  background: linear-gradient(90deg, #00c6ff, #0072ff) !important;
  color: white !important;
  border: none;
  padding: 15px 30px !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  border-radius: 10px !important;
  margin-top: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(74, 108, 247, 0.3);
}

.dl-btn-applys:hover {
  background: #3d5af1;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(74, 108, 247, 0.4);
}

@media (max-width: 768px) {
  .dl-main-title,
  .dl-typed-text {
    font-size: 2.5rem;
  }

  .dl-typing-cursor {
    height: 40px;
  }

  .dl-hero-section {
    background-attachment: scroll;
  }
}

@media (max-width: 576px) {
  .dl-main-title,
  .dl-typed-text {
    font-size: 2rem;
  }

  .dl-typing-cursor {
    height: 32px;
  }
}
/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer h5 {
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  border-top: 1px solid #495057;
  margin-top: 40px;
  padding-top: 30px;
  text-align: center;
  color: #adb5bd;
}
.footer .row {
  display: flex;
  flex-wrap: wrap; /* allow wrapping on small screens */
  justify-content: space-between; /* spread evenly */
  align-items: flex-start;
  gap: 20px;
}

.footer .footer-col {
  flex: 1 1 0; /* make all columns flexible */
  min-width: 200px; /* ensure readability on small screens */
  max-width: 100%;
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .lead {
    font-size: 1.1rem;
  }

  .navbar-nav .nav-link {
    margin: 5px 0;
  }

  .search-container {
    margin: 1rem 0;
  }
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar translucent in mobile view */
@media (max-width: 991px) {
  .navbar {
    background-color: rgba(255, 255, 255, 0.7); /* white with opacity */
    backdrop-filter: blur(10px); /* blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
     padding:10px !important;
  }
}


/* why you should parterner use */

.dl-hero-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  margin: auto;
  padding: 20px 50px;
}

.dl-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
  pointer-events: none;
}

.dl-main-container {
  position: relative;
  z-index: 2;
  padding: 50px 0;
}

.dl-title-primary {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dl-description-text {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.dl-cta-button {
  background: linear-gradient(45deg, #ffffff, #f8fafc);
  color: #1e40af;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 30px;

  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dl-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
  color: #1e40af;
}

.dl-image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dl-main-profile {
  position: relative;
  display: inline-block;
}

.dl-main-profile img {
  width: 400px;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.dl-secondary-profile {
  position: absolute;
  top: 50px;
  right: 150px;
  z-index: 2;
}

.dl-secondary-profile img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.dl-accent-circle {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #ef4444, #f59e0b);
  border-radius: 50%;
  top: 35%;
  left: 200px;
  transform: translateY(-90%);
  opacity: 0.5;
  z-index: 1;
}

.dl-accent-circle-small {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #10b981, #06b6d4);
  border-radius: 50%;
  bottom: -20px;
  right: 20px;
  opacity: 0.5;
  z-index: 1;
}

.dl-floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dl-float-1 {
  width: 60px;
  height: 60px;
  top: 10%;
  left: 10%;
  animation: dl-float 6s ease-in-out infinite;
}

.dl-float-2 {
  width: 40px;
  height: 40px;
  top: 70%;
  left: 5%;
  animation: dl-float 4s ease-in-out infinite reverse;
}

.dl-float-3 {
  width: 50px;
  height: 50px;
  top: 20%;
  right: 15%;
  animation: dl-float 5s ease-in-out infinite;
}

@keyframes dl-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@media (max-width: 768px) {
  .dl-main-container {
    padding: 40px 0;
  }

  .dl-title-primary {
    font-size: 2.5rem;
    text-align: center;
  }

  .dl-description-text {
    text-align: center;
    font-size: 1rem;
  }

  .dl-main-profile img {
    width: 220px;
    height: 280px;
  }

  .dl-secondary-profile {
    top: -10px;
    right: -20px;
  }

  .dl-secondary-profile img {
    width: 140px;
    height: 180px;
  }

  .dl-cta-button {
    display: block;
    margin: 0 auto;
  }
}

.dl-content-wrapper {
  animation: dl-fadeInUp 1s ease-out;
}

@keyframes dl-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image img {
  width: 30vw;
}

/* caresola-section */

/* processs */

.oceanic-hero {
  background: linear-gradient(
    135deg,
    var(--azure-dark) 0%,
    var(--azure-primary) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.oceanic-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="2" fill="rgba(255,255,255,0.15)"/><circle cx="400" cy="600" r="4" fill="rgba(255,255,255,0.08)"/><circle cx="900" cy="700" r="2" fill="rgba(255,255,255,0.12)"/></svg>');
  animation: stellar-drift 20s linear infinite;
}

@keyframes stellar-drift {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-50px) translateY(-30px);
  }
}

.celestial-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--pearl-white);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.sapphire-process-container {
  position: relative;
  z-index: 2;
  margin-top: 4rem;
}

.diamond-step-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap; /* Prevent wrapping on desktop */
}

.crystal-step-card {
  background: var(--pearl-white);
  border-radius: 20px;
  padding: 2rem;
  width: 320px; /* Increased width */
  min-width: 320px; /* Prevent shrinking below this */
  flex-shrink: 0; /* Prevent shrinking in flex row */
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-blue);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.crystal-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s;
}

.crystal-step-card:hover::before {
  left: 100%;
}

.crystal-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-blue);
}

.platinum-icon-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    var(--azure-primary),
    var(--azure-secondary)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: hidden;
}

.platinum-icon-circle img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.platinum-icon-circle .fa-solid {
  font-size: 2.5rem;
  color: var(--pearl-white);
}

.emerald-step-number {
  position: absolute;
  bottom: -5px;
  right: 35px;
  width: 40px;
  height: 40px;
  background: var(--azure-dark);
  color: var(--pearl-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.topaz-step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--azure-dark);
  margin-bottom: 0.8rem;
}

.amber-step-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
}

.ruby-connecting-line {
  width: 32px;
  height: 32px;
  background: url("/arrow-right.png") center center no-repeat;
  background-size: 24px 24px;
  margin: 0 1rem;
  border-radius: 0;
  flex: none;
  position: relative;
  border-bottom: 2px dotted #1976d2; /* dotted arrow effect */
}

.ruby-connecting-line::after {
  display: none; /* Remove old arrow triangle */
}

/* Remove arrow icons from process cards */
.crystal-step-card .fa-arrow-right,
.crystal-step-card .fa-long-arrow-alt-right {
  display: none !important;
}

.jade-cta-section {
  margin-top: 4rem;
  text-align: center;
}

.opal-cta-button {
  background: linear-gradient(
    135deg,
    var(--azure-secondary),
    var(--azure-primary)
  );
  color: var(--pearl-white);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.opal-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
  color: var(--pearl-white);
}

@media (max-width: 768px) {
  .celestial-title {
    font-size: 2.5rem;
  }

  .diamond-step-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    flex-wrap: wrap; /* Allow wrapping on mobile */
  }

  .ruby-connecting-line {
    display: none;
  }

  .crystal-step-card {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 992px) {
  .ruby-connecting-line {
    display: none;
  }
}

.quantum-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.quantum-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: quantum-float 6s ease-in-out infinite;
}

.quantum-particle:nth-child(1) {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.quantum-particle:nth-child(2) {
  width: 6px;
  height: 6px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

.quantum-particle:nth-child(3) {
  width: 3px;
  height: 3px;
  top: 80%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes quantum-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

.process-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.connector-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-bottom: 4px;
}

.ruby-connecting-line {
  width: 32px;
  height: 32px;
  background: url("/arrow-right.png") center center no-repeat;
  background-size: 24px 24px;
  margin: 0 1rem;
  border-radius: 0;
  flex: none;
  position: relative;
  border-bottom: 2px dotted #1976d2; /* dotted arrow effect */
}

/* Thousands of Business Associates Trust our Company */

.hero-section {
  padding: 80px 0;
  color: white;
  text-align: center;
  background: linear-gradient(135deg, #26a9eb 0%, #2c4384 100%);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.features-grid {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  margin: 0 auto;
  max-width: 900px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  cursor: pointer;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 300;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  top: 500px;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: -70px;
}

.carousel-control-next {
  right: -70px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .features-grid {
    padding: 20px;
    margin: 0 15px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev {
    left: -50px;
  }

  .carousel-control-next {
    right: -50px;
  }
}

.row-gap {
  gap: 20px;
}

/* calculator */

        .loan-calculator-container {
            color:white;
            border-radius: 20px;
           color:var(--light-blue) ;
            overflow: hidden;
            max-width: 1200px;
            width: 100%;
            
        }

        .calculator-header {
            text-align: center;
            padding: 30px 20px;
            background-color: var(--primary-blue);
            color: white;
          
            
        }

        .calculator-header h1 {
            font-size: 40px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .calculator-header p {
            opacity: 0.9;
            font-size: 20px;
        }

        .calculator-content {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
            padding: 40px;
        }

        .input-section {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .input-group-enhanced {
            display: flex;
            flex-direction: column;
            gap: 15px;
            
          
        }

        .input-label-enhanced {
            font-size: 21px;
            font-weight: 600;
            color: #374151;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .input-value-display {
            background: #f3f4f6;
            padding: 8px 12px;
            border-radius: 8px;
            font-weight: 600;
            color: #4f46e5;
            min-width: 120px;
            text-align: center;
        }

        .input-controls-enhanced {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .manual-input-enhanced {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: white;
        }

        .manual-input-enhanced:focus {
            outline: none;
            border-color: #4f46e5;
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }

        .slider-enhanced {
            flex: 2;
            height: 8px;
            border-radius: 4px;
            background: #e5e7eb;
            outline: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .slider-enhanced::-webkit-slider-thumb {
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary-blue);
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(79, 70, 229, 0.3);
            transition: all 0.2s ease;
        }

        .slider-enhanced::-webkit-slider-thumb:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
        }

        .slider-enhanced::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary-blue) !important;
            cursor: pointer;
            border: none;
            
        }

        .range-labels-enhanced {
            display: flex;
            justify-content: space-between;
            margin-top: 5px;
            font-size: 18px;
            color: #6b7280;
        }

        .results-section {
            background: #f8fafc;
            border-radius: 15px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .monthly-emi-display {
            text-align: center;
            padding: 20px;
            background: linear-gradient(135deg, #4f46e5, #3ac3ed);
            border-radius: 12px;
            color: white;
        }

        .monthly-emi-display h3 {
            font-size: 16px;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .monthly-emi-display .amount {
            font-size: 32px;
            font-weight: 700;
        }

        .chart-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 200px;
            margin: 20px 0;
        }

        .chart-svg {
            width: 160px;
            height: 160px;
        }

        .chart-legend {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-left: 20px;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #374151;
        }

        .legend-color {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            
        }

        .summary-label {
            font-weight: 500;
            color: #374151;
        }

        .summary-value {
            font-weight: 600;
            color: #211b8d;
            font-size: 16px;
        }

        .apply-button-enhanced {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #4f46e5, #3ac3ed);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .apply-button-enhanced:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
        }

        @media (max-width: 768px) {
            .calculator-content {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 20px;
            }

            .input-controls-enhanced {
                flex-direction: column;
                gap: 10px;
            }

            .manual-input-enhanced,
            .slider-enhanced {
                width: 100%;
            }
        }

/* testimonial section */

.testimonial-hero-container {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
  min-height: 8 0vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.testimonial-main-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.testimonial-heading-section {
  flex: 1;
  color: white;
}

.testimonial-main-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-card-container {
  flex: 1;
  position: relative;
}

.testimonial-review-card {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.testimonial-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  opacity: 0.1;
}

.testimonial-quote-icon::before {
  content: '"';
  font-size: 80px;
  font-family: serif;
  color: #3b82f6;
  position: absolute;
  top: -20px;
  right: 0;
}

.testimonial-client-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e0f2fe;
}

.testimonial-client-info h3 {
  color: #1e3a8a;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.testimonial-client-role {
  color: #64748b;
  font-size: 1rem;
}

.testimonial-review-text {
  color: #374151;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.testimonial-navigation-dots {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.testimonial-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e7eb;
  border: 2px solid #3b82f6;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav-dot.active-dot {
  background: #3b82f6;
  transform: scale(1.2);
}

.testimonial-arrow-controls {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #64748b;
}

.testimonial-arrow-btn:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  transform: scale(1.1);
}

.testimonial-decorative-element {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  z-index: 0;
}

@media (max-width: 968px) {
  .testimonial-main-wrapper {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }

  .testimonial-main-title {
    font-size: 3rem;
  }

  .testimonial-review-card {
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .testimonial-main-title {
    font-size: 2.5rem;
  }

  .testimonial-hero-container {
    padding: 1rem;
  }

  .testimonial-review-card {
    padding: 1.5rem;
  }
}

/* Best Loan Offers at Your Fingertips! */

.loan-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.loan-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.vendor-logo {
  width: 120px; /* fixed width for all */
  height: auto; /* fixed height for all */
  object-fit: contain; /* keep aspect ratio */
  background: #fff; /* optional: to give white box */
  /* some spacing */
}

.apply-btn {
  background: #08085c !important;
  background: linear-gradient(
    213deg,
    rgba(8, 8, 92, 1) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  ) !important;
  border: none;
  border-radius: 8px;
  color: #fff !important;
  font-weight: 600;
  padding: 10px 20px;
  transition: all 0.3s ease;

}
@media (max-width:576px) {
  .apply-btn {
    font-size: 15px !important;
    margin-left: 10px !important;
  }
  
}

.partner-btn {
background: linear-gradient(90deg, #00c6ff, #0072ff) !important;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  padding: 5px 15px;
  
}
.partner-btn a {
  text-decoration: none !important;
}

.apply-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(32, 201, 151, 0.3);
}

.apply-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
}

.loan-details {
  font-size: 0.9rem;
}

.detail-label {
  color: #6c757d;
  font-size: 0.75rem;
  margin-bottom: 2px;
}

.detail-value {
  font-weight: 600;
  color: #495057;
}

.details-toggle {
  color: #2042c9;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

.details-toggle:hover {
  color: #2042c9;
}

.section-title {
  background: linear-gradient(
    213deg,
    rgba(8, 8, 92, 1) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.nav-tabs .nav-link {
  color: #6c757d;
  font-weight: 500;
  border: none;
  border-bottom: 2px solid transparent;
}

.nav-tabs .nav-link.active {
  color: #2042c9;
  background: none;
  border-color: #208bc9;
}

.collapse-content {
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 15px;
}

.eligibility-text {
  color: #6c757d;
  font-size: 0.85rem;
  font-style: italic;
}

.policies {
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 12px;
  padding: 12px;
  font-size: 0.97rem;
}
.policies h6 {
  margin-bottom: 8px;
}
.policies pre {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  color: #222;
}

.modal {
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.4);
  display: none;
}
.modal-dialog {
  max-width: 400px;
  margin: 5% auto;
}

.back-to-top-btn {
  position: fixed;
  right: 28px;
  bottom: 32px;
  z-index: 9999;
  background: #2196f3;
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.18);
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  opacity: 0.85;
}
.back-to-top-btn:hover {
  background: #1976d2;
  transform: scale(1.08);
  opacity: 1;
}

@media (max-width: 600px) {
  .dl-cta-button,
  .apply-btn {
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    font-size: 1rem;
  }
}

.modal {
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.4);
  display: none;
}
.modal-dialog {
  max-width: 400px;
  margin: 5% auto;
}

.stats-container {
  background: linear-gradient(
    213deg,
    rgba(8, 8, 92, 1) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 40px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1400px;
  width: 100%;
  margin: 60px auto;
}

.stat-item {
  text-align: center;
  color: white;
  padding: 20px 15px;
  position: relative;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
  margin-top: 10px;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.stat-item:last-child .stat-divider {
  display: none;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-item.animated {
  animation: countUp 0.8s ease-out;
}

/* Responsive design */
@media (max-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .stats-container {
    padding: 30px 15px;
  }
}

/* Glowing effect */
.stat-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.stat-item:hover::before {
  opacity: 1;
}

#creditCardsContainer .apply-btn {
  background-color: #007bff !important;
  color: white !important;
  border: 1px solid #007bff !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
}

/* Popup hidden by default */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 50, 0.5); /* dark blue overlay */
  justify-content: center;
  align-items: center;
}

/* Popup Box */
.popup-content {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  width: 380px;
  max-width: 90%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  animation: fadeIn 0.3s ease-in-out;
}

/* Close Button (X) */
.close {
  align-self: flex-end;
  font-size: 32px;
  font-weight: bold;
  color: black;
  cursor: pointer;
  transition: color 0.2s ease;
}
.close:hover {
  color: #0056b3; /* darker blue hover */
}

/* Form styles */
.popup-content form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.popup-content label {
  font-weight: bold;
  color: black;
}
.popup-content input,
.popup-content textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.popup-content input:focus,
.popup-content textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

/* Submit button */
.popup-content button[type="submit"] {
  background: #007bff;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.popup-content button[type="submit"]:hover {
  background: #0056b3;
}

/* Smooth animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


  
.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            min-height: 80vh;
        }

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

        .title-primary {
            font-size: 3.5rem;
            font-weight: 700;
            color: white !important;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .description-text {
            font-size: 1.1rem;
          color: white !important;
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }

        .services-list {
            list-style: none;
            margin: 1.5rem 0;
             color: white !important;
        }

        .service-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            font-weight: 600;
            color: white !important;
        }

        .arrow-icon {
            width: 20px;
            height: 20px;
            margin-right: 10px;
             color: white !important;
        }

       
        /* Image Section */
        .image-container {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .accent-circle {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            opacity: 0.3;
            z-index: 1;
            top: 50px;
            right: 600px;
            animation: pulse 4s ease-in-out infinite;
        }

        .accent-circle-small {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(135deg, #2196f3, #1976d2);
            opacity: 0.1;
            top: -50px;
            right: -50px;
            z-index: -1;
            animation: pulse 4s ease-in-out infinite reverse;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .main-profile {
  position: relative;
  display: inline-block;
}

.profile-image {
  position: relative;
  z-index: 2;
  border-radius: 20px;
}

.secondary-image {
  position: absolute;
  left: 80%;   /* adjust as needed */
  top: 60px;    /* adjust as needed */
  z-index: 1;
  opacity: 0.95; /* optional: make it slightly faded */
  width: 60%;    /* adjust as needed */
  pointer-events: none;
  border-radius: 20px;
}
.high-disbursement-icon {
  color: #f6f6f6;        
  font-size: 1rem;     
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.2; }
  100% { opacity: 1; }
}

.high-disbursement-tag {
  background: linear-gradient(135deg, #007bff, #0056b3); /* Blue gradient */
  color: #fff;
  font-size: 0.7rem;      
  font-weight: 600;
  padding: 4px 14px;      
  box-shadow: 0 2px 5px rgba(0, 91, 187, 0.3);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border-radius: 10px;
}

/* ✅ Hide on phones (<= 576px) */
@media (max-width: 576px) {
  .high-disbursement-tag {
    display: none !important;
       font-size: 0.5rem;
  }
  .high-disbursement-icon{
    display: none !important;
  }
}
