/* body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
} */
.hero-section .alert{
    max-width: 809px;
    width: 100%;
}
.hero-section {
 
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
   
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section .hero-content {
    display: flex
    ;
        flex-direction: column;
        align-content: center;
        align-items: center;
        justify-content: center;
    width: 100%;
    position: relative;
    color: #fff;
    z-index: 2;
   
    padding: 20px;
}

.hero-section .hero-content h1 {
    max-width: 806px;
    font-size: 2.5rem;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
 .hero-section .hero-content h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
 .hero-section .hero-content h1 {
    font-size: 1.2rem;
  }
}
.hero-section .search-bar {
    width: 100%;
    max-width: 809px;
    border: 2px solid white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.hero-section .search-bar select {
    width: auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}


.hero-section .a {
    
   width: 100%;
    /* padding-left: 0;   */
    /* display: flex;
    justify-content: center;
    align-items: center; */
    gap: 5%;
    flex-wrap: wrap;  /* Allow items to wrap on smaller screens */
}

.hero-section .a a {
    
    padding: 10px 20px;
    border: none;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none; /* Remove default underline */
    position: relative; /* For the pseudo-element */
}

.hero-section .a a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* Position the underline just below the text */
    width: 0; /* Initially hidden */
    height: 2px; /* Thickness of the underline */
    background-color: #fff; /* Color of the underline */
    transition: width 0.3s ease; /* Smooth animation effect */
}


.hero-section .a a.selected::after {
    width: 100%; /* Fully expand the underline when selected */
}
.hero-section .a a:hover{
color: #3985C1;
}
.hero-section .a a:hover::after,
.hero-section .a a:focus::after {
    width: 100%; /* Expand the underline fully on hover or focus */
}


/* Style for form  */
.hero-section .hidden {
    display: none;
}

.form {
    width: 100%;
    padding: 30px 30px 0px 30px;
    background: rgb(255, 255, 255); /* Reduce opacity */
    backdrop-filter: blur(5px); /* Reduce blur */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Lighter shadow */
}


 .form-title {
    justify-content: center;
    font-size: 26px;
    font-weight: bold;
    color: #000;
    display: flex;
    padding-bottom: 30px;
}
@media (max-width: 768px) {
  .form {
    padding: 20px 10px;
  }

  .form-title {
    font-size: 20px;
    text-align: center;
  }

  .showPrice-button {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .showPrice-button {
    width: 100%;
  }
}

 .booking-form {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}

.form-row {
    display: flex;
    flex-flow: nowrap;
    gap: 20px;
}
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}


 .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
      position: relative;
    padding-bottom: 20px
}

 .form-group label {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 14px;
    color: black;

}
 .form-group input,
 .form-group select {
    padding: 10px;
    border: 1px solid #bcbcbc;
    border-radius: 10px;
    font-size: 16px;
}

@media (max-width: 768px) {
  .form-group {
    width: 100%;
  }
}
 .search-button {
    padding: 10px 20px;
    background-color: #ffcc00;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    align-items: center;
    width: 40%;
    
}

.search-button:hover {
    background-color: #e6b800;
}

.hero-section .vehicle-gridMargin{
    margin-left: 10%;
    margin-right: 10%;
    width: 35%;
}
.hero-section .vehicle-grid {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: -30px;
}
.hero-section .vehicle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    border: #000 1px solid;
    max-width: 130px;
    padding-top: 8px;
}

.hero-section .vehicle-item img {
    width: 75%;
    height: auto;
    margin-bottom: 5px;
}

.hero-section .vehicle-item p {
    font-size: 14px;
    font-weight: bold;
    margin: 5px 0 !important;
    color: black;
}

.hero-section  .vehicle-item span {
    font-size: 12px;
    color: #E5AF0F;
    font-weight: bold;
    padding-bottom: 3px;
}

.hero-section .vehicle-item:hover {
    transform: scale(1.05);
    border-color: #007bff;
}
.hero-section .vehicle-item.selected {
    border-color: #007bff;
    background-color: #e6f3ff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.5);
    transform: scale(1.05);
}


.showPrice-button {
    background-color: #E5AF0F;
    color: white;
    border: none;
    border-radius: 9px;
    font-size: 13px;
    font-weight: bold;
    padding: 10px;
    
}

 .showPrice-button:hover {
    background-color: #E5AF0F;
}


