* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

/* & ================ Nav SECTION ================ */

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  height: 68px;
  padding: 0 20px;
  font-size: 16px;
  color: #555;
  border-bottom: 1px solid #ddd;
}

.top-bar .company-name {
  font-weight: bold;
  font-weight: 800;
  font-size: 26px;
  color: #000;
}

.company-name {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  color: #000;
  gap: 10px;
  /* space between logo and text */
}

.company-logo {
  height: 65px;
  /* adjust height as needed */
  width: auto;
  /* maintain aspect ratio */
  object-fit: contain;
  display: block;
  margin-left: 120px;
}

.Comapany-name-tagline {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: #010a21;
}

.tagline {
  font-size: 16px;
  font-weight: 400;
  color: #ca9907;
}

.top-bar .info {
  display: flex;
  gap: 30px;
  align-items: center;
}

.top-bar .info .item {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Icons - simple inline svg for location and mail */
.icon {
  width: 20px;
  height: 20px;
  fill: #d9a534;
  /* golden color similar to image */
}

/* Main nav styling */
nav {
  background: #003474;
  /* dark blue */
  display: flex;
  justify-content: center;
  padding: 15px 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s;
}



nav ul li a:hover {
  /* color: #d9a534; */
  color: #c4d600;
}

/* Sticky nav */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

.dropdown a {
  cursor: pointer;
}

/* Dropdown menu hidden by default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  min-width: 180px;
  z-index: 1000;
}

/* Dropdown menu items */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
}

.dropdown-menu li a:hover {
  background-color: #f4f4f4;
}

/* Show dropdown on hover (for desktop) */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* ============================================================
   BUSINESS LOAN HERO SECTION
============================================================ */
.business-hero-section {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;

  /* Slanted gradient + right-side business image */
  background-image: linear-gradient(
      115deg,
      #082362 0%,
      #34103e 60%,
      transparent 60.1%
    ),
    url("./Images/businessLoan1.jpg");

  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
}

/* Text wrapper */
.business-content-wrapper {
  width: 55%;
  padding-left: 10%;
  padding-right: 3%;
  color: #ffffff;
  z-index: 2;
}

/* Main heading */
.business-hero-section h1 {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

/* Subtext */
.business-hero-subtext {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 480px;
  opacity: 0.95;
}

/* ======================= TICK LIST ======================= */
.hero-highlights {
  list-style: none;
  margin: 20px 0 30px;
  padding: 0;
}

.hero-highlights li {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

/* Tick Icon */
.tick-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  /* background: #f7b204; */
  background: #bed600;
  color: #082362;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* CTA Button */
.business-cta-button {
  /* background-color: #f7b204; */
  background-color: #bed600;
  color: #082362;
  border: none;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.business-cta-button:hover {
  transform: translateY(-2px);
  /* background-color: #ffd24d; */
  background-color: #d9ff00;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .business-hero-section {
    /* background: linear-gradient(to bottom,
        rgba(8, 35, 98, 0.95),
        rgba(52, 16, 62, 0.9)),
      url("./Images/BusinessLoanHero.jpg"); */

    /* background-image: none !important; */

    background: linear-gradient(
      to bottom,
      rgba(8, 35, 98, 0.95),
      rgba(52, 16, 62, 0.9)
    ) !important;
    height: auto;
    padding: 60px 20px;
    text-align: center;
  }

  .business-content-wrapper {
    width: 100%;
    padding: 0;
  }

  .business-hero-section h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .business-hero-section h1 {
    font-size: 1.5rem;
  }

  .business-hero-subtext {
    font-size: 1rem;
  }

  .hero-highlights li {
    font-size: 0.95rem;
  }

  .business-cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

/*& ================== PARTNERS AUTO SLIDER ================== */
.partners-auto-slider {
  background: #f8f9fa;
  padding: 50px 20px;
  text-align: center;
}

.partners-title {
  font-size: 40px;
  color: #082362;
  margin-bottom: 50px;
  font-weight: 700;
}

.logos-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: scrollLeft 25s linear infinite;
}

.logos-track img {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0);
  transition: 0.3s ease;
}

.logos-track img:hover {
  transform: scale(1.1);
}

/* Infinite Scrolling Animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-220%);
  }
}

/* &===================   Get Loan Section  ======================= */
.get-loan {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  color: #fff;
  backdrop-filter: blur(4px);
}

/* Moving Animated Gradient Background */
.get-loan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, #1a73e8, #0a3a82, #1a73e8);
  background-size: 300% 300%;
  animation: gradientMove 12s ease infinite;
  z-index: -2;
  filter: blur(6px);
  opacity: 0.85;
}

