body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #f5f9fc;
  color: #1f80ff;
}

/* Hero Content */
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8% 20px;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1;
  max-width: 600px;
}

.hero-left h1 {
  font-size: 3rem;
  color:#1f80ff;
  margin: 10px 0;
  line-height: 1.2;
}

.hero-left h1 span {
  font-weight: 400;
  color: #1f80ff;
}

.description {
  margin-top: 15px;
  color: #555;
  font-size: 1.1rem;
}

/* Image on right */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #99acff;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info Section */
.info-section {
  background-color: #f5f9fc;
  padding: 20px 8%;
}

.info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 190px;
}

.info-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.info-image-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #99acff;
}

.info-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-right {
  flex: 1;
  max-width: 550px;
}

.info-right h2 {
  color: #1f80ff;
  font-size: 2rem;
  margin-bottom: 20px;
}

.info-right p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

/* Why Choose Us Section */
.why-choose {
  background-color: #f5f9fc;
  padding: 20px 8%;
}

.why-container {
  display: flex;
  gap: 190px;
  align-items: center;
  flex-wrap: wrap;
}

.why-left {
  flex: 1;
}

.why-left-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-left-wrap {
  width: 300px;
  height: 300px;
  border: 4px solid #99acff; /* blue border */
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
}

.why-right {
  flex: 1;
  max-width: 900px;
}

.why-right h2 {
  font-size: 2rem;
  color: #1f80ff;
  margin-bottom: 30px;
}

/* Feature Boxes */
.feature-box {
  display: flex;
  align-items: center;
  border-radius: 100px;
  padding: 15px 20px;
  margin-bottom: 20px;
  gap: 15px;
}

.feature-box.light {
  background-color: #e2e8f0;
}

.feature-box.dark {
  background-color: #1f80ff;
  color: white;
}

.icon-circle {
  /* background-color: #f6ad55; */
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
}

.icon-circle img {
  width: 30px;
  height: 30px;
}

.feature-text h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.feature-text p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Services Section */
.services-section {
  background-color: #f5f9fc;
  padding: 20px 8%;
  text-align: center;
}

.services-heading h2 {
  color: #1f80ff;
  font-size: 2rem;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.service-box {
  background-color: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(0,0,0,0.05);
}

.service-box img {
  width: 48px;
  margin-bottom: 10px;
}

.service-box h4 {
  font-size: 1.2rem;
  color: #1f80ff;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

/* Team Section */
.team-section {
  background-color: #f6f9fc;
  padding: 10px 15%;
}

.team-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* Left: Team Cards */
.team-cards {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  max-width: 300px;
}

.team-card {
  background-color: #edf2f7;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 2px rgba(0,0,0,0.05);
}

.team-card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-text {
  padding: 20px;
  text-align: center;
}

.card-text h4 {
  font-size: 1.2rem;
  color: #1f80ff;
}

.card-text .role {
  font-weight: 500;
  color: #555;
  margin-bottom: 10px;
}

.team-card-wrap {
  width: 250px;
  height: 250px;
  border: 4px solid #99acff;
  border-radius: 50%;
  overflow: hidden;
  margin: 5px auto 0 auto;
}

.team-card-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-card2-wrap {
  width: 250px;
  height: 250px;
  border: 4px solid #99acff;
  border-radius: 50%;
  overflow: hidden;
  margin: 5px auto 0 auto;
}

.team-card2-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Right Side */
.team-info {
  flex: 1;
  max-width: 500px;
}

.team-tag {
  color: #dcdcdc;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-info h2 {
  font-size: 2rem;
  color: #1f80ff;
  margin-bottom: 100px;
}

.team-info p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 100px;
}

/* Trusted Bank Section */
.trusted-section {
  background-color: #f5f9fc;
  padding: 20px 15%;
}

.trusted-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.trusted-left {
  flex: 1;
}


.trusted-card h4 {
  margin-bottom: 5px;
  color: #1f80ff;
}

.trusted-card p {
  font-size: 0.9rem;
  color: #555;
}

/* Right Side */
.trusted-right {
  flex: 1;
  max-width: 550px;
}

.trusted-tag {
  color: #d69e2e;
  font-weight: 600;
  margin-bottom: 10px;
}

.trusted-right h2 {
  font-size: 2rem;
  color: #1f80ff;
  margin-bottom: 15px;
}

.trusted-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

.trusted-points {
  display: flex;
  gap: 30px;
}

.trusted-points ul {
  list-style: none;
  padding: 0;
}

.trusted-points li {
  font-weight: 600;
  color: #1f80ff;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.trusted-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f6ad55;
  font-size: 1.2rem;
}

/* Learn More Section */
.learn-section {
  background-color: #f5f9fc;
  padding: 20px 15%;
}

.learn-container {
  display: flex;
  flex-wrap: wrap;
  gap: 150px;
  align-items: center;
  justify-content: space-between;
}

.learn-left {
  flex: 1;
  max-width: 550px;
}

.learn-tag {
  color: #d69e2e;
  font-weight: 600;
  margin-bottom: 10px;
}

.learn-left h2 {
  font-size: 2rem;
  color: #1f80ff;
  margin-bottom: 20px;
}

.learn-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.learn-stats {
  display: flex;
  gap: 40px;
}

.stat h3 {
  font-size: 1.8rem;
  color: #1f80ff;
  margin-bottom: 5px;
}

.stat.orange h3 {
  color: #f6ad55;
}

.stat p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.3;
}

