body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
button{
        border-radius: 50px;
    padding: 10px 15px;
    background: #078320;
    color: white;
    border: none;
    font-weight: 600;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
      transition: 0.4s;
}
button:hover{
    background: white;
    color: #078320;   
}
/* nav bar code start */

   .top-bar {
      background-color: #2f9e44;
      color: #fff;
      font-size: 12px;
      padding: 5px 0;
    }
/* Navbar Links */
.navbar-nav .nav-link {
  color: #000 ;
  margin: 0 4px;       /* little more breathing space */
  font-size: 18px;      /* slightly balanced for readability */
  font-weight: 500;     /* medium weight looks cleaner */
  transition: color 0.3s ease; /* smooth hover effect */
}

/* Navbar Links Hover */
.navbar-nav .nav-link:hover {
  color: #2f9e44 !important;
}
.navbar-nav .active{
    color: #078320 !important;
}
/* Search Icon */
.search-icon {
  color: #2f9e44;
  font-size: 18px;
  transition: color 0.3s ease;
}
.search-icon:hover {
  color: #000;
}

/* Navbar Brand Logo */
.navbar-brand img {

  max-height: 65px;
  width: 100%;
}

    /* nav bar code end */

    /* product section code  */
.section-title {
  position: relative;
  display: inline-block; 
}

