.site-name {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin-left: 10px;
}

#cityResults {
    max-height: 300px;
    overflow-y: auto;
    z-index: 1050;
}

.city-result-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.city-result-item:hover {
    background-color: #f8f9fa;
}

.city-name {
    font-weight: bold;
}

.iata-code {
    float: right;
    font-weight: bold;
    color: #333;
}

.airport-name {
    font-size: 0.9em;
    color: #777;
    margin-top: 2px;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

#loadingModal {
    z-index: 1200 !important;
    /* Ensure it appears above other content */
}

.tm-bg-video {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.tm-bg-video video.tmVideo {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.tm-bg-video .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    pointer-events: none;
}

.tm-bg-video .overlay i {
    margin: 0 10px;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
    pointer-events: auto;
    cursor: pointer;
}

.tm-bg-video .overlay i:hover {
    opacity: 1;
}

/floating chat button styling/
.chat-container {
    position: fixed;
    bottom: 30px;
    right: 38px;
    z-index: 9999;
}

.chat-button {
    position: relative;
    left: 5px;
    background: linear-gradient(45deg, #dcb909, #bc5f70, #1b31a0);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.chat-icons {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

.chat-icons.show {
    opacity: 1;
    pointer-events: auto;
}

.icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.icon.whatsapp {
    background-color: #25d366;
    background-image: url('https://cdn-icons-png.flaticon.com/512/733/733585.png');
}

.icon.x {
    background-color: #fafafa;
    background-image: url('https://cdn-icons-png.flaticon.com/512/5968/5968830.png');
}

.icon.facebook {
    background-color: #0084ff;
    background-image: url('https://cdn-icons-png.flaticon.com/512/1384/1384005.png');
}

.icon.instagram {
    background-color: #bc5f70;
    background-image: url('https://cdn-icons-png.flaticon.com/512/2111/2111463.png');
}

/* Responsive spacing and layout for content inside video section */
@media (max-width: 768px) {
    .navbar-title {
        font-size: 0.5em;
    }

    .tm-media-container {
        padding: 1rem;
    }

    .tm-media-title-container {
        text-align: center;
        margin-bottom: 1rem;
    }

    .tm-media-1 {
        flex-direction: column;
        text-align: center;
    }

    .tm-media-1 img {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }

    .tm-media-body-1 {
        text-align: left;
    }

    .tm-bg-video .overlay i {
        font-size: 3rem;
    }
}



//CSS FOR BEST HOTELS DEALS...
.hotels-container {
  padding: 100px;
  background-color: #f9fafb;
}
.hotels-deal-title{
  background-color: #ee5057; 
  color: white;
  padding: 10px;
  border-radius: 6px;
  font-size: 30px;
  margin-bottom: 10px;
  text align:center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;

}
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.city {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.city img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}

.city-name {
  font-weight: bold;
  font-size: 18px;
  color: #ee5057; 
  margin-top: 10px;
}
.city-country {
    font-size:12px;
 
  //margin-top: 10px; 
  
}