
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body, html {
      height: 100%;
    }

    .background {
      background: url("./imgs/bus.jpg") 
                  no-repeat center center/cover;
      background-blend-mode: color;
      background-color: #4f4e4e8b;   
      background-attachment: fixed;
      background-position: cover;         
      display: flex;
      height: 100vh;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .booking-container {
      /*background:linear-gradient(135deg, #0066ff, #00c6ff);*/
      backdrop-filter: blur(10px);
      padding: 2rem 2.5rem;
      border-radius: 10px;
      width: 90%;
      max-width: 750px;
      color: white;
      box-shadow: 0 4px 20px rgba(0, 0, 1, 1);
    }

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

    .logo img {
      width: 30px;
    }

    .logo h2 {
      font-size: 1.4rem;
      letter-spacing: 1px;
    }

    .logo span {
      color: #ffcc00;
    }

    header h3 {
      margin-top: 10px;
      text-align: center;
      font-weight: 500;
      font-size: 1.2rem;
    }

    .tabs {
      display: flex;
      justify-content: center;
      margin: 1rem 0;
    }

    .tabs button {
      background: transparent;
      border: 1px solid white;
      color: rgb(251, 251, 246);
      padding: 0.5rem 1.2rem;
      margin: 0 5px;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .tabs button.active {
      background: linear-gradient(135deg, #0066ff, #00c6ff);
      color: #333;
      border:0;
      font-weight: 600;
    }

    .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .form-group {
      flex: 1;
      min-width: 150px;
    }

    label {
      display: block;
      margin-bottom: 5px;
      font-size: 0.9rem;
    }

    input, select {
      width: 100%;
      padding: 0.5rem;
      border-radius: 4px;
      border: none;
      outline: none;
    }

    .counter {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .counter button {
      width: 25px;
      height: 25px;
      background: linear-gradient(135deg, #0066ff, #00c6ff);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      font-weight: bold;
    }

    .search-btn {
      width: 100%;
      background:  linear-gradient(135deg, #0066ff, #00c6ff);
      border: none;
      padding: 0.8rem;
      border-radius: 5px;
      color: #333;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      transition: ease-in-out 1s;
    }

    .search-btn:hover {
      background: #ffd633d1;
    }

    .add-destination {
      background: none;
      border: 1px dashed #ffcc00;
      color: #ffcc00;
      padding: 5px 10px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 0.9rem;
      margin-top: -5px;
    }

    footer {
      color: white;
      font-size: 0.8rem;
      text-align: center;
      margin-top: 1rem;
    }

    .hidden {
      display: none;
    }

    /* === Back Arrow Button === */
.back-arrow {
  position: fixed;
  top: 1.5rem;
  left: 2.3rem;
  background: rgba(255, 255, 255, 0.15);
  color: #0088ff;
  font-size: 1.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  transition: 0.3s ease;
  backdrop-filter: blur(5px);
  line-height: 1;
}

.back-arrow:hover {
  background: #ffcc00;
  color: #000;
  transform: scale(1.05);
}


/* =========================================
   RESPONSIVE DESIGN (DON'T MODIFY ABOVE)
   ========================================= */

/* Tablet Screens */
@media (max-width: 992px) {
  .booking-container{
    width: 95%;
  }
    
}

/* Mobile Screens */
@media (max-width: 768px) {
  .booking-container{
    width: 96%;
  }
}

/* Very Small Phones */
@media (max-width: 480px) {
    .booking-container{
      width: 95%;
      background-position: center;
      background-size: cover;
      background-attachment: fixed;
    }
    header h3{
      margin-top: 20px;
    }
   
}