.section-title::after {
  content: "";
  display: block;
  width: 150px;              
  height: 3px;               
  background-color: green;   
  margin: 10px auto 0;       
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* out partner */
.bank-logo-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.bank-logo-box img {
  max-height: 70px;
  object-fit: contain;
}


.conversation-section {
  background: linear-gradient(135deg, #0099ff, #078320);
  color: white;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.btn-nav{
  background-color: #078320;
  color: #fff;
  text-transform: uppercase;
  border-radius: 50px;
  font-weight: 600;

}
.btn-nav:hover{
  background-color: #fff;
  color: #078320;
  border: 1px solid #078320;

}
/* Buttons */
.btn-custom {
  background: #fff;
  color: #000;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.4s;
}

.btn-custom:hover {
  background: #078320;
  color: #ffffff;
}

/* Responsive text */
.conversation-section h2 {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .conversation-section h2 {
    font-size: 1.8rem;
  }
  .btn-custom {
    width: 100%;
    max-width: 250px;
  }
}


/* footer */
.main-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 60px 0 0;
  
}

.footer-logo img {
  max-width: 150px;
}

.footer-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: #22c55e;
  color: #ffffff;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #22c55e;
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-contact i {
  color: #22c55e;
  margin-top: 4px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding: 15px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #94a3b8;
}

.arrow-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.arrow-links i {
  font-size: 12px;
  color: #22c55e;
  transition: 0.3s;
}

.arrow-links a:hover i {
  transform: translateX(4px);
}
.copy-l{
  text-decoration: none;
  font-size: 16px;
  color: #22c55e;
}


  /* Scroll to Top Button */
  #scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; /* hidden by default */
    z-index: 999;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  /* about us */
  .about-section h3 {
  color: #2f9e44;
}
.about-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}
.about-section ul li {
  font-size: 16px;
  line-height: 1.6;
}

/* features section */
.feature-bar {
  background: linear-gradient(90deg, #0b6b3a, #0f3d2e);
  padding: 20px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-item i {
  font-size: 22px;
}

.feature-item span {
  font-size: 15px;
}

.feature-item:hover {
  transform: translateY(-5px);
  color: #d1ecff;
}


  /* HERO SLIDER */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  min-height: 500px;
  background: url("../images/banner-img1.webp") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

/* Optional second slide bg */
.hero-slide-2 {
  background: url("../images/banner-img2.webp") center/cover no-repeat;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* Badge */
.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Title */
.hero-title {
  color: #fff;
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Outlined text */
.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

/* Text */
.hero-text {
  color: #d1d5db;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Button */
.hero-btn {
  padding: 12px 34px;
  border-radius: 30px;
  font-weight: 600;
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #28a745;
}

/* Desktop */
@media (min-width: 992px) {
  .hero-title {
    font-size: 3.8rem;
  }

  .hero-text {
    font-size: 1.1rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-title {
    font-size: 1.9rem;
  }
}

/* About Section */
.about-section {
  background: #fff;
}

/* Image */
.about-img-wrapper {
  border-radius: 25px;
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Badge */
.about-badge {
  display: inline-block;
  background: #eef9f1;
  color: #28a745;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* Title */
.about-title {
  font-size: 2rem;
  font-weight: 800;
  color: #222;
  line-height: 1.25;
  margin-bottom: 15px;
}

.about-title span {
  color: #28a745;
}

/* Subtitle */
.about-subtitle {
  font-weight: 700;
  color: #b7791f;
  margin-bottom: 18px;
}

/* Text */
.about-text {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Button */
.about-btn {
  padding: 12px 34px;
  border-radius: 30px;
  font-weight: 600;
  background-color: #28a745;
  color: #fff;
}
.about-btn:hover {
  background-color: #fff;
  color: #28a745;
  border: 1px solid #28a745;
}

/* Responsive */
@media (max-width: 991px) {
  .about-title {
    font-size: 24px;
  }
}



/* ===============================
   HOW IT WORK SECTION
================================ */

.how-it-work {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Badge */
.how-it-work .badge {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
}

/* Title */
.how-it-work h2 {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 16px;
}

.how-it-work h2 span {
  color: #28a745;
}

/* Description */
.how-it-work p {
  font-size: 16px;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 30px;
}

/* ===============================
   ACCORDION
================================ */

.how-it-work .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #e5e5e5;
}

.how-it-work .accordion-item:last-child {
  border-bottom: none;
}

.how-it-work .accordion-button {
  padding: 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  background: transparent;
  box-shadow: none;
}

.how-it-work .accordion-button:focus {
  box-shadow: none;
}

.how-it-work .accordion-button:not(.collapsed) {
  background: transparent;
  color: #212529;
}

.how-it-work .accordion-button::after {
  background-size: 16px;
}

.how-it-work .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* Accordion body */
.how-it-work .accordion-body {
  padding: 0 0 20px 54px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ===============================
   NUMBER ICON
================================ */

.how-it-work .faq-number {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background-color: #28a745;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

/* ===============================
   IMAGE
================================ */

.how-it-work img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
  .how-it-work h2 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .how-it-work h2 {
    font-size: 28px;
  }

  .how-it-work .accordion-button {
    font-size: 16px;
  }

  .how-it-work .faq-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .how-it-work .accordion-body {
    padding-left: 46px;
  }
}


/* our goals */
.financial-goals {
  background: #f8f9fa;
}

.goal-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: all 0.3s ease;
  height: 100%;
  cursor: pointer;
}

.goal-card:hover {
  transform: translateY(-10px);
  box-shadow: rgba(0, 123, 255, 0.25) 0px 15px 35px;
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: #28a745;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.3s ease;
  
}

.goal-card:hover .icon-box {
  background: #28a745;
  transform: scale(1.1);
}

.goal-card h5 {
  font-weight: 600;
}

.goal-card p {
  color: #6c757d;
  font-size: 15px;
}



  /* why choise us */
  .feature-card {
    transition: all 0.3s ease;
    border-radius: 16px;
  }

  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }

  .feature-icon {
    width: 80px;
    height: 80px;
    background: #e9f7f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #28a745;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .feature-card:hover .feature-icon {
    background: #28a745;
    color: #fff;
  }

  .step-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff9800;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
  }

  /* promise-section */
  .promise-section {
    background: linear-gradient(135deg, #0b6b3a, #0f3d2e);
  }



  /* feature-box */
  .feature-box {
    border: 3px solid rgba(168, 168, 2, 0.945);
    border-radius: 0;
    transition: all 0.3s ease;
  }

  .feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
  }

  .icon-wrap {
    font-size: 64px;
    color: #1abc9c;
  }

  .feature-box p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* testimonial */

  .swiper-slide {
    height: auto;
    display: flex;
  }

  .testimonial-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .avatar {
    width: 55px;
    height: 55px;
    background: #ff8a65;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
  }

  /* our solution */
.solutions-section {
  background: #f7f9f8;
}

.solution-badge {
  background: #e6f6ec;
  color: #16a34a;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 50px;
}

.solution-title {
  font-weight: 800;
  font-size: 42px;
}

@media (max-width: 991px) {
  .solution-title {
    font-size: 24px;
  }
}

.solution-title span {
  color: #16a34a;
}

.solution-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
  transition: all 0.4s ease;
  height: 100%;
  padding-top: 30px;
  position: relative;
}

/* ICON STYLING */
.solution-icon {
  width: 80px;
  height: 80px;
  background: #e6f6ec;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.solution-card .card-body {
  padding: 25px;
}

.solution-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.solution-card p {
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 20px;
}

.solution-btn {
  display: inline-block;
  padding: 10px 28px;
  border: 2px solid #16a34a;
  color: #16a34a;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.solution-btn:hover {
  background: #16a34a;
  color: #fff;
}

/* Hover Effects */
.solution-card:hover {
  transform: translateY(-12px);
  box-shadow: rgba(22, 163, 74, 0.3) 0px 20px 40px;
}

.solution-card:hover .solution-icon {
  background: #16a34a;
  color: #fff;
}


/* cta section */
.connect-section {
  background: linear-gradient(120deg, #0f3d2e, #0b6b3a);
}

.connect-box {
  
  padding: 70px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  
}

/* subtle overlay */
.connect-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.mymoneyfinances.com/wp-content/themes/mymoneyfinances/images/ctasec-bg.webp");
  opacity: 0.08;
  
}

.connect-box * {
  position: relative;
  z-index: 1;
}

.connect-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
}

.connect-box h2 {
  font-size: 48px;
  font-weight: 800;
}
@media (max-width: 991px) {
  .connect-box h2 {
    font-size: 24px;
  }
}

.connect-box p {
  max-width: 700px;
  margin: auto;
  font-size: 17px;
  color: #e5e7eb;
}

/* Buttons */
.connect-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.call-btn {
  background: #fff;
  color: #0f3d2e;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.whatsapp-btn {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #25d366;
  border-color: #25d366;
  transform: translateY(-4px);
}

/* increment */
.stats-section {
  padding: 40px 0;
  
}

.stats-box {
  background: linear-gradient(90deg, #0f3d2e, #0b6b3a);
  /* background: linear-gradient(90deg, #ff5722, #ff7043); */
  border-radius: 18px;
  padding: 30px 10px;
  color: #fff;
}

.stat-item {
  padding: 15px;
}

.stat-item h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
  opacity: 0.95;
  margin: 0;
}

/* partners */
.partners-section {
  background: #fff;
}

.partners-badge {
  background: #eaf7ee;
  color: #16a34a;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  display: inline-block;
}

.partners-title {
  font-size: 42px;
  font-weight: 800;
}

.partners-title span {
  color: #16a34a;
}

/* Slider */
.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 120s linear infinite;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* Logo Card */
.logo-card {
  min-width: 220px;
  height: 120px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgb(203, 195, 195);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card img {
  max-width: 150px;
  max-height: 60px;
  object-fit: contain;
}

/* Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* about page code */
.about-hero {
  min-height: 280px;
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
              url('../images/banner.webp')
              center/cover no-repeat;
}
.breadcrumb {
  background: transparent;
}

/* sticky whatsapp*/
.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    z-index: 9999;
    display: none;
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
    animation: whatsapp-pulse 1.5s infinite;
}

.whatsapp-sticky:hover {
    color: #fff;
    
}

/* Infinite Pop Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive - Smaller on Mobile */
@media (max-width: 576px) {
    .whatsapp-sticky {
        width: 42px;
        height: 42px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}

/* apply loan page code */

.service-card {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: #078320;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.icon-box i {
  color: #fff;
  font-size: 24px;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);

}

.service-card:hover .icon-box {
  background: #fff;
  border: 2px solid #078320;
}

.service-card:hover .icon-box i {
  color: #078320;
}

.apply-btn {
  background: #078320;
  color: #fff;
  border-radius: 30px;
  padding: 6px 18px;
  border: none;
  transition: 0.3s ease;
}

.apply-btn:hover {
  background: #fff;
  color: #078320;
  border: 1px solid #078320;
}


/* Equal Image Height */
.job-card img{
  height: 220px;
  object-fit: cover;
}

/* Equal Card Height */
.job-card{
  transition: all 0.4s ease;
  border-radius: 20px;
}

/* Card Hover Effect */
.job-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Button Styling */
.apply-btn{
  background: #078320;
  color: #fff;
  border-radius: 50px;
  padding: 10px 30px;
  transition: all 0.3s ease;
}

/* Button Hover Effect */
.apply-btn:hover{
  background: #078320;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* career from */

.upload-section{
    background:#f4f4f4;
    padding:60px 0;
}

.upload-card{
    max-width:850px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.upload-card h2{
    text-align:center;
    font-weight:700;
    margin-bottom:40px;
    color: #078320;
}
@media (max-width: 576px) {
 .upload-card h2{
  font-size: 20px;
 }
}
.form-control{
    border-radius:10px;
}


.submit-btn{
    background:#078320;
    color:#fff;
    padding:10px;
    border-radius:10px;
    font-weight:600;
    transition:0.3s;
}

.submit-btn:hover{
    background:#026115;
    color: #fff;
}