/* Circular Image */
.learn-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* instant loan Transaction Section */
.transaction-section {
  background-color: #f5f9fc;
  padding: 10px 15%;
}

.transaction-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.transaction-left {
  flex: 1;
  max-width: 550px;
}

.transaction-tag {
  color: #d69e2e;
  font-weight: 600;
  margin-bottom: 10px;
}

.transaction-left h2 {
  font-size: 2rem;
  color: #1f80ff;
  margin-bottom: 20px;
}

.transaction-sub h4 {
  font-size: 1rem;
  color: #1f80ff;
  margin-bottom: 10px;
}

.transaction-sub p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Steps Section */
.steps-section {
  background-color: #f5f9fc;
  padding: 20px 8%;
  text-align: center;
}

.steps-heading .step-tag {
  color: #d69e2e;
  font-weight: 600;
  margin-bottom: 10px;
}

.steps-heading h2 {
  font-size: 2rem;
  color: #1f80ff;
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.step-box {
  padding: 30px 20px;
  border-radius: 12px;
  position: relative;
  text-align: left;
  color: #1f80ff;
}

.step-box.light {
  background-color: #e2e8f0;
}

.step-box.dark {
  background-color: #1f80ff;
  color: #fff;
}

.step-badge {
  position: absolute;
  top: -20px;
  left: 20px;
  background-color: #1f80ff;
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.step-box h4 {
  margin-top: 30px;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step-box p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: inherit;
}

.step-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: #fff;
  font-style: italic;
}

.step-link.orange {
  color: #f6ad55;
}

/* Thank You / Footer Section */
.footer-section {
  background-color: #f5f9fc;
  padding: 60px 8%;
}

.footer-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  flex: 1;
}

.footer-tag {
  color: #d69e2e;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-left h2 {
  font-size: 3rem;
  color: #1f80ff;
  line-height: 1;
  margin-bottom: 30px;
}

.footer-btn {
  padding: 12px 24px;
  background-color: #1f80ff;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.footer-right {
  flex: 1;
  position: relative;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 0;
  /* box-shadow: 0 0px 0px rgb(244, 243, 243); */
  /* background-color: #e7e8e7; */
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 80px;
  height: 80px;
}


/* footer section and image */

.footer-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.footer-image-wrap img {
  width: 300px;           /* Adjust size as needed */
  height: 300px;
  border: 5px solid #99acff; /* Blue border */
  border-radius: 50%;     /* Makes it circular */
  object-fit: cover;      /* Ensures it fills the circle */
}

/* instant loans section */
.img-boxleft-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 10px; */
  border: 5px solid #99acff;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  overflow: hidden;
}

.img-boxleft-wrap img {
  width: 100%;           /* Adjust size as needed */
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}


.img-boxright-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid #99acff;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  overflow: hidden;
}

.img-boxright-wrap img {
  width: 100%;           /* Adjust size as needed */
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.images-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px; /* Add spacing between stacked images */
}


/* trusted financier image section */

.trusted-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 50px; */
  border: 5px solid #99acff;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  overflow: hidden;
}

.trusted-img-wrap img {
  width: 100%;           /* Adjust size as needed */
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* learn more image section */

.learn-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 50px; */
  border: 5px solid #99acff;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  overflow: hidden;
}

