.homeh2{
    font-family: poppins;
    color: #ffffff;
    font-weight: 500;
    font-size: 25px;
    margin-top: 80px;
    background-color: rgb(74,141,213);
    height: 100px;
    padding-top: 35px;
}

.img-banner {
  width: 100%;
  overflow: hidden;
  
}

.img-banner img {
  width: 100%;
  height: auto;
  display: block;
}


.place-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 20px;
  margin-top: 40px;
}

.place-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.place-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.place-card h3 {
  padding: 12px;
  font-size: 20px;
  font-family: "Georgia", serif;
  color: #0b1f44;
}

.place-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.2);
}
.place-card h3 a {
  text-decoration: none;
  color: #0b1f44;
  display: inline-block;
  transition: color 0.3s ease;
}

.place-card h3 a:hover {
  color: #1753d4; /* gold yellow */
}


/* Tablet */
@media (max-width: 1024px) {
  .place-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .place-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .place-card img {
    height: 180px;
     
  }
}
.car-loan-content {
  max-width: 1500px;
  margin: 40px auto;
  padding: 0 20px;
}


.car-loan-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
  font-family: poppins;
  text-align: justify;
}
.wrapploan{
    background-color: #d6e0eb;
    padding: 40px 0;
    margin-top: 50px;
}
.loan-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  font-family: "Segoe UI", sans-serif;
margin-top: 20px;
}

.loan-box {
  background: #fff;
  border-radius: 10px;
  padding: 22px 20px;
  border: 1px solid #e6e9ee;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
}

/* LEFT BLUE STRIP */
.loan-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #0b5ed7;
  transform: scaleY(0);
  transition: transform 0.35s ease;
  transform-origin: top;
}

.loan-box:hover::before {
  transform: scaleY(1);
}

.loan-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(11, 94, 215, 0.18);
}

/* TOP SECTION */
.loan-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

/* ICON CIRCLE */
.loan-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(11, 94, 215, 0.1);
  color: #0b5ed7;
  font-size: 20px;
  flex-shrink: 0;
}

/* TITLE */
.loan-top h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #0b1f44;
}

.loan-top span {
  font-size: 12px;
  color: #6b7280;
}

/* DESCRIPTION */
.loan-box p {
  font-size: 13px;
  line-height: 1.6;
  color: #444;
  margin: 12px 0 18px;
}

/* LINK BUTTON */
.loan-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #0b5ed7;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.loan-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.loan-box:hover .loan-btn i {
  transform: translateX(6px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .loan-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .loan-wrapper {
    grid-template-columns: 1fr;
  }
  .loan-wrapper {
  max-width: 1200px;
  margin: auto;
 padding: 10px;
  gap: 20px;
  font-family: "Segoe UI", sans-serif;
margin-top: 20px;
}

}
.service-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  font-family: "Segoe UI", sans-serif;
  margin-top: 70px;
}

.service-card {
  background: #c9dbef;
  border-radius: 22px;
  padding: 34px 28px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.service-card h4 {
  text-align: center;
  font-size: 17px;
  color: #0b5ed7;
  margin-bottom: 22px;
  font-weight: 600;
  font-family: poppins;
}

.service-card p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #1f2937;
  text-align: justify;
}
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
    padding: 15px;
  }
}
.info-section {
  max-width: 1400px;
  margin: auto;
  font-family: poppins;
  margin-top: 120px;
}

.info-row {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.info-row.reverse {
  grid-template-columns: 60% 40%;
}

.info-row.reverse .info-image {
  order: 2;
}

.info-row.reverse .info-content {
  order: 1;
}

.info-image img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.info-content h3 {
  color: #0b5ed7;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
  text-align: justify;
}

.info-content p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #1f2937;
  margin-bottom: 14px;
  text-align: justify;
}

/* CTA */
.cta-box {
  text-align: center;
  margin-top: 40px;
}

.cta-btn {
  display: inline-block;
  background: #0b5ed7;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #084298;
  text-decoration: none;
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .info-row,
  .info-row.reverse {
    grid-template-columns: 1fr;
  }

  .info-row.reverse .info-image,
  .info-row.reverse .info-content {
    order: unset;
  }
  .info-content p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #1f2937;
  margin-bottom: 14px;
  text-align: justify;
padding:20px;
}
.info-image{
  padding: 20px;
 
}

.info-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.info-content h3 {
  color: #0b5ed7;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
}

}