.hero-section .custom-trip-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    justify-content: center;
    padding-top: 10px;
    text-align: center;
}


.hero-section .custom-trip-counter .trip-label {
    font-weight: bold;
}

.hero-section .custom-trip-counter button {
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
}

.hero-section .custom-trip-counter button:hover {
    background-color: #f0f0f0;
}

.hero-section .custom-trip-counter .trip-count {
    font-size: 16px;
    font-weight: bold;
}

.hero-section .next-button {
    display: inline-flex;
    align-items: end;
    justify-content: end;
    gap: 5px;
    font-size: 16px;
    color: #000;
    text-decoration: none;
}

.hero-section .next-button span:hover {
    cursor: pointer;
    color: #007BFF; /* Hover effect for the span */
}

.hero-section .next-button .arrow {
    font-size: 18px;
    font-weight: bold;
    color: black;
}




.hero-section .hotels-type {
    justify-content: center;
    display: flex;
    gap: 10px;
    color: black;
  
}

.hero-section .hotels-type a {
    padding: 10px 20px;
    border: none;
    color: black;
    font-size: 0.875rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none; /* Remove default underline */
    position: relative; /* Required for pseudo-elements */
}

.hero-section .hotels-type a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* Position the line just below the text */
    width: 0; /* Hidden by default */
    height: 2px;
    background-color: black; /* Underline color */
    transition: width 0.3s ease; /* Smooth animation */
}

.hero-section .hotels-type a:hover::after {
    width: 100%; /* Show the underline when hovering */
}

.hero-section .hotels-type a.selected::after {
    width: 100%; /* Keep the underline fully expanded for the selected option */
}

@media (max-width: 768px) {
    .hero-section .trip-options {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 644px) {

    .hero-section .vehicle-grid {
        display: grid;
        grid-template-columns: auto auto auto;
        justify-content: space-between;
    }
    .hero-section .trip-options {
        width: 100%;
        display: flex;
        justify-content: space-between; 
    }
    .hero-section .trip-options label {
       
        font-size: 12px;
       
    }
    .hero-section .vehicle-gridMargin{
        margin-left: 0;
        margin-right: 0;
    }

}
@media (max-width: 768px) {
  .hero-section .vehicle-gridMargin {
    margin: 0;
    width: 100%;
  }
}


@media (max-width: 992px) {
 .hero-section  .vehicle-item {
    flex: 1 1 calc(33.33% - 15px);
  }
}

@media (max-width: 768px) {
 .hero-section  .vehicle-item {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (max-width: 480px) {
 .hero-section  .vehicle-item {
    flex: 1 1 100%;
  }
}



/* Styling for the dropdown */
.hero-section .dropdown {
    position: relative;
}

#destination-search {
    width: 100%;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

#destination-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

#destination-dropdown.show {
    display: block;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

#destination-dropdown .dropdown-item {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
}

#destination-dropdown .dropdown-item:hover {
    background-color: #f0f0f0;
}


#roomsDropdownMenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
}

#roomsDropdownToggle {
    cursor: pointer;
}



#dropdownMenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
}

#dropdownToggle {
    cursor: pointer;
}
.max-widthRentCar{
    max-width: 870px;
}
.max-widthTrip{
    max-width: 1253px;
}
.max-widthProgram{
    max-width: 921px;
}
.max-widthHotels{
    max-width: 1253px;
}
@media (max-width: 992px) {
  .max-widthRentCar,
  .max-widthTrip,
  .max-widthProgram,
  .max-widthHotels {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.wizard-navigation-header{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px
}


/* Button container to align Add and Delete buttons */
.button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

/* Delete Trip button styling */
.delete-trip-button {
    color: #fff;
    padding: 8px 15px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}


/* Add Trip button styling */
.add-trip-button {
    /* color: #fff;
    padding: 8px 15px;
    font-size: 14px; */
    border: none;
    /* border-radius: 4px;
    cursor: pointer; */
    background-color: none;
}
@media (max-width: 576px) {
  .button-container {
    flex-direction: column;
    gap: 10px;
  }

  .add-trip-button,
  .delete-trip-button {
    width: 100%;
  }
}
