 body {
      background-color: #f9f9f9;
      font-family: 'Segoe UI', sans-serif;
    }
    .hero-section {
  height: 50vh;
  background: url('../img/services/munnar-jeep-safari.jpg') center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
}
    .section-title {
      background-color: #212529;
      color: #fff;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      margin: 40px 0 20px;
      font-weight: 700;
    }
    .card-img-top {
      height: 200px;
      object-fit: cover;
    }
    .card img{
      height: 200px;
      object-fit: cover;
    }
    .service-card {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      background-color: #fff;
      transition: transform 0.3s;
    }
    .service-card:hover {
      transform: scale(1.03);
    }
    .btn-custom {
      background-color: #212529;
      color: #fff;
      border-radius: 30px;
      padding: 8px 18px;
    }
    .btn-custom:hover {
      background-color: #343a40;
    }
    .cta {
      background: linear-gradient(to right, #000000ff, #000000ff);
      color: white;
      padding: 40px 20px;
      text-align: center;
      border-radius: 10px;
      margin: 50px 0;
    }