.hero-section {
  background: radial-gradient(circle at right, #114f3c, #062b21);
  padding: 90px 0;
  overflow: hidden;
}

/* TOP TEXT */
.hero-top-text {
  color: #f16827;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.hero-top-text .arrow {
  margin-right: 6px;
}

/* HEADING */
.hero-title {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-top: 10px;
}

/* PARAGRAPH */
.hero-text {
  color: #cfe3da;
  font-size: 16px;
  max-width: 520px;
}

/* USERS */
.hero-users-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 600;
}

.hero-users-wrap img {
  width: 130px;
}

/* BUTTON GROUP */
.hero-btn-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.btn-loan {
  background: #0dbb78;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-loan:hover {
  background: #0aa36a;
  color: #ffffff;
}

/* OUTLINE BUTTON */
.btn-about {
  border: 1.5px solid #f16827;
  color: #f16827;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-about:hover {
  background: #f16827;
  color: #062b21;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }
}
.hero-image-wrapper {
  position: relative;
  display: inline-block;
  z-index: 1;
}

/* Main Image */
.hero-main-img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}

/* Floating Icons */
.float-icon {
  position: absolute;
  width: 94px;
  z-index: 5;               
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
}

/* ICON POSITIONS */
.icon-1 {
  top: 5%;
  left: -40px;
}

.icon-2 {
  top: 15%;
  right: -35px;
}

.icon-3 {
  bottom: 15%;
  left: -45px;
}

.icon-4 {
  bottom: 5%;
  right: -30px;
}
@media (max-width: 768px) {
  .float-icon {
    width: 48px;
  }

  .icon-1,
  .icon-2,
  .icon-3,
  .icon-4 {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}


/* HERO */
.hero-section {
  position: relative;
  background: radial-gradient(circle at right, #114f3c, #062b21);
  padding: 40px 0;
  overflow: visible;
}

/* CATEGORY WRAPPER */
.loan-category-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -90px;
  z-index: 10;
}

/* OUTER WRAPPER */
.category-slider-outer {
  overflow: hidden;
  padding: 20px 60px;
}

/* SLIDER TRACK */
.category-slider {
  display: flex;
  gap: 25px;
  width: max-content;
  will-change: transform;
}

/* CARD */
.category-card {
  min-width: 170px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 15px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.category-card img {
  width: 46px;
  margin-bottom: 10px;
}

.category-card h6 {
  margin: 0;
  font-weight: 600;
  color: #062b21;
  font-size: 18px;
}

/* ARROWS */
.cat-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  z-index: 20;
}

.cat-arrow.left {
  left: 0;
}

.cat-arrow.right {
  right: 0;
}

/* GAP BELOW HERO */
.hero-gap {
  height: 130px;
}

/* MOBILE */
@media (max-width: 768px) {
  .loan-category-wrapper {
    bottom: -70px;
  }

  .category-slider-outer {
    padding: 15px 45px;
  }

  .category-slider {
    gap: 15px;
  }

  .category-card {
    min-width: 140px;
    padding: 18px 12px;
  }

  .category-card h6 {
    font-size: 16px;
  }

  .cat-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .hero-gap {
    height: 110px;
  }
}




/* ABOUT SECTION */
.about-us-section {
  padding: 90px 0;
  
  background: radial-gradient(circle at right, #ffffff, #ffffff);
}

/* IMAGE */
.about-img-wrap img {
  border-radius: 20px;
}

/* TAG */
.about-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #276357;
  margin-bottom: 10px;
}

/* TITLE */
.about-title {
  font-size: 40px;
  font-weight: 800;
  color: #062b21;
  line-height: 1.2;
  margin-bottom: 16px;
}

/* TEXT */
.about-text {
  font-size: 16px;
  color: #000a0a;
  margin-bottom: 25px;
  max-width: 520px;
}

/* LIST */
.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #00060a;
  margin-bottom: 12px;
}

/* ICON */
.list-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e9f6f1;
  color: #080000;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BUTTON */
