.bg-blue,.btn-blue{
    background-color: #02122c;
}
.bg-grey{
    background-color: #dddde5;
   
}
.fs-8{
    font-size: 12px;
}
.btn-grey{
    background-color: #dddde5;
}
.flightimg{
    background-image: url('./assetts/hero-flight-img.jpg');
   background-position: center;
   background-size: cover;
}
.carimg{
    background-image: url('./assetts/car2.jpg');
    background-position: center;
    background-size: cover;
}
.hotelimg{
    background-image: url('./assetts/hotelimg.webp');
    background-position: center;
    background-size: cover;
}
.btn-green{
    background-color: #00a698;
}
.form-control::placeholder{
    font-size: 12px;
}
.bg-small-blue{
background-color: #042759;
}
.text-orange{
    color: #ff7b59;
}
/* btn active colour */
.btn.active {
    background-color: #02122c;
}

  /* button visibility control*/
.content {
    display: none;
  }

/*No of guest,room dialogue*/
#bookingOptions {
    display: none;
    position: absolute;
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 10px;
    z-index: 1;
    border-radius: 5px;
    min-width: 200px;
  }
  

  .option-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .option-row input[type="number"] {
    width: 30px;
    text-align: center;
    margin: 0;
    border: none; 
  }
  .option-row button {
    cursor: pointer;
    padding: 5px;
    border: none;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 5px;
    margin: 0 5px; 
  }
  .option-row button:hover {
    background-color: #0056b3;
  }
  .option-row span {
    margin-right: 10px; 
  }
  #doneButton {
    cursor: pointer;
    padding: 8px 20px;
    border: none;
    background-color: #28a745;
    color: #ffffff;
    border-radius: 5px;
    margin-top: 10px;
  }
  #doneButton:hover {
    background-color: #218838;
  }



 



  /*FAQS*/
.faq {
    border-bottom: 1px solid #ccc;
    margin: 5px;
    padding: 20px;
    cursor: pointer;
  }
  
  .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
  }
  
  .plus-icon {
    display: grid;
    place-items: center;
    position: relative;
    font-size: 25px;
  }
  
  .plus-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e6e6e6;
    z-index: -1;
  }
  
  .answer {
    display: none;
    padding: 15px 0;
    color: #000;
  }
  
  .faq.active .answer {
    display: block;
  }
  .tool-container {
    display: flex;
    gap: 20px;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  .tool-container img {
    max-width: 120px;
    height: 60px;
   
  }


/* footer*/
  .quick-links {
    display: flex;
    flex-direction: column;
    gap:0.7rem;
    list-style: none; 
    padding: 0;
    margin: 0;
}

.quick-links li {
    display: inline-block; 
    margin-right: 20px; 
}

.quick-links li:last-child {
    margin-right: 0; 
}

.quick-links li a {
    color: white; 
    text-decoration: none; 
}
.quick-links li a::after {
  content: ' →'; 
  margin-left: 5px; 
}