@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
font-face {
  src: url("../../assets/css/fontfamily/times.ttf");
}

.bg-color {
  background-color: #cf2334;
}
.bottom-link {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }

  .bottom-link li a {
    margin-bottom: 10px;
    color: #ffffffff;
    text-decoration: none;
  }

  @media (max-width: 576px) {
    .bottom-link {
      flex-direction: column;
      margin-left: 14px;
    }
    .bottom-link li a {
     margin-bottom: 4px;
    }
  }
/* Ensure all tour images are same size */
.tour-card .ratio img {
  object-fit: cover; /* crop and fit nicely */
  height: 100%; /* fill the ratio */
  width: 100%;
}

/* Smooth hover animation */
.table-hover tbody tr:hover {
  background-color: #fff3cd !important; /* Light yellow */
  transform: scale(1);
  transition: all 0.2s ease-in-out;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/*# sourceMappingURL=style.css.map */