.btn-about {
  display: inline-block;
  background: #0a4d3c;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
}

.btn-about:hover {
  background: #083c2f;
  color: #ffffff;
}


body {
  font-family: 'Segoe UI', sans-serif;
}

/* Section Background */
.process-section {
  background: radial-gradient(circle at top, #0f3d2e, #06291f);
  color: #fff;
}

/* Heading */
.process-tag {
  color: #f16827;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-title {
  font-size: 36px;
  font-weight: 700;
  margin: 15px 0;
}

.process-desc {
  max-width: 700px;
  margin: auto;
  color: #cfd8d3;
}

/* Steps */
.process-steps .step-item h5 {
  margin-top: 12px;
  font-weight: 600;
}

.process-steps .step-item p {
  font-size: 14px;
  color: #cfd8d3;
}

/* Icons */
.step-icon {
  width: 55px;
  height: 55px;
  border: 2px solid #f16827;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f16827;
  font-size: 20px;
}

/* Center Image */
.process-image {
  
  border-radius: 20px;
  padding: 30px;
  display: inline-block;
}

.process-image img {
  max-width: 100%;
  height: auto;
  border-radius: 5%;
}

.why-choose {
  padding: 90px 0;
  background: #fff;
}
/* WHY CHOOSE SECTION */
.why-choose {
    padding: 80px 0;
    overflow: hidden;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
}

.section-desc {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
}

/* Feature layout */
.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border: 2px dashed #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

/* Image */
.image-wrap {
    position: relative;
}

.main-img {
    max-width: 100%;
    height: auto;
}

/* Floating icons */
.float-icon {
    position: absolute;
    font-size: 22px;
}

.float-icon.one { top: 15%; left: 10%; }
.float-icon.two { top: 30%; right: 15%; }
.float-icon.three { bottom: 20%; right: 10%; }

/* Button */
.btn-read {
    display: inline-block;
    padding: 12px 30px;
    background: #0d6efd;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-read:hover {
    background: #ff8c1a;
    color: #fff;
}


/* MOBILE RESPONSIVE FIX */


@media (max-width: 991px) {

    .why-choose {
        padding: 60px 0;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon-circle {
        margin-bottom: 10px;
    }

    .image-wrap {
        margin-top: 40px;
    }

    /* Hide floating icons on mobile */
    .float-icon {
        display: none;
    }
}

@media (max-width: 576px) {

    .section-title {
        font-size: 24px;
    }

    .section-desc {
        font-size: 14px;
    }

    .btn-read {
        padding: 10px 24px;
        font-size: 14px;
    }
}

.section-tag {
  color: #0b7d5c;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #062b21;
  line-height: 1.2;
}

.section-desc {
  color: #6c757d;
  margin: 20px 0 30px;
  max-width: 520px;
}

.feature {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #0b7d5c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.feature h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.feature p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #6c757d;
}

.btn-read {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 26px;
  background: #0b7d5c;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

/* IMAGE + ANIMATION */
.image-wrap {
  position: relative;
  display: inline-block;
}

.main-img {
  width: 600px;
  animation: floatMain 4s ease-in-out infinite;
}

/* Floating icons */
.float-icon {
  position: absolute;
  font-size: 26px;
  animation: floatIcon 3s ease-in-out infinite;
}

.float-icon.one {
  top: 20%;
  left: -30px;
}

.float-icon.two {
  top: 10%;
  right: -20px;
  animation-delay: 1s;
}

.float-icon.three {
  bottom: 20%;
  right: 10px;
  animation-delay: 1.5s;
}

/* Animations */
@keyframes floatMain {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}



 body {
      background: #f5f6f7;
      font-family: "Segoe UI", sans-serif;
    }

    .section-title {
      font-weight: 700;
      color: #062b21;
    }

    .section-subtitle {
      color: #6c757d;
      font-size: 15px;
    }

    .testimonial-card {
      background: #dfdfdf;
      border-radius: 14px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      position: relative;
      height: 100%;
    }

    .stars {
      color: #f4b400;
      font-size: 14px;
      margin-bottom: 12px;
    }

    .testimonial-text {
      font-size: 15px;
      color: #6c757d;
      margin-bottom: 20px;
    }

    .client-info {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .client-info img {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      object-fit: cover;
    }

    .client-name {
      font-weight: 600;
      color: #062b21;
      margin: 0;
    }

    .client-role {
      font-size: 13px;
      color: #6c757d;
      margin: 0;
    }

    .quote-icon {
      position: absolute;
      right: 20px;
      bottom: 20px;
      font-size: 40px;
      color: #e9ecef;
    }

    .slider-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #dee2e6;
  font-size: 22px;
  color: #198754;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.slider-btn:hover {
  background: #198754;
  color: #fff;
}
.faq-section {
  background: #ffffff;
}

.faq-badge {
  color: #198754;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-title {
  font-weight: 700;
  color: #062b21;
  margin-bottom: 15px;
}

.faq-subtitle {
  color: #6c757d;
  margin-bottom: 25px;
  font-size: 15px;
}

.faq-img {
  max-width: 380px;
}

/* Custom Accordion */
.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
}

.custom-accordion .accordion-button {
  border-radius: 50px !important;
  background: #e9ecef;
  color: #062b21;
  font-weight: 600;
  padding: 15px 20px;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: #0f5132;
  color: #fff;
}

.custom-accordion .accordion-body {
  padding: 15px 20px;
  font-size: 14px;
  color: #6c757d;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}
/* Mobile fix for FAQ image */
@media (max-width: 767.98px) {

  .faq-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* Optional: reduce image size on mobile */
  .col-lg-6 .faq-img {
    max-width: 90%;
  }
}
@media (max-width: 767.98px) {
  .faq-img {
    max-height: 260px;
    object-fit: contain;
  }
}
/*footer*/

.footer {
  background: #062b21;
  color: #fff;
  padding: 60px 0 20px;
  font-family: 'Poppins', sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr; 
  gap: 60px; 
  margin-bottom: 40px;
}

/*  Logo Styling */
.footer-logo img {
  width: 180px;
  max-width: 100%;
  margin-bottom: 15px;
}

/* Text */
.footer p {
  color: #cfcfcf;
  line-height: 1.6;
}

/* Headings */
.footer h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

/* Links */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  text-decoration: none;
  color: #cfcfcf;
  transition: all 0.3s ease;
}

/* Smooth Hover */
.footer ul li a:hover {
  color: #f16827;
  padding-left: 6px;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  background: #114f3c;
  text-align: center;
  border-radius: 50%;
  margin-right: 8px;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #f16827;
  transform: translateY(-4px);
}
/* Contact Info Fix */
.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #cfcfcf;
}

.contact-info li i {
  color: #f16827;
  font-size: 16px;
}

.contact-info a {
  text-decoration: none;
  color: #cfcfcf;
  transition: 0.3s;
}

.contact-info a:hover {
  color: #f16827;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #cfcfcf;
  margin-left: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #f16827;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}


/* Navbar */
.navbar {
    background: linear-gradient(90deg, #024737, #022c23);
    padding: 10px 0;
}
/* Navbar link default style */
.navbar .nav-link {
    color: #ffffff;   /* keep your current white */
    transition: color 0.3s ease;
}

/* Hover color */
.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #ff8c1a !important;
}

/* Dropdown hover color */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: #ff8c1a;
    color: #ffffff;
}

/* Active link color */
.navbar .nav-link.active {
    color: #ff8c1a !important;
}


.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 57px;
    width: auto;
    display: block;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 12px;
}

