body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  background: var(--bg-color);
  color: var(--text-color);
  transition: background 0.4s, color 0.4s;
}

/* loan hero section start   */
/* CSS */
.website_dev_hero_section_2025 {
  width: 100%;
  height: 50vh;
  background-image: url("/assets/images/about-us-hero-banner.webp"); /* replace with actual image path */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.website_dev_hero_overlay_2025 {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.website_dev_hero_content_2025 {
  text-align: center;
  color: #fff;
}

.website_dev_hero_title_2025 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

.website_dev_hero_breadcrumbs_2025 {
  font-size: 16px;
}

.website_dev_hero_breadcrumbs_2025 a {
  color: #ff3c3c;
  text-decoration: none;
}

.website_dev_hero_breadcrumbs_2025 a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .website_dev_hero_section_2025 {
    height: 40vh;
  }

  .website_dev_hero_title_2025 {
    font-size: 28px;
  }

  .website_dev_hero_breadcrumbs_2025 {
    font-size: 14px;
  }
}

/* heros ection end  */

/* loan hero section end  */

/* loan about section start  */
.car-loan-info-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 8%;
  gap: 10px;
  flex-wrap: wrap;
}

.car-loan-info-image {
  flex: 1;
  text-align: center;
}

.car-loan-info-image img {
  max-width: 300px;
  width: 100%;
}

.car-loan-info-content {
  flex: 2;
}

.car-loan-info-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.car-loan-info-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
  margin-bottom: 20px;
}

.car-loan-info-highlight {
  color: #f1c40f;
  font-weight: bold;
}

/* Full-width bottom paragraph */
.car-loan-info-fullwidth {
  width: 100%;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .car-loan-info-section {
    flex-direction: column;
    text-align: center;
    padding: 30px 5%;
  }

  .car-loan-info-image img {
    display: block;
    margin: 0 auto 20px;
  }

  .car-loan-info-title {
    font-size: 1.8rem;
  }

  .car-loan-info-content {
    text-align: justify;
  }
}

/* loan about section end  */
/* why choose section star  */
.car-loan-why-section {
  background: #fff6eb; /* exact light background */
  padding: 50px 8%;
  text-align: center;
}

.car-loan-why-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.car-loan-why-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.car-loan-why-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Hover effect for all cards */
.car-loan-why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.car-loan-why-card img {
  max-width: 80px;
  margin-bottom: 20px;
}

.car-loan-why-card-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.car-loan-why-card-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Tablet */
@media (max-width: 992px) {
  .car-loan-why-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .car-loan-why-container {
    grid-template-columns: 1fr;
  }
  .car-loan-why-section {
    padding: 30px 5%;
  }
  .car-loan-why-title {
    font-size: 1.8rem;
  }
  .car-loan-why-card img {
    max-width: 60px;
  }
}

/* why choose section end  */

/* refinance section start  */
.refinance-info-content,
.refinance-info-fullwidth {
  width: 100%;
  max-width: 1200px;
  margin: 10px auto;
  padding: 20px;
  box-sizing: border-box; /* Prevents overflow */
}

.refinance-info-title {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
}

.refinance-info-content p,
.refinance-info-fullwidth {
  font-size: 16px;
  line-height: 1.7;
  color: #000000;
  text-align: center;
  word-wrap: break-word; /* Prevents text from breaking layout */
}

/* ===================== */
/* TABLET VIEW */
/* ===================== */
@media (max-width: 768px) {
  .refinance-info-content,
  .refinance-info-fullwidth {
    max-width: 100%; /* Full width on tablet */
    padding: 15px;
  }
  .refinance-info-title {
    font-size: 22px;
  }
  .refinance-info-content p,
  .refinance-info-fullwidth {
    font-size: 14px;
  }
}

/* ===================== */
/* MOBILE VIEW */
/* ===================== */
@media (max-width: 480px) {
  .refinance-info-content,
  .refinance-info-fullwidth {
    max-width: 100%; /* Full width on mobile */
    padding: 10px;
  }
  .refinance-info-title {
    font-size: 20px;
  }
  .refinance-info-content p,
  .refinance-info-fullwidth {
    font-size: 13px;
  }
}

/* re finance section end  */