.learn-image-wrap img {
  width: 100%;           /* Adjust size as needed */
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* service icons */

.icon-wrap {
  width: 90px;
  height: 90px;
  border: 3px solid #99acff; /* blue border */
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto; /* centers the icon & adds bottom spacing */
  /* background-color: white; optional, for clarity */
}

.icon-wrap img {
  width: 115%;
  height: 115%;
  object-fit: cover;  /* ensures image fills the circle */
}


/* why us icons */

.icon-wrap-1 {
  width: 90px;
  height: 90px;
  border: 3px solid #007bff; /* blue border */
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto; /* centers the icon & adds bottom spacing */
  /* background-color: white; optional, for clarity */
}

.icon-wrap-1 img {
  width: 115%;
  height: 115%;
  object-fit: cover;  /* ensures image fills the circle */
}


/* Sticky Navbar Styles */
.navbar {
  position: relative;
  top: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 8px 20px;
  margin-bottom: 20px; /* ➕ gap below navbar */
}

.navbar-container {
  display: flex;
  justify-content: space-between; /* pushes logo left, button right */
  align-items: center;
  width: 100%;
}

.logo-brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 60px;
  height: 60px;
  background-color: #1f80ff;
  color: white;
  font-size: 35px;
  font-weight: bold;
  border-radius: 50%; /* 🔵 makes logo circular */
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand {
  font-size: 2.5 rem;
  font-weight: bold;
  color: #1f80ff;
}

.contact-btn {
  background-color: #1f80ff;
  color: white;
  padding: 10px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #005ecb;
}



/* the mobile-first css response code */
/* Step 1: Navbar Base Style */
@media (max-width: 768px) {
  .hero-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .logo-brand-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .logo {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .brand {
    font-size: 1.1rem;
    font-weight: 600;
  }

  .nav-links {
    margin-top: 10px;
  }

  .contact-btn {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.9rem;
    background-color: #1f80ff; /* Orange style like your screenshot */
    color: white;
    border-radius: 6px;
    font-weight: bold;
  }
}



/* HERO SECTION – Mobile View Fixes Only */
@media (max-width: 767px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 1.6rem;
    line-height: 2rem;
  }

  .hero-left h1 span {
    font-size: 1.1rem;
    display: block;
    margin-top: 0.25rem;
  }

  .hero-left .description {
    font-size: 0.95rem;
    margin-top: 1rem;
  }

  .hero-right .image-wrap {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-right img {
    width: 100%;
    border-radius: 1rem;
    display: block;
  }
}




@media (max-width: 767px) {
  .info-container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }

  .info-left,
  .info-right {
    width: 100%;
  }

  .info-image-wrap {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 5px solid #a0b4ff;
    overflow: hidden;
    margin: 0 auto;
  }

  .info-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    display: block;
  }

  .info-right h2 {
    font-size: 1.5rem;
    margin-top: 10px;
  }

  .info-right p {
    font-size: 1rem;
    line-height: 1.6;
  }
}




@media (max-width: 768px) {
  .why-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px
  }

  .why-left,
  .why-right {
    width: 100%;
  }

  .why-left {
    margin-top: 0.5 rem; /* spacing between text and image */
  }
}




@media (max-width: 768px) {
  .team-container {
    display: flex;
    flex-direction: column;
  }

  .team-cards {
    display: none; /* We'll inject cards using JS */
  }

  .team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 0;
  }

  .team-card img {
    max-width: 180px;
    border-radius: 100px;
  }

  .team-info {
    order: 2;
    text-align: center;
  }

  .team-info h2 {
    order: 0;
    margin-bottom: 1.5rem;
  }

  .team-info p {
    margin: 1rem 0;
  }

  .team-card-wrap img,
  .team-card2-wrap img {
  width: 100%;
  max-width: 250px;
  height: 100%;
  object-fit: cover; /* or cover, depending on your design */
  border-radius: 50%;
  display: block;
  margin: 0 auto;
 }

}


@media (max-width: 768px) {
  .trusted-container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    /* padding: 0rem 1rem; */
  }

  .trusted-left,
  .trusted-right {
    width: 100%;
  }

  .trusted-img-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }
  
  .trusted-img-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}

  .trusted-right h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .trusted-desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .trusted-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .trusted-points ul {
    padding: 0;
    margin: 0;
  }

  .trusted-points li {
    font-size: 1rem;
    line-height: 1.6;
  }
}


@media (max-width: 768px) {
  .learn-image-wrap {
   margin-top: -9rem !important; /* Reduce gap */
   justify-content: center;
   align-items: center;
   margin-left: -20px;
  }
}  

@media (max-width: 768px) {
  .img-boxleft-wrap{
    justify-content: center;
    align-items: center;
    margin-left: -20px;
  }

  .img-boxright-wrap{
   margin-left: -20px;
  }
  
}