.dropdown-menu {
    border-radius: 10px;
    padding: 12px;
    min-width: 220px;
    border: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

.register-btn {
    background: #f16827;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-left: 12px;
    text-decoration: none;
}

.register-btn:hover {
    background: #ff8c1a;
    color: #fff;
}

@media (max-width: 991px) {
    .navbar-brand img {
        height: 42px;
    }
}
/* about us stylings */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #062e26, #04362c);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-hero h1 {
    font-size: 76px;
    font-weight: 700;
}

.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin: 10px 0 0;
}

.breadcrumb-custom a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb-custom span {
    color: #f16827;
}

/* Illustration */
.hero-img {
    max-width: 100%;
}


    .about-hero h1 {
        font-size: 38px;
    }

    .hero-img {
        margin-top: 30px;
    }

/*why choose us*/
/* Section */
.why-choose {
    background: #ffffff;
    position: relative;
}

/* Tag */
.section-tag {
    color: #0f5b4c;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Title */
.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

/* Description */
.section-desc {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Features */
.feature-item {
    font-size: 16px;
    margin-bottom: 15px;
    color: #062b21;
}

/* Button */
.read-btn {
    display: inline-block;
    background: #0f5b4c;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: 0.3s ease;
}

.read-btn:hover {
    background: #0c4a3e;
    color: #ffffff;
}


/* Illustration */
.why-img {
    max-width: 90%;
}

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .why-choose {
        text-align: center;
    }

    .section-title {
        font-size: 26px;
    }

    .features {
        text-align: left;
        margin-top: 20px;
    }
}
/*about*/
/* Section */
.about-section {
    background: #f5f6f4;
}

/* Tag */
.section-tag {
    color: #0f5b4c;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Title */
.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #062b21;
    margin-bottom: 20px;
}

/* Description */
.section-desc {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
}

/* Feature box */
.feature-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-box .icon {
    width: 45px;
    height: 45px;
    background: #e6ece9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0f5b4c;
}

.feature-box h5 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #062b21;
}