/* Blur Overlay */
.get-loan::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
  z-index: -1;
  background: rgba(5, 10, 40, 0.45);
}

/* Gradient Animation */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Hero Layout */
.getloan-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 20px;
}

/* Left Content */
.getloan-content {
  flex: 1.2;
  animation: fadeUp 1s ease-out;
}

.loan-tag {
  color: #f7b204;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 20px;
  /* margin-top: 50px; */
}

.getloan-content h1 {
  font-size: 46px;
  line-height: 1.3;
  margin-bottom: 15px;
  font-weight: 700;
}

.getloan-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #eaeaea;
}

/* Features List */
.getloan-features {
  margin-top: 20px;
}

.getloan-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  margin-bottom: 12px;
}

/* 
.getloan-feature svg {
  width: 24px;
  fill: #4effa1;
} */

.tick-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #bed600;
  color: #34103e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===================== Floating Icons ======================== */
.floating-icon {
  position: absolute;
  width: 55px;
  opacity: 0.45;
  animation: float 6s ease-in-out infinite;
}

.icon1 {
  top: 12%;
  left: 5%;
  animation-delay: 0s;
}

.icon2 {
  bottom: 15%;
  right: 8%;
  animation-delay: 1.5s;
}

.icon3 {
  top: 50%;
  right: 12%;
  animation-delay: 3s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ===================== FORM (Glassmorphic + Animation) ===================== */
.getloan-form {
  flex: 0 0 360px;
  background: rgba(255, 255, 255, 0.12);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: fadeUp 1.3s ease-out;
}

.getloan-form h3 {
  text-align: center;
  margin-bottom: 15px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.getloan-form input,
.getloan-form select {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.9);
}

.submit-btn {
  width: 100%;
  padding: 12px;
  /* background: #4effa1; */
  /* background:#feb704; 
  color: #06295d; */
  background: #bed600;
  color: #34103e;
  border: none;
  border-radius: 6px;
  font-size: 17px;

  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  /* background: #2ee98c; */
  /* background: #d4a017; */
   background: #d9ff00;
}

/* Form Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== CHATBOT BUBBLE ======================== */
.chatbot-bubble {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #1a73e8;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s;
  z-index: 999;
}

/* &================= Bank Offer section ==================== */
.offers-section {
  padding: 36px 20px 60px;
  background: transparent;
}

.offers-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.offers-header {
  display: flex;
  /* justify-content:space-between; */
  justify-content: center;
  font-size: 20px;
  color: #0b1220;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* OFFER CARDS */
.offer-card {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 30px;
  padding: 24px 32px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eef4fb;
  box-shadow: 0 6px 18px rgba(9, 37, 83, 0.04);

  transition: all 0.3s ease;
  margin-bottom: 20px;
  width: 100%;
}

/* Hover Effect */
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(9, 37, 83, 0.12);
}

/* --- TOP ROW: LOGO + BADGES --- */
.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* gap: 330px; */
  gap: 20px;
  width: 100%;
}

/* Bank Info (Left Side) */
.bank-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-box {
  width: 44px;
  height: 44px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}

.offer-logo {
  /* display:flex;
      justify-content: flex-start; */
  width: 150px;
  height: 30px;
  object-fit: contain;
}

.bank-name {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

/* Badges (Right Side) */
.badges-container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background-color: #f3f4f6;
  color: #1f2937;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #f3f4f6;
  white-space: nowrap;
}

/* --- BOTTOM ROW: DATA + BUTTON --- */
.card-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  /* Aligns data and button bottom */
  flex-wrap: wrap;
  gap: 220px;
}

/* Data Grid */
.data-grid {
  display: flex;
  gap: 40px;
  /* Space between data columns */
  flex-wrap: wrap;
  flex-grow: 1;
}

.data-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 110px;
}

.data-label {
  color: #6b7280;
  /* Gray text */
  font-size: 15px;
  font-weight: 400;
}

