body {
  font-family: 'Segoe UI', sans-serif;
}

.hero {
  background: url('https://via.placeholder.com/1600x600?text=Travel+Hero+Image') center center/cover no-repeat;
  height: 80vh;
}

.search-form input {
  border-radius: 0.375rem;
}

.categories img,
.popular img {
  transition: transform 0.3s ease;
}
 
.categories img {
        width: 350px;
    height: 200px;
}
.categories h5{
    font-size: 20px;
    font-weight: 800;
}
.categories img:hover,
.popular img:hover {
  transform: scale(1.05);
}

.newsletter {
  background: #343a40;
}
/*.popular img{*/
/*    width: 360px;*/
/*    height: 180px;*/
/*    border-radius: 6px;*/
/*}*/

.popular img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
  height: 200px;
  width: 100%;
}

.popular .col-md-3 {
  padding: 15px;
}

.popular .col-md-3:hover img {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.popular p {
  background-color: #fff;
  padding: 10px;
  /*margin-top: -10px;*/
  font-weight: 800;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);

}

/**/

.category-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.category-card {
  text-align: center;
  max-width: 250px;
  flex: 1;
}

.category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.category-card img:hover {
  transform: scale(1.05);
}

.category-card h3 {
  margin-top: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
}