.feature-box p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}



/* Image */
.about-img {
    max-width: 90%;
}

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-section {
        text-align: center;
    }

    .section-title {
        font-size: 26px;
    }

    .section-desc {
        margin: 0 auto;
    }

    .feature-box {
        justify-content: center;
        text-align: left;
    }
}
/* Section */
.process-section1 {
    background: linear-gradient(#ffffff, #ffffff);
    padding: 100px 0;
    position: relative;
}

/* Stats Box */
.stats-box {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 14px;
    
}

.stat-item {
    border-right: 1px dashed #ddd;
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon i {
    font-size: 48px;
    color: #0f5b4c;
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 38px;
    font-weight: 700;
    color: #062b21;
}

.stat-item p {
    font-size: 18px;
    color: #6b7280;
}

/* Section text */
.section-tag {
    color: #0f5b4c;
    font-weight: 600;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-top: 10px;
}

.section-desc {
    color: #6b7280;
    max-width: 600px;
    margin: auto;
}


/* Floating illustration */
.floating-illustration {
    position: absolute;
    right: 40px;
    bottom: 0;
    width: 160px;
}

/* Responsive */
@media (max-width: 992px) {
    .stat-item {
        border-right: none;
        border-bottom: 1px dashed #ddd;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .floating-illustration {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }
}
/* Card */
/* Section */
.process-area {
    background: #ffffff;
}

/* Outer card */
.process-outer {
    background: #ffffff;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid #d8ddd8;
    transition: 0.3s;
}

/* Inner card */
.process-inner {
    background: #f2f6f5;
    border-radius: 18px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

/* Hover effect */
.process-outer:hover {   
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Icon area */
.icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.icon-circle {
    width: 110px;
    height: 110px;
    background: #f4f6f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #0f5b4c;
}

.icon-circle i {
    font-size: 40px;
    color: #0f5b4c;
}

/* Step badge */
.step {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #0f5b4c;
    color: white;
    font-weight: 700;
    font-size: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text */
.process-inner h4 {
    font-size: 22px;
    font-weight: 700;
    color: #062b21;
    margin-bottom: 10px;
}

.process-inner p {
    color: #6b7280;
    font-size: 15px;
    max-width: 380px;
    margin: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .process-inner {
        padding: 40px 20px;
    }

    .icon-circle {
        width: 90px;
        height: 90px;
    }

    .icon-circle i {
        font-size: 30px;
    }
}
/*app*/
/* Full-width section background */
.app-section {
    width: 100%;
    background: linear-gradient(90deg, #f3f1ec, #eef2ef);
    padding: 100px 0;
}

/* Tag */
.section-tag1 {
    color: #0f5b4c;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-tag1 .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #f16827;
    border-radius: 50%;
    margin-right: 6px;
}

/* Title */
.section-title1 {
    font-size: 40px;
    font-weight: 700;
    color: #062b21;
    margin-bottom: 20px;
}

/* Description */
.section-desc {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Feature list */
.feature-list p {
    font-size: 16px;
    color: #062b21;
    margin-bottom: 12px;
}

/* Store buttons */
.store-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #0f5b4c;
    padding: 12px 22px;
    border-radius: 40px;
    text-decoration: none;
    color: #0f5b4c;
    font-weight: 600;
    transition: 0.3s;
}

.store-btn i {
    font-size: 28px;
}

.store-btn small {
    display: block;
    font-size: 11px;
    font-weight: 500;
}

.store-btn:hover {
    background: #0f5b4c;
    color: white;
}

/* Image */
.app-image {
    max-width: 90%;
}

/* Responsive */
@media (max-width: 992px) {
    .app-section {
        text-align: center;
    }

    .store-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 30px;
    }
}

/* Prevent boxed background issues */
.app-section .container {
    background: transparent;
}

/* Testimonial Section */
.testimonial-section {
  background: linear-gradient(90deg, #ffffff, #ffffff);
  padding: 100px 0;
}

/* Outer card */
.testimonial-outer {
  background: #ffffff;
  border-radius: 20px;
  padding: 10px;
  border: 1px solid #d8ddd8;
}

/* Inner card */
.testimonial-inner {
  background: #f2f6f5;
  border-radius: 18px;
  padding: 30px;
  position: relative;
  text-align: left;
}

/* Stars */
.stars {
  color: #f4a640;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Text */
.testimonial-text {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Client */
.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.client-info h6 {
  margin: 0;
  font-weight: 600;
  color: #062b21;
}

.client-info span {
  font-size: 13px;
  color: #6b7280;
}

/* Quote */
.quote-icon {
  position: absolute;
  right: 25px;
  bottom: 15px;
  font-size: 70px;
  color: rgba(0,0,0,0.08);
  font-weight: 700;
}

/* Navigation buttons */
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #0f5b4c;
  background: transparent;
  color: #0f5b4c;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #0f5b4c;
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-inner {
    text-align: center;
  }

  .client-info {
    justify-content: center;
  }
}



/*contact us styling/*

/* Hero Section */
.contact-hero {
  background: linear-gradient(90deg, #002e2a, #063b32);
 
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 16px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb span {
  margin: 0 6px;
  color: #ccc;
}

.breadcrumb .active {
  color: #f16827;
  font-weight: 500;
}

/* Hero Image */
.hero-img {
  max-width: 100%;
  height: auto;
}

/* Tablet */
@media (max-width: 991px) {
  .contact-hero {
    text-align: center;
    padding: 60px 0;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  .text-content {
    margin-bottom: 30px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .contact-hero h1 {
    font-size: 28px;
  }

  .breadcrumb {
    font-size: 14px;
  }
}

/* Section Background */
.contact-section {
  background: #ffffff;
  padding: 80px 0;
  font-family: Arial, sans-serif;
}

/* Left Contact Card */
.contact-card {
  background: #f4f6f5;
  padding: 40px;
  border-radius: 15px;
}

.contact-card h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-card hr {
  margin-bottom: 30px;
}

/* Form Fields */
.contact-card label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: #f0f2f1;
  outline: none;
  font-size: 14px;
}

.contact-card textarea {
  border-radius: 20px;
  resize: none;
}

/* Button */
.contact-btn {
  background: #0f7a5f;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #0c5f49;
}

/* Right Help Card */
.help-card {
  background: #f4f6f5;
  padding: 30px;
  border-radius: 15px;
}

.help-card h3 {
  font-weight: 700;
  margin-bottom: 25px;
}

/* Help Boxes */
.help-box {
  background: #e9eceb;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.help-box .icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.help-box h4 {
  margin: 0;
  font-size: 18px;
}

.help-box p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-card {
    padding: 30px;
  }

  .help-card {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 50px 0;
  }
}



.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 18px;
}

.why-choose-list li i {
  font-size: 40px;
  color: #114f3c;
  min-width: 22px;
}

/* Mobile optimization */
@media (max-width: 576px) {
  .why-choose-list li {
    align-items: flex-start;
  }

  .why-choose-list li span {
    line-height: 1.4;
  }
}
.cta-section {
  background: linear-gradient(135deg, #114f3c, #062b21);
  padding: 100px 20px;
  color: #fff;
}

.cta-wrapper {
  max-width: 750px;
  margin: 0 auto;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 17px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons .btn {
  padding: 12px 30px;
  font-weight: 500;
  margin: 5px;
  border-radius: 6px;
}

.cta-buttons .btn-primary {
  background-color: #f16827;
  color: #000000;
  border: none;
}

.cta-buttons .btn-primary:hover {
  background-color: #f2f2f2;
}

.cta-buttons .btn-outline-light:hover {
  background-color: #f16827;
  color: #114f3c;
}
.feature-item {
    padding: 12px 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #114f3c;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.feature-item h6 {
    font-weight: 600;
    font-size: 15px;
}
/* Help Section Horizontal Design */
/* ================= HELP SECTION ================= */

.help-section {
  background: #f8f9fa; /* Light background behind white boxes */
}

.help-box-horizontal {
  background: #ffffff; /* WHITE BOX */
  padding: 40px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  
}

/* Hover Effect */
.help-box-horizontal:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Icon Styling */
.help-box-horizontal .icon {
  font-size: 32px;
  margin-bottom: 15px;
}

/* Heading */
.help-box-horizontal h4 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #062b21;
}

/* Paragraph */
.help-box-horizontal p {
  margin: 0;
  color: #555;
  font-size: 15px;
}
/* Heading */
.contact-heading {
  background: #f8f9fa;
}

.main-title {
  font-weight: 700;
  color: var(--dark);
}

.sub-title {
  color: #666;
}
/* Form Card */
.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Labels */
.contact-form label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #062b21;
}

/* Inputs & Select */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #114f3c;
  box-shadow: 0 0 0 2px rgba(17, 79, 60, 0.1);
}

/* Button */
.contact-btn {
  background: #114f3c;
  color: #fff;
  padding: 12px 40px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #062b21;
}
body {
  font-family: 'Poppins', sans-serif;
}

.contact-section {
  font-family: 'Poppins', sans-serif;
}.section-heading h2 {
  font-weight: 500;
  letter-spacing: 0.4px;
}

.contact-form label {
  font-weight: 500;
}

.contact-btn {
  font-weight: 600;
  letter-spacing: 0.5px;
}
 .chat-widget {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 9999;
    }

    .chat-toggle {
      width: 64px;
      height: 64px;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      background: linear-gradient(135deg, #114f3c, #062b21);
      color: #fff;
      font-size: 26px;
      box-shadow: 0 14px 35px rgba(6, 43, 33, 0.35);
      transition: all 0.3s ease;
    }

    .chat-toggle:hover {
      transform: translateY(-3px) scale(1.04);
    }

    .chat-box {
      width: 370px;
      max-width: calc(100vw - 30px);
      height: 560px;
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
      display: none;
      flex-direction: column;
      margin-bottom: 16px;
      border: 1px solid rgba(17, 79, 60, 0.08);
    }

    .chat-header {
      background: linear-gradient(135deg, #114f3c, #062b21);
      color: #fff;
      padding: 18px 18px 16px;
      position: relative;
    }

    .chat-header-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .chat-profile {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .chat-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: rgba(255,255,255,0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      border: 1px solid rgba(255,255,255,0.15);
    }

    .chat-header h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .chat-header p {
      font-size: 12px;
      opacity: 0.85;
    }

    .chat-close {
      background: transparent;
      border: none;
      color: #fff;
      font-size: 26px;
      cursor: pointer;
      line-height: 1;
    }

    .chat-subtext {
      margin-top: 14px;
      font-size: 13px;
      line-height: 1.6;
      color: rgba(255,255,255,0.92);
    }

    .chat-body {
      flex: 1;
      overflow-y: auto;
      background: linear-gradient(to bottom, #f7fbf9, #eef5f1);
      padding: 16px;
      scroll-behavior: smooth;
    }

    .message {
      max-width: 85%;
      padding: 12px 14px;
      border-radius: 16px;
      margin-bottom: 12px;
      font-size: 13px;
      line-height: 1.6;
      word-wrap: break-word;
    }

    .message.bot {
      background: #ffffff;
      color: #1f2d28;
      border-top-left-radius: 5px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    }

    .message.user {
      background: linear-gradient(135deg, #114f3c, #0b3e2f);
      color: #fff;
      margin-left: auto;
      border-top-right-radius: 5px;
      box-shadow: 0 8px 18px rgba(17,79,60,0.2);
    }

    .quick-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 10px 0 14px;
    }

    .quick-btn {
      border: 1px solid #dceae4;
      background: #fff;
      color: #114f3c;
      padding: 9px 14px;
      border-radius: 999px;
      cursor: pointer;
      font-size: 12px;
      font-weight: 500;
      transition: all 0.25s ease;
    }

    .quick-btn:hover {
      background: #114f3c;
      color: #fff;
      border-color: #114f3c;
    }

    .chat-footer {
      padding: 12px;
      background: #fff;
      border-top: 1px solid #e8efeb;
    }

    .input-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #f6f8f7;
      border: 1px solid #e1ebe6;
      border-radius: 999px;
      padding: 6px 6px 6px 14px;
    }

    .input-wrap input {
      flex: 1;
      border: none;
      outline: none;
      background: transparent;
      font-size: 13px;
      color: #22322d;
    }

    .send-btn {
      width: 42px;
      height: 42px;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      color: #fff;
      font-size: 16px;
      background: linear-gradient(135deg, #114f3c, #062b21);
      box-shadow: 0 8px 18px rgba(17,79,60,0.25);
    }

    .chat-note {
      margin-top: 8px;
      font-size: 11px;
      text-align: center;
      color: #71827b;
    }

    .chat-link-btn {
      display: inline-block;
      margin-top: 10px;
      padding: 9px 14px;
      border-radius: 999px;
      background: #114f3c;
      color: #fff;
      text-decoration: none;
      font-size: 12px;
      font-weight: 500;
    }

    .loan-list {
      margin-top: 8px;
      padding-left: 16px;
    }

    .loan-list li {
      margin-bottom: 5px;
    }

    @media (max-width: 480px) {
      .chat-widget {
        right: 14px;
        bottom: 14px;
      }

      .chat-box {
        width: 100%;
        max-width: 100%;
        height: 82vh;
        position: fixed;
        right: 0;
        bottom: 0;
        margin-bottom: 0;
        border-radius: 20px 20px 0 0;
      }

      .chat-toggle {
        width: 58px;
        height: 58px;
      }
    }
    .mission-vision-section {
  background: radial-gradient(circle at right, #114f3c, #062b21);
  color: #fff;
  position: relative;
}

.mv-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: 0.4s ease;
  height: 100%;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.mv-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1c7c5a, #0b3d2e);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 26px;
  margin-bottom: 20px;
  color: #fff;
}

.mv-card h4 {
  font-weight: 600;
  margin-bottom: 12px;
}

.mv-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #dce7e3;
}

/* section title */
.section-tag1 {
  color: #a5d6c4;
  font-weight: 500;
  margin-bottom: 10px;
}

.section-title1{
  font-size: 32px;
  font-weight: 700;
  color:#ffffff
}