.data-value {
  color: #111827;
  /* Dark Black text */
  font-size: 18px;
  font-weight: 700;
}

/* Action Area (Button) */
.action-area {
  flex-shrink: 0;
}

.apply-btn {
  /* background-color: #0066ff; */
  background-color: #08306d;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  min-width: 140px;
}

.apply-btn:hover {
  background-color: #0052cc;
}

/* Show More Button Area */
.offers-more {
  text-align: center;
  margin-top: 30px;
}

.hidden {
  display: none;
}

.show-more {
  background: transparent;
  border: 1px solid #0066ff;
  color: #0066ff;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.show-more:hover {
  background: #eff6ff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .card-top-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-bottom-row {
    flex-direction: column;
    align-items: stretch;
  }

  .data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
  }

  .apply-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .data-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 20px;
  }
}

/* ===================== ADDITIONAL RESPONSIVE BREAKPOINTS ===================== */
/* Large desktop — slightly larger hero and spacing */
@media (min-width: 1400px) {
  .business-hero-section {
    height: 520px;
    background-size: cover;
  }

  .business-content-wrapper {
    width: 48%;
    padding-left: 12%;
  }

  .company-logo {
    height: 75px;
    margin-left: 160px;
  }
}

/* Desktop / large laptop — tighten widths and scale background */
@media (max-width: 1200px) {
  .business-hero-section {
    height: 480px;
    background-size: cover;
    background-position: center right;
  }

  .business-content-wrapper {
    width: 58%;
    padding-left: 8%;
  }

  .getloan-container {
    max-width: 1024px;
    gap: 28px;
  }
}

/* Tablet / small laptop — stack some layout pieces and make form full-width */
@media (max-width: 992px) {
  .top-bar {
    padding: 0 12px;
  }

  .company-logo {
    height: 60px;
    margin-left: 20px;
  }

  nav ul {
    gap: 18px;
  }

  .business-hero-section {
    height: 420px;
    background-size: cover;
  }

  .business-content-wrapper {
    width: 70%;
    padding-left: 6%;
  }

  .getloan-container {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }

  .getloan-form {
    flex: 1 1 auto;
    width: 100%;
  }
}

