body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Outfit, sans-serif;
}
.nav-link.active,
.nav-link::after,
.nav-link:hover,
.navbar-brand i {
  background: var(--secondary-gradient);
}
.cta-section h2,
.hero-section h1 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.copyright,
.preloader-content,
.section-title {
  text-align: center;
}
.author-img,
.blog-detail-img,
.blog-img,
.recent-post-img,
.testimonial-img {
  object-fit: cover;
}
.category-link,
.category-list a,
.footer-links a,
.popular-list a,
.share-btn,
.social-icons a,
.tag:hover,
.text-white,
.toc-nav a {
  text-decoration: none;
}
:root {
  --primary-gradient: linear-gradient(135deg, #1a4b8c 0%, #2c6cc0 100%);
  --secondary-gradient: linear-gradient(135deg, #0daa8e 0%, #1bd4b3 100%);
  --accent-color: #0daa8e;
  --accent-light: rgba(13, 170, 142, 0.1);
  --dark-blue: #0d2a5c;
  --light-gray: #f8fafc;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav-link,
.navbar {
  transition: var(--transition);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  color: #555;
  line-height: 1.7;
  overflow-x: hidden;
  background-color: #fefefe;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--dark-blue);
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s, visibility 0.6s;
}
.hero-section,
.navbar-brand {
  align-items: center;
  display: flex;
}
.loader {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}
.loader-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #fff;
  animation: 1s linear infinite spin;
}
.loader-circle:nth-child(2) {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-top-color: rgba(255, 255, 255, 0.8);
  animation: 1.2s linear infinite reverse spin;
}
.loader-circle:nth-child(3) {
  width: 50%;
  height: 50%;
  top: 25%;
  left: 25%;
  border-top-color: rgba(255, 255, 255, 0.6);
  animation: 1.5s linear infinite spin;
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.preloader-text {
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 1.1rem;
  margin-top: 20px;
}
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 18px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}
.navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
  font-weight: 800;
  font-size: 1.9rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.navbar-brand i {
  margin-right: 10px;
  font-size: 1.8rem;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-link {
  font-weight: 600;
  margin: 0 5px;
  color: var(--dark-blue) !important;
  position: relative;
  padding: 8px 12px !important;
  border-radius: 6px;
}
.nav-link.active,
.nav-link:hover {
  color: #fff !important;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 3px;
  border-radius: 3px;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.card:hover::before,
.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}
.navbar-toggler {
  border: none;
  padding: 0;
  font-size: 1.5rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.hero-section {
  position: relative;
  background: linear-gradient(
        135deg,
        rgba(26, 75, 140, 0.95) 0,
        rgba(44, 108, 192, 0.9) 100%
      )
      center/cover fixed,
    url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602091/html/assets/images/photo-1554224155-6726b3ff858f.jpg')
      center/cover fixed;
  color: #fff;
  padding: 180px 0 120px;
  min-height: 100vh;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-size: cover;
  background-repeat: no-repeat;
}
.cta-content,
.hero-content {
  position: relative;
  z-index: 2;
}
.btn,
.btn-primary {
  background: var(--secondary-gradient);
  transition: var(--transition);
  z-index: 1;
  padding: 15px 35px;
  font-weight: 600;
}
.hero-section h1 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 25px;
  line-height: 1.2;
}
.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 35px;
  max-width: 650px;
  opacity: 0.9;
}
.btn-primary {
  border: none;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}
.btn {
  border: none;
  border-radius: 35px 20px;
  position: relative;
  overflow: hidden;
  color: #fff !important;
}
.calculator-container,
.card,
.contact-form,
.contact-info {
  background: #fff;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
  transition: 0.4s;
  z-index: -1;
}
.btn-outline-light,
.btn-primary::before,
.card {
  transition: var(--transition);
}
.btn:hover::before {
  transform: translateX(0);
  color: #fff;
}
.btn:hover,
.calc-result h4,
.result-box h4 {
  color: #fff;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0c957c 0, #18b89c 100%);
  z-index: -1;
  opacity: 0;
}
.card::before,
.section-title h2::after {
  height: 5px;
  content: "";
  position: absolute;
}
.calculator-container::before,
.card::before,
.card:hover .card-icon,
.section-title h2::after {
  background: var(--secondary-gradient);
}
.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(13, 170, 142, 0.3);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-outline-light {
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 35px 20px;
  border-width: 2px;
}
.calculator-container,
.contact-form,
.contact-info {
  border-radius: 20px;
  padding: 40px;
}
.btn-outline-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(255, 255, 255, 0.2);
  color: #fff;
}
.faq-content,
.section-padding {
  padding: 60px 0;
}
.section-title {
  margin-bottom: 70px;
  position: relative;
}
.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  font-size: 2.8rem;
}
.section-title h2::after {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  border-radius: 5px;
}
.section-title p {
  font-size: 1.2rem;
  color: #777;
  max-width: 700px;
  margin: 20px auto 0;
}
.card {
  border: none;
  border-radius: 15px;
  height: 100%;
}
.card:hover {
  transform: translateY(-15px);
  box-shadow: var(--card-shadow-hover);
}
.card::before {
  top: 0;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transition: transform 0.5s;
}
.card-icon,
.contact-form .form-control,
.footer-links a,
.scroll-top,
.social-icons a,
.testimonial-card {
  transition: var(--transition);
}
.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 20%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--accent-color);
  font-size: 34px;
}
.card:hover .card-icon {
  color: #fff;
  transform: rotateY(180deg);
}
.calculator-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
}
.form-range::-webkit-slider-thumb {
  background: var(--secondary-gradient);
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.form-range::-moz-range-thumb {
  background: var(--secondary-gradient);
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.result-box {
  background: var(--primary-gradient);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.result-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  opacity: 0.2;
}
.result-value {
  font-size: 3rem;
  font-weight: 800;
  margin: 10px 0;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 35px;
  box-shadow: var(--card-shadow);
  margin: 15px 0;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-hover);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: var(--accent-light);
  line-height: 1;
  z-index: 0;
}
.cta-section::before,
.footer::before {
  top: 0;
  width: 100%;
  content: "";
  position: absolute;
  left: 0;
}
.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 20px;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.stars {
  color: #ffc107;
  font-size: 1.1rem;
}
.cta-section {
  position: relative;
  background: linear-gradient(
        135deg,
        rgba(13, 42, 92, 0.95) 0,
        rgba(26, 75, 140, 0.9) 100%
      )
      center/cover fixed,
    url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602091/html/assets/images/photo-1554224155-8d04cb21cd6c.jpg')
      center/cover fixed;
  color: #fff;
  padding: 120px 0;
  overflow: hidden;
}
.cta-section::before {
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230daa8e' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.2;
}
.cta-section h2 {
  color: #fff;
  font-size: 3rem;
}
.contact-form .form-control {
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  margin-bottom: 0;
  font-size: 1rem;
}
.scroll-top,
.social-icons a {
  border-radius: 50%;
  color: #fff;
}
.contact-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(13, 170, 142, 0.15);
}
.contact-form label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-blue);
}
.footer {
  background: var(--dark-blue);
  color: #b0c4d9;
  padding: 100px 0 30px;
  position: relative;
}
.footer::before {
  height: 10px;
  background: var(--secondary-gradient);
}
.footer h5 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 15px;
}
.footer h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
}
.scroll-top,
.social-icons a:hover {
  background: var(--secondary-gradient);
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #b0c4d9;
  display: inline-block;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}
