/* ==== Popular Rides Section ==== */
#popular-ride {
  background-color: #f0f8ff;
  font-family: 'Poppins', sans-serif;

}

.section-title h5 {
  color: #ff5722;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.section-title h2 {
  font-weight: 700;
  font-size: 2rem;
}

.section-title span {
  color: #ff5722;
}

.ride-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ride-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.ride-card img {
  height: 260px;
  object-fit: cover;
  width: 100%;
}

.ride-card .card-body {
  text-align: center;
  padding: 1rem;
}

.ride-card h5 {
  font-weight: 600;
}

.ride-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 0;
}




#famous-places {
  background-color: #F0F8FF;
  font-family: 'Poppins', sans-serif;
}

.text-primary {
  color: #ff5722 !important;
}

.place-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.35s ease;
}

.place-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 120px);
  gap: 3px;
}

.img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.place-card:hover .img-grid img {
  transform: scale(1.05);
}

.place-card .card-body {
  padding: 1.5rem;
}

.place-card h5 {
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.place-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.place-card ul li {
  font-size: 0.9rem;
  color: #555;
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 6px;
}

.place-card ul li::before {
  content: "•";
  color: #ff5722 !important;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