/* Tight mobile adjustments (augmenting existing rules) */
@media (max-width: 600px) {
  .company-name {
    gap: 8px;
  }

  .company-logo {
    height: 52px;
    margin-left: 12px;
  }

  .business-hero-section h1 {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  .business-hero-subtext {
    font-size: 0.98rem;
  }

  .business-cta-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Extra small phones */
@media (max-width: 360px) {
  .top-bar {
    height: 60px;
  }

  .business-hero-section {
    padding: 40px 12px;
  }

  .business-hero-section h1 {
    font-size: 1.25rem;
  }

  .hero-highlights li {
    font-size: 0.9rem;
  }
}

/* & ================= EMI Calculator ================ */

:root {
  --bg: #0f1724;
  --card: #0b1220;
  --accent: #06b6d4;
  --muted: #94a3b8;
  --primary-color: #1a73e8;
  --primary-dark: #1557b0;
  --secondary-color: #f8f9fa;
  --text-dark: #202124;
  --text-light: #5f6368;
  --success-color: #34a853;
  --border-color: #dadce0;
  --white: #ffffff;
  --gradient-start: #1a73e8;
  --gradient-end: #4285f4;
}

.chatbot-blink {
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(26, 115, 232, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(26, 115, 232, 0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-form {
    width: 100%;
    max-width: 400px;
  }

  .trusted-badges {
    justify-content: center;
  }
}

.calculator {
  padding: 4rem 1rem;
  background-color: var(--secondary-color);
}

.calculator-container {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
}

/* -------- Inputs -------- */
.slider-group {
  margin-bottom: 2.5rem;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.inline-input {
  display: flex;
  align-items: center;
  background: #f4f7fc;
  border: 1px solid #dbe2ef;
  border-radius: 6px;
  padding: 5px 8px;
}

.inline-input input {
  width: 90px;
  border: none;
  outline: none;
  background: transparent;
  text-align: right;
  font-weight: 600;
}

input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: #e5e7eb;
  appearance: none;
  margin-top: 10px;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #196cd9;
  cursor: pointer;
}

.min-max {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #6b7280;
  margin-top: 6px;
}

/* -------- EMI -------- */
.emi-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.emi-circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  /* background: conic-gradient(
    #196cd9 0deg,
    #06448a 0deg,
    #9dff01 0deg,
    #e9ebe5 360deg
  ); */

  /* background: conic-gradient(rgb(8 50 106) 0deg, rgb(20 88 177) 313.092deg, #c4dd03 313.092deg, #bed600 360deg); */
  background: conic-gradient(
    rgb(8 50 106) 0deg,
    rgb(20 88 177) 180deg,
    #c4dd03 180deg,
    #bed600 360deg
  );

  display: flex;
  align-items: center;
  justify-content: center;
}

.emi-circle-inner {
  width: 170px;
  height: 170px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.emi-circle-inner h3 {
  margin-top: 0.5rem;
  color: #196cd9;
}

.emi-summary {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 2rem;
}

.emi-summary div {
  text-align: center;
}

/* -------- Table -------- */
.repayment-schedule {
  margin-top: 4rem;
  background: #fdfdfd;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.repayment-schedule h3 {
  color: #111;
  border-left: 4px solid #007bff;
  padding-left: 15px;
  margin-bottom: 20px;
  font-size: 24px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background: linear-gradient(135deg, #196cd9, #0c2f6a);
  color: #fff;
}

th,
td {
  padding: 12px;
  border: 1px solid #e5e7eb;
  text-align: right;
}

th:first-child,
td:first-child {
  text-align: center;
}

/* -------- Responsive -------- */
@media (max-width: 900px) {
  .calculator-grid {
    grid-template-columns: 1fr;
  }
}

/* ^===============================  Feature section ==================================== */
/* Features Section */
.features {
  padding: 4rem 2rem;
  /* background: var(--secondary-color); */
  background: #ffffff;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #082362;
}

.subtext {
  text-align: center;
  font-size: 18px;
  margin-bottom: 3rem;
  color: #333;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  border: 1px solid #e6e6e6;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: #0b4fc7;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #003474, #34103e);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.2rem;
  transition: 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #082362;
}

.feature-card p {
  /* color: var(--text-light); */
  color: #5f6368;
  line-height: 1.6;
}

/*&==================== Eligibility Section =============================*/

.eligibility {
  padding: 4rem 2rem;
  /* background: var(--white); */
  /* background: #040a34; */
  background: #f8f9fa;
}

.eligibility-container {
  max-width: 1200px;
  margin: 0 auto;
}

.eligibility-tag {
  display: flex;
  justify-content: center;
  color: #d4a017;
  /* font-size: 35px; */
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 10px;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.eligibility-card {
  /* background: var(--secondary-color); */
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.eligibility-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #082362;
}

.eligibility-card ul {
  list-style: none;
  padding-left: 0;
}

.eligibility-card li {
  padding: 0.5rem 0;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

/* .eligibility-card li:before {
        content: "✓";
        color: var(--success-color);
        font-weight: 700;
        flex-shrink: 0;
      } */

/* TICK CIRCLE (SAME AS HOME LOAN) */
.tick-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #bed600;
  color: #34103e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* & ===================== Key Features for Business Loan ======================== */
.businessloan-features {
  padding: 60px 20px;
  background: #fff;
  color: #1a1a1a;
}

.businessloan-features .container {
  max-width: 1100px;
  margin: 0 auto;
}

.businessloan-features .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #002b5c;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 22px;
  display: flex;
  gap: 10px;
  color: #333;
}

.feature-list li::before {
  content: "✔";
  color: #f4a51c;
  font-weight: 700;
}

/* ! ======================= media Quary =================================== */
@media (max-width: 992px) {
  .businessloan-features .section-title {
    font-size: 30px;
  }

  .feature-list li {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .businessloan-features {
    padding: 40px 15px;
  }

  .businessloan-features .section-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .feature-list li {
    font-size: 16px;
  }

  .businessloan-features .section-title {
    font-size: 24px;
  }
}

/*&=============================== Features/ Types of Business Loan =============================*/
.types-business-loan {
  padding: 60px 20px;
  /* background: #fff; */
  /* background: #f7f9fc; */
  background: var(--secondary-color);
  color: #1a1a1a;
}

.types-business-loan .container {
  max-width: 1100px;
  margin: 0 auto;
}

.types-business-loan h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.types-business-loan h2 span {
  color: #007bff;
}

.types-business-loan .subtitle {
  text-align: center;
  font-size: 17px;
  margin-bottom: 30px;
  color: #555;
  font-style: italic;
}

.loan-types-list {
  list-style: none;
  padding: 0;
}

.loan-types-list li {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  position: relative;
  padding-left: 25px;
}

.loan-types-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #111;
  font-size: 28px;
  line-height: 20px;
}

/* ! ======================= media Quary =================================== */
@media (max-width: 768px) {
  .types-business-loan h2 {
    font-size: 28px;
  }

  .loan-types-list li {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .types-business-loan h2 {
    font-size: 24px;
  }
}

/* &=============== BUSINESS LOAN — IMPORTANT POINTS ===================== */

/* Improved Section Styling */
.businessloan-important-points {
  padding: 60px 120px;
  background: #f7f9fc;
  /* soft grey background */
}

.businessloan-important-points .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #0a2a5c;
  margin-bottom: 10px;
}

.businessloan-important-points .intro-text {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 15px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 35px;
}

/* Cards */
.info-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #0164e7;
}

.info-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0b2c61;
  margin-bottom: 15px;
}

.info-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.info-card ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
}

.tick {
  width: 18px;
  height: 18px;
  background: #0164e7;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  position: relative;
}

.tick::after {
  content: "✔";
  color: #fff;
  font-size: 11px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loan-info-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-heading {
  font-size: 32px;
  font-weight: 700;
  color: #0a2a5a;
  margin-bottom: 10px;
}

.section-subheading {
  font-size: 15px;
  color: #555;
  margin-bottom: 40px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* CARD STYLE */
.info-card {
  position: relative;
  background: #fff;
  padding: 25px 25px 30px;
  border-left: 5px solid #0a57ff;
  /* Your brand blue */
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0, 89, 255, 0.25);
  border-color: #003b9b;
}

/* CARD NUMBER BADGE */
.card-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  background: #0a57ff;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 89, 255, 0.4);
}

/* ICON STYLE */
.card-icon {
  font-size: 34px;
  color: #0a57ff;
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0a2a5a;
}

.info-card ul {
  padding-left: 0;
  list-style: none;
  text-align: left;
}

.info-card ul li {
  margin-bottom: 10px;
  font-size: 14.5px;
  color: #444;
  padding-left: 25px;
  position: relative;
}

/* Custom tick bullet */
.info-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0a57ff;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* &============================== FAQ SECTION ============================ */
.faq-section {
  padding: 70px 20px;
  /* background: #fff; */
  background: var(--secondary-color);
}

.faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #003f7f;
  margin-bottom: 40px;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 18px;
  padding: 0px;
  border-left: 5px solid #007bff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: 0 4px 14px rgba(0, 118, 255, 0.25);
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  position: relative;
}

.faq-number {
  background: #007bff;
  color: #fff;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.faq-header h3 {
  flex: 1;
  font-size: 18px;
  color: #003f7f;
  font-weight: 600;
}

.faq-header .icon {
  font-size: 20px;
  font-weight: 700;
  color: #003f7f;
  transition: 0.3s;
}

.faq-body {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

/* Active State */
.faq-item.active .faq-body {
  max-height: 500px;
  padding: 15px 20px 20px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
  color: #007bff;
}

/* Responsive */
@media (max-width: 600px) {
  .faq-title {
    font-size: 26px;
  }

  .faq-header h3 {
    font-size: 16px;
  }
}

/*&===================== CTA Section ===========================================*/
.cta {
  padding: 4rem 2rem;
  /* background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%); */
  background: linear-gradient(360deg, var(--gradient-start) 0%, #081a38 100%);
  /* background-image: url('./Images/Borrowers-can-take-loans-from-moneylenders-using-t_1683283036417_1698232122593.jpg');
        background-size: cover; */

  /* color: var(--bg); */
  color: var(--white);
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
  background: var(--white);
  /* background: #bed600; */
  color: #082362;
  padding: 1rem 3rem;
  border: none;
  border-radius: 40px;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/*& ===================== CONTACT SECTION ===================== */
.contact-section {
  background: #052b52;
  padding: 70px 20px;
  color: #fff;
  /* font-family:"Poppins", sans-serif; */
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-subtitle {
  /* color: #feb704; */
  color: #bed600;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.contact-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.contact-subtitle2 {
  font-size: 20px;
  font-weight: 600;
  color: #d0e2ff;
  margin-bottom: 18px;
}

.contact-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #d9e6ff;
  max-width: 550px;
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #0d3b6b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.social-icons a:hover {
  /* background: #feb704;
  color: #06295d; */
  background: #bed600;
  color: #34103e;
}

/* RIGHT SIDE */
.contact-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-box {
  display: flex;
  gap: 18px;
  background: #0d3a66;
  padding: 20px;
  border-radius: 10px;
  align-items: center;
  transition: 0.3s;
}

.contact-box:hover {
  transform: translateX(6px);
  background: #114a87;
}

.icon-wrapper {
  background: #fff;
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #003474;
  font-weight: 700;
}

.contact-box h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.contact-box p {
  margin: 2px 0 0;
  color: #d5e3ff;
}

/* Responsive */
@media (max-width: 800px) {
  .contact-container {
    flex-direction: column;
    text-align: left;
  }

  .contact-title {
    font-size: 28px;
  }
}

/*^========================== Footer =====================================================*/

.footer-main {
  background: #001a4d;
  color: #ffffff;
  padding: 70px 40px 60px;
  font-size: 14px;
}

/* Shared grid */
.footer-row {
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* Top row: About | Legal | Contact */
.footer-top {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 40px;
}

/* Bottom row: Quick Links | Loans | Cards + Insurance */
.footer-bottom {
  grid-template-columns: repeat(3, 1fr);
}

/* Columns */
.footer-col h3 {
  font-size: 25px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-col p {
  line-height: 1.7;
  color: var(--white);
  margin: 0 0 8px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a {
  color: var(--white);
  font-size: 16px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-col ul li a:hover {
  color: #bed600;
}

/* Cards + Insurance stacked spacing */
.stacked-title {
  margin-top: 20px;
}

/* Copyright / legal line shown under footer columns */
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  background: #001a4d;
  display: block;
  padding: 12px 0 8px 0;
  letter-spacing: 0.5px;
  margin-top: 48px;
}

/* Responsive */

/* Footer responsive: stack columns on smaller screens */
@media (max-width: 900px) {
  .footer-top,
  .footer-bottom {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .footer-main {
    padding: 56px 32px;
  }

  .footer-col h3 {
    font-size: 20px;
  }

  .footer-col p,
  .footer-col ul li {
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-main {
    padding: 40px 18px;
  }

  .footer-col h3 {
    font-size: 18px;
  }

  .footer-col p,
  .footer-col ul li {
    font-size: 13px;
  }

  .footer-legal {
    font-size: 13px;
    padding: 10px 12px;
    margin-top: 24px;
  }
}

/* !===================================================================== */
/* !                           Media quary                                */
/* !===================================================================== */

/* Responsive */
@media (max-width: 900px) {
  .business-hero {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
  }

  .business-hero-content {
    max-width: 100%;
  }

  .business-hero-image {
    width: 100%;
    margin-top: 30px;
  }

  .business-hero-image img {
    border-radius: 20px;
  }
}

/* ======================= 4K LARGE SCREENS ======================= */
@media (min-width: 1600px) {
  .business-hero-content h1 {
    font-size: 48px;
  }

  .business-hero-content p {
    font-size: 20px;
  }

  .apply-btn {
    font-size: 20px;
    padding: 14px 34px;
  }
}

/* ======================= LARGE DESKTOP (1200px – 1599px) ======================= */
@media (max-width: 1599px) {
  .business-hero-content h1 {
    font-size: 42px;
  }

  .business-hero-content p {
    font-size: 18px;
  }
}

/* ======================= MEDIUM DESKTOP (992px – 1199px) ======================= */
@media (max-width: 1199px) {
  .business-hero {
    padding: 50px 30px;
  }

  .business-hero-content h1 {
    font-size: 36px;
  }

  .business-hero-image img {
    border-top-left-radius: 60px;
  }
}

/* ======================= TABLET LANDSCAPE (768px – 991px) ======================= */
@media (max-width: 991px) {
  .business-hero {
    flex-direction: column;
    text-align: center;
  }

  .business-hero-content {
    max-width: 100%;
  }

  .business-hero-image {
    width: 100%;
    margin-top: 25px;
  }

  .business-hero-image img {
    border-radius: 25px;
  }
}

/* ======================= TABLET PORTRAIT (600px – 767px) ======================= */
@media (max-width: 767px) {
  .business-hero-content h1 {
    font-size: 30px;
  }

  .business-hero-content p {
    font-size: 16px;
  }

  .apply-btn {
    font-size: 16px;
    padding: 10px 24px;
  }
}

/* ======================= MOBILE LARGE (480px – 599px) ======================= */
@media (max-width: 599px) {
  .business-hero {
    padding: 40px 20px;
  }

  .business-hero-content h1 {
    font-size: 28px;
  }
}

/* ======================= MOBILE MID (400px – 479px) ======================= */
@media (max-width: 479px) {
  .business-hero-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .apply-btn {
    font-size: 15px;
    padding: 10px 22px;
  }
}

/* ======================= SMALL MOBILE (up to 399px) ======================= */
@media (max-width: 399px) {
  .business-hero-content h1 {
    font-size: 24px;
  }

  .business-hero-content p {
    font-size: 14px;
  }

  .apply-btn {
    font-size: 14px;
    padding: 9px 20px;
  }

  .business-hero {
    padding: 30px 15px;
  }
}

/* =========================================================
   RESPONSIVE DESIGN & MOBILE MENU (New Addition)
========================================================= */

/* --- HAMBURGER MENU ICON (Hidden on Desktop) --- */
.menu-toggle {
  display: none;
  /* Flex on mobile */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 2000;
  margin-right: 20px;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}

/* Animate Hamburger to Cross */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ================= MEDIA QUERIES ================= */

@media (max-width: 900px) {
  /* --- TOP BAR --- */
  .top-bar {
    height: auto;
    flex-direction: column;
    padding: 10px;
    gap: 10px;
    text-align: center;
  }

  .company-name {
    margin: 0;
    justify-content: center;
  }

  .company-logo {
    margin-left: 0;
    height: 50px;
  }

  .top-bar .info {
    display: none;
    /* Hide info on smaller screens */
  }

  /* --- NAVIGATION --- */
  nav {
    justify-content: space-between;
    /* Space for burger */
    padding: 15px 20px;
    align-items: center;
    position: relative;
  }

  .menu-toggle {
    display: flex;
    /* Show hamburger */
  }

  nav ul {
    position: fixed;
    top: 0;
    left: -100%;
    /* Hidden off-screen */
    width: 280px;
    height: 100vh;
    background: #003474;
    flex-direction: column;
    gap: 0;
    padding-top: 80px;
    transition: 0.3s ease;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1500;
    overflow-y: auto;
  }

  nav ul.active {
    left: 0;
    /* Slide in */
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 15px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    color: #fff;
  }

  /* Dropdowns MOBILE Styles */
  .dropdown-menu {
    position: static;
    display: none;
    background: #ffffff;
    box-shadow: none;
    width: 100%;
    padding-left: 0;
  }

  .dropdown-menu li a {
    color: #1a1a1a !important;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding-left: 40px;
    font-size: 15px;
  }

  .dropdown-menu li a:hover {
    color: #c4d600 !important;
    background: #ffffff;
    padding-left: 45px;
  }

  /* Show when hovered OR when active class is added via JS */
  .dropdown:hover .dropdown-menu,
  .dropdown.active .dropdown-menu {
    display: block;
  }

  /* --- SECTIONS --- */
  .business-hero-section {
    height: auto;
    padding: 80px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
  }

  .business-content-wrapper {
    width: 100%;
    padding: 0;
  }

  .business-hero-section h1 {
    font-size: 32px;
  }

  .getloan-container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .getloan-content {
    text-align: center;
  }

  .getloan-form {
    width: 100%;
    max-width: 100%;
  }

  .card-bottom-row {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .data-grid {
    justify-content: center;
  }

  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .business-hero-section h1 {
    font-size: 28px;
  }

  .getloan-content h1 {
    font-size: 32px;
  }

  nav ul {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 20px;
  }

  .card-top-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