.business-size-card:hover,
.car-type-card:hover,
.process-step:hover,
.property-type-card:hover,
.related-post-card:hover,
.scroll-top:hover,
.social-icons a:hover {
  transform: translateY(-5px);
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.08);
  margin-right: 12px;
  font-size: 1.1rem;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 60px;
  font-size: 0.95rem;
}
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(13, 170, 142, 0.3);
}
.brand-item,
.business-size-card {
  transition: 0.3s;
  text-align: center;
}
.scroll-top.active {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  box-shadow: 0 10px 25px rgba(13, 170, 142, 0.4);
}
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}
.floating-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}
.floating-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
}
.stats-container {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 50px 30px;
  margin-top: -100px;
  position: relative;
  z-index: 5;
  box-shadow: var(--card-shadow);
}
.process-step,
.sidebar-card {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.stat-value {
  font-size: 3rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.stat-label {
  font-weight: 600;
  color: var(--dark-blue);
}
@media (max-width: 1200px) {
  .hero-section h1 {
    font-size: 3.2rem;
  }
  .section-title h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 992px) {
  .cta-section,
  .hero-section {
    background-attachment: scroll;
  }
  .hero-section {
    padding: 150px 0 100px;
  }
  .hero-section h1 {
    font-size: 2.8rem;
  }
}
.car-loan-hero {
  background: linear-gradient(135deg, rgba(26, 75, 140, 0.95) 0,rgba(44, 108, 192, 0.9) 100%)
    center/cover fixed,url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602091/html/assets/images/Featured.jpeg')
    center/cover fixed;
  padding: 150px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.blog-hero h1,
.business-loan-hero h1,
.car-loan-hero h1,
.education-loan-hero h1,
.home-loan-hero h1,
.lap-hero h1,
.personal-loan-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}
.feature-icon,
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
}
.car-calc,
.education-calc,
.funding-calc,
.property-calc {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.car-type-card,
.property-type-card {
  text-align: center;
  padding: 25px;
  border-radius: 15px;
  background: #fff;
  border: 2px solid #e0e0e0;
  transition: 0.3s;
  height: 100%;
}
.car-type-card:hover {
  border-color: #1e40af;
}
.car-icon {
  font-size: 2.5rem;
  color: #1e40af;
  margin-bottom: 15px;
}
.car-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e40af;
  padding: 5px 15px;
  border-radius: 20px;
  margin: 5px;
  font-size: 0.9rem;
}
.insurance-banner {
  background: linear-gradient(135deg, #dbeafe 0, #e0f2fe 100%);
  border-left: 4px solid #1e40af;
  padding: 20px;
  border-radius: 0 10px 10px 0;
  margin: 20px 0;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.brand-item {
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}
.brand-item:hover {
  border-color: #1e40af;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.brand-logo {
  font-size: 2rem;
  color: #1e40af;
  margin-bottom: 10px;
}
.whycarchoose {
  padding: 10px;
}
.business-loan-hero {
  background: linear-gradient(135deg, #1e3a8a 0, #0f766e 100%);
  padding: 150px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.business-size-card {
  padding: 30px;
  border-radius: 15px;
  background: #fff;
  border: 2px solid transparent;
  height: 100%;
}
.business-size-card:hover {
  border-color: #1e3a8a;
}
.size-icon {
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 20px;
}
.home-loan-hero,
.lap-hero {
  color: #fff;
  position: relative;
  overflow: hidden;
}
.home-loan-hero {
  background: linear-gradient(135deg, #2a9d8f 0, #1d3557 100%);
  padding: 150px 0 80px;
}
.lap-hero {
  background: linear-gradient(135deg, #059669 0, #065f46 100%);
  padding: 150px 0 80px;
}
.property-type-card:hover {
  border-color: #059669;
}
.property-icon {
  font-size: 2.5rem;
  color: #059669;
  margin-bottom: 15px;
}
.loan-badge {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  padding: 5px 15px;
  border-radius: 20px;
  margin: 5px;
  font-size: 0.9rem;
}
.valuation-banner {
  background: linear-gradient(135deg, #d1fae5 0, #ecfdf5 100%);
  border-left: 4px solid #059669;
  padding: 20px;
  border-radius: 0 10px 10px 0;
  margin: 20px 0;
}
.loan-to-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.loan-to-value .progress {
  height: 25px;
  flex-grow: 1;
  margin: 0 15px;
}
.blog-hero {
  position: relative;
  overflow: hidden;
}
.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
}
.blog-date {
  color: #6b7280;
  font-size: 0.9rem;
}
.blog-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}
.blog-excerpt {
  color: #4b5563;
  margin-bottom: 20px;
  line-height: 1.6;
}
.read-time {
  font-size: 0.9rem;
  color: #9ca3af;
}
.sidebar-card {
  border: none;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}
.sidebar-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e5e7eb;
}
.category-list {
  list-style: none;
  padding: 0;
}
.category-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
}
.category-list li:last-child,
.eligibility-list li:last-child {
  border-bottom: none;
}
.category-list a {
  color: #374151;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.category-list a:hover {
  color: #4338ca;
}
.category-count {
  background: #f3f4f6;
  color: #6b7280;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}
.recent-post {
  display: flex;
}
.recent-post-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.4;
}
.recent-post-date {
  font-size: 0.8rem;
  color: #9ca3af;
}
.search-box {
  position: relative;
}
.search-box input {
  padding-right: 50px;
  border-radius: 10px;
}
.search-box button {
  position: absolute;
  right: 5px;
  background: #4338ca;
  color: #fff;
  border: none;
  border-radius: 10px;
}
.tag {
  color: #374151;
}
.pagination .active .page-link,
.pagination .page-link:hover {
  background: #4338ca;
  color: #fff;
}
.personal-loan-hero {
  background: linear-gradient(135deg, #4361ee 0, #3a0ca3 100%);
  padding: 150px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.education-loan-hero {
  background: linear-gradient(135deg, rgba(26, 75, 140, 0.95) 0,rgba(44, 108, 192, 0.9) 100%)
    center/cover fixed,url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602091/html/assets/images/Featured.jpeg')
    center/cover fixed;

  padding: 150px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 30px;
}
.feature-icon,
.step-number {
  color: #fff;
  display: flex;
  align-items: center;
}
.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 15px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}
.eligibility-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.process-step {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  background: #fff;
  height: 100%;
  transition: transform 0.3s;
}
.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-gradient) 0, #4a148c 100%);
  border-radius: 50%;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 20px;
}
.comparison-table th {
  background: #f8f9fa;
  font-weight: 600;
}
.highlight-box {
  border-left: 4px solid var(--primary-gradient);
}
.loan-type-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}
.loan-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.loan-type-icon {
  font-size: 3rem;
  color: var(--dark-blue);
  margin-bottom: 20px;
}
.interest-rate-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-gradient);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
}
.blog-sidebar,
.faq-sidebar,
.toc-nav {
  position: sticky;
  top: 100px;
}
.calc-result {
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
}
.country-card {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #e0e0e0;
  transition: 0.3s;
  height: 100%;
}
.country-card:hover {
  border-color: var(--dark-blue);
  transform: translateY(-5px);
}
.country-flag {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.course-badge {
  display: inline-block;
  background: #e8eaf6;
  color: var(--dark-blue);
  padding: 5px 15px;
  border-radius: 20px;
  margin: 5px;
  font-size: 0.9rem;
}
.moratorium-banner {
  background: linear-gradient(135deg, #e8eaf6 0, #f3e5f5 100%);
  border-left: 4px solid var(--primary-gradient);
  padding: 20px;
  border-radius: 0 10px 10px 0;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.4rem;
  }
  .section-padding {
    padding: 80px 0;
  }
  .calculator-container,
  .result-box {
    padding: 30px 20px;
  }
  .stats-container {
    margin-top: -60px;
  }
  .blog-hero h1,
  .business-loan-hero h1,
  .car-loan-hero h1,
  .education-loan-hero h1,
  .home-loan-hero h1,
  .lap-hero h1,
  .personal-loan-hero h1 {
    font-size: 2.5rem;
  }
  .blog-hero,
  .business-loan-hero,
  .car-loan-hero,
  .education-loan-hero,
  .home-loan-hero,
  .lap-hero,
  .personal-loan-hero {
    padding: 120px 0 60px;
  }
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .loan-to-value {
    flex-direction: column;
    align-items: flex-start;
  }
  .loan-to-value .progress {
    width: 100%;
    margin: 10px 0;
  }
  .blog-img {
    height: 200px;
  }
}
.blog-hero {
   background: linear-gradient(135deg, rgba(26, 75, 140, 0.95) 0,rgba(44, 108, 192, 0.9) 100%)
    center/cover fixed,url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602091/html/assets/images/Featured.jpeg')
    center/cover fixed;
  color: #fff;
  padding: 120px 0 80px;
  margin-top: 80px;
}
.blog-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}
.blog-img {
  height: 220px;
  width: 100%;
}
.blog-meta {
  font-size: 0.9rem;
  color: #6c757d;
}
.blog-meta i {
  margin-right: 5px;
}
.blog-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(26, 35, 126, 0.1);
  color: var(--dark-blue);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.sidebar-widget {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.widget-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}
.recent-post {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f5f5f5;
}
.blog-category-badge,
.diagram-step,
.tag {
  display: inline-block;
}
.recent-post:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.recent-post-img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  margin-right: 15px;
}
.recent-post-content h6 {
  font-size: 0.95rem;
  margin-bottom: 5px;
}
.recent-post-content .date {
  font-size: 0.8rem;
  color: #6c757d;
}
.tag {
  padding: 5px 12px;
  background: #f8f9fa;
  border-radius: 20px;
  margin: 3px;
  font-size: 0.85rem;
  transition: 0.3s;
}
.faq-category-card,
.related-post-card,
.share-btn {
  transition: transform 0.3s;
}
.tag:hover {
  background: var(--primary-gradient);
  color: #fff;
}
.pagination .page-link {
  border: none;
  margin: 0 5px;
  border-radius: 8px;
  color: #495057;
}
.data-types-box,
.definition-box,
.last-updated {
  border-radius: 10px;
  border-left: 4px solid var(--primary-gradient);
}
.pagination .page-item.active .page-link {
  background: var(--primary-gradient);
  color: #fff;
}
.blogdetailhead,
.faqhead,
.newshead,
.termshead {
  color: #fff;
  font-size: 2.5rem;
}
.privacy-hero,
.terms-hero {
   background: linear-gradient(135deg, rgba(26, 75, 140, 0.95) 0,rgba(44, 108, 192, 0.9) 100%)
    center/cover fixed,url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602091/html/assets/images/Featured.jpeg')
    center/cover fixed;
  color: #fff;
  padding: 120px 0 60px;
  margin-top: 80px;
  text-align: center;
}
.privacy-content,
.terms-content {
  padding: 60px 0;
  line-height: 1.8;
}
.privacy-section,
.terms-section {
  margin-bottom: 50px;
}
.privacy-section h2,
.terms-section h2 {
  color: var(--dark-blue);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eaeaea;
}
.privacy-section h3,
.terms-section h3 {
  color: #283593;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.privacy-section p,
.terms-section p {
  margin-bottom: 20px;
  color: #555;
}
.blog-content ol,
.blog-content ul,
.privacy-section ol,
.privacy-section ul,
.terms-section ol,
.terms-section ul {
  margin-bottom: 25px;
  padding-left: 30px;
}
.privacy-section li,
.terms-section li {
  margin-bottom: 12px;
  color: #555;
}
.last-updated {
  background: #f8f9fa;
  padding: 20px;
  margin-bottom: 40px;
}
.data-types-box,
.definition-box {
  background: rgba(26, 35, 126, 0.05);
  padding: 25px;
  margin: 30px 0;
}
.data-types-box h4,
.definition-box h4 {
  color: var(--dark-blue);
  margin-bottom: 15px;
}
.contact-box {
  background: linear-gradient(135deg, var(--primary-gradient) 0, #283593 100%);
  color: #fff;
  padding: 40px;
  border-radius: 15px;
  margin: 50px 0 30px;
  text-align: center;
}
.highlight-box {
  background: #fff8e1;
  border: 1px solid #ffd54f;
  border-radius: 10px;
  padding: 20px;
  margin: 30px 0;
}
.policy-update,
.table-of-contents {
  background: #f8f9fa;
  margin-bottom: 40px;
}
.highlight-box h5 {
  color: #ff8f00;
  margin-bottom: 10px;
}
.table-of-contents {
  border-radius: 12px;
  padding: 30px;
}
.data-flow-diagram h4,
.table-of-contents h3 {
  color: var(--dark-blue);
  margin-bottom: 20px;
}
.privacy-section h4 {
  color: #3949ab;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.rights-box,
.rights-box h3 {
  color: #1b5e20;
}
.policy-update {
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-gradient);
}
.rights-box {
  background: linear-gradient(135deg, #e8f5e9 0, #c8e6c9 100%);
  padding: 30px;
  border-radius: 15px;
  margin: 40px 0;
}
.cookie-table {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}
.cookie-table th {
  background: var(--primary-gradient);
  color: #fff;
  padding: 15px;
  text-align: left;
}
.category-link i,
.contact-card,
.faq-hero,
.faq-stats h3,
.no-results,
.stat-item,
.stats-grid {
  text-align: center;
}
.cookie-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
}
.cookie-table tr:nth-child(2n) {
  background: #f9f9f9;
}
.toc-nav {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}
.popular-questions h4,
.sidebar-categories h4,
.toc-nav h4 {
  color: var(--dark-blue);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}
.blog-content li,
.important-note h5,
.toc-nav li {
  margin-bottom: 10px;
}
.popular-list,
.toc-nav ul {
  list-style: none;
  padding-left: 0;
}
.toc-nav a {
  color: #555;
  transition: 0.3s;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}
.toc-nav a:hover {
  color: var(--dark-blue);
  padding-left: 10px;
}
.toc-nav a i {
  margin-right: 10px;
  color: var(--dark-blue);
}
.important-note {
  background: #fff3e0;
  border: 2px solid #ff9800;
  border-radius: 10px;
  padding: 25px;
  margin: 30px 0;
}
.important-note h5 {
  color: #ef6c00;
}
.contact-privacy {
  background: linear-gradient(135deg, var(--primary-gradient) 0, #283593 100%);
  color: #fff;
  padding: 40px;
  border-radius: 15px;
  margin: 50px 0 30px;
}
.contact-privacy h3 {
  color: #fff;
  margin-bottom: 20px;
}
.data-flow-diagram {
  background: #f5f7ff;
  border-radius: 15px;
  padding: 30px;
  margin: 40px 0;
  text-align: center;
}
.diagram-step {
  background: #fff;
  padding: 15px 25px;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.comment-form,
.faq-category-card,
.popular-questions,
.sidebar-categories {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.diagram-step:after {
  content: "→";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dark-blue);
  font-weight: 700;
}
.diagram-step:last-child:after {
  display: none;
}
.opt-out-box {
  background: #e3f2fd;
  border-radius: 10px;
  padding: 25px;
  margin: 30px 0;
}
.opt-out-box h4 {
  color: #1565c0;
}
.privacyhead {
  color: #fff !important;
  font-size: 2.5rem;
}
.blog-detail-hero {
   background: linear-gradient(135deg, rgba(26, 75, 140, 0.95) 0,rgba(44, 108, 192, 0.9) 100%)
    center/cover fixed,url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602091/html/assets/images/Featured.jpeg')
    center/cover fixed;
  color: #fff;
  padding: 140px 0 80px;
  margin-top: 80px;
}
.blog-detail-img {
  height: 500px;
  width: 100%;
  border-radius: 15px;
  margin: 40px 0;
}
.blog-detail-meta {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}
.blog-detail-meta i {
  margin-right: 8px;
}
.blog-category-badge {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
}
.blog-content {
  line-height: 1.8;
  font-size: 1.1rem;
}
.blog-content h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--dark-blue);
}
.blog-content h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #283593;
}
.blog-content p {
  margin-bottom: 25px;
}
.quote-box {
  background: rgba(26, 35, 126, 0.08);
  border-left: 4px solid var(--primary-gradient);
  padding: 30px;
  margin: 40px 0;
  border-radius: 0 10px 10px 0;
}
.quote-box p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark-blue);
  margin-bottom: 10px;
}
.author-info {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  margin: 50px 0;
}
.author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 25px;
}
.related-post-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}
.related-post-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.share-buttons {
  display: flex;
  gap: 10px;
  margin: 40px 0;
}
.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.share-btn:hover {
  transform: scale(1.1);
  color: #fff;
}
.fb {
  background: #3b5998;
}
.twitter {
  background: #1da1f2;
}
.linkedin {
  background: #0077b5;
}
.whatsapp {
  background: #25d366;
}
.comments-section {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 40px;
  margin: 60px 0 30px;
}
.comment-form {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  margin-top: 40px;
}
.faq-hero {
  background: linear-gradient(135deg, rgba(26, 75, 140, 0.95) 0,rgba(44, 108, 192, 0.9) 100%)
    center/cover fixed,url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602091/html/assets/images/Featured.jpeg')
    center/cover fixed;
  color: #fff;
  padding: 120px 0 80px;
  margin-top: 80px;
}
.faq-hero .search-box {
  max-width: 600px;
  margin: 40px auto 0;
}
.faq-category-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}
.faq-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.category-icon {
  width: 70px;
  height: 70px;
  background: rgba(26, 35, 126, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--dark-blue);
  font-size: 1.8rem;
}
.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  border-radius: 10px !important;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  background: #fff;
  border: none;
  padding: 20px;
  font-weight: 600;
  color: var(--dark-blue);
  font-size: 1.1rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: #f8f9fa;
  color: var(--dark-blue);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: #dee2e6;
}
.faq-accordion .accordion-body {
  padding: 20px;
  background: #f8f9fa;
  color: #555;
  line-height: 1.7;
}
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a237e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.sidebar-categories {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
}
.category-link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 8px;
  border-radius: 8px;
  color: #555;
  transition: 0.3s;
}
.contact-card,
.faq-stats {
  padding: 30px;
  border-radius: 15px;
}
.category-link:hover {
  background: rgba(26, 35, 126, 0.05);
  color: var(--dark-blue);
  padding-left: 20px;
}
.category-link.active {
  background: rgba(26, 35, 126, 0.1);
  color: var(--dark-blue);
  font-weight: 600;
}
.category-link i {
  margin-right: 12px;
  width: 20px;
}
.contact-card {
  background: linear-gradient(135deg, var(--primary-gradient) 0, #283593 100%);
  color: #fff;
  margin-top: 30px;
}
.contact-card h4 {
  color: #fff;
  margin-bottom: 15px;
}
.faq-stats {
  background: #f8f9fa;
  margin: 40px 0;
}
.faq-stats h3 {
  color: var(--dark-blue);
  margin-bottom: 25px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat-item {
  padding: 15px;
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 5px;
}
.stat-label {
  color: #666;
  font-size: 0.9rem;
}
.popular-questions {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}
.popular-list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}
.popular-list li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.popular-list a {
  color: #555;
  transition: color 0.3s;
  display: flex;
  align-items: flex-start;
}
.popular-list a:hover {
  color: var(--dark-blue);
}
.popular-list i {
  color: var(--dark-blue);
  margin-right: 10px;
  margin-top: 3px;
}
.no-results {
  padding: 60px 20px;
  display: none;
}
.no-results i {
  font-size: 4rem;
  color: #ccc;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .hero-section h1,
  .section-title h2 {
    font-size: 2rem;
  }
  .btn-outline-light,
  .btn-primary {
    padding: 12px 25px;
    font-size: 0.95rem;
    width: 100%;
    margin-bottom: 15px;
  }
  .hero-buttons {
    display: flex;
    flex-direction: column;
  }
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
