/*****************************   Header code   **********************************************/
 .navbar-brand img {
      max-height: 70px;
    }

    a.nav-link {
    font-size: 18px;
    font-weight: 400;
}
    .login-btn {
      background-color: #ef9b1e;
      color: #fff !important;
      font-weight: bold;
      padding: 6px 15px;
      border-radius: 8px;
    }
  .toggle-container {
      background-color: #fff;
      border-radius: 50px;
      display: inline-flex;
      padding: 5px;
      overflow: hidden;
    }

    .toggle-btn {
      border: none;
      padding: 10px 25px;
      border-radius: 50px;
      font-weight: bold;
      transition: all 0.3s ease;
      cursor: pointer;
      color: #555;
      background-color: transparent;
    }

    .toggle-btn.active-customer {
      background-color:#dc3545; /* Bootstrap primary */
      color: #fff;
    }

    .toggle-btn.active-driver {
      background-color: #dc3545; /* Bootstrap danger */
      color: #fff;
    }
    /* Hover dropdown for desktop */
    @media (min-width: 992px) {
      .offcanvas {
        display: none !important;
      }

      .navbar-nav {
        align-items: center;
      }

      .navbar-collapse {
        display: flex !important;
        justify-content: flex-end;
      }

      .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
      }
    }

    /* Mobile dropdowns inside offcanvas */
    .offcanvas .dropdown-menu {
      display: none;
      padding-left: 1rem;
      background-color: #f9f9f9;
      border: none;
    }

    .offcanvas .dropdown.show .dropdown-menu {
      display: block;
    }

    .offcanvas .dropdown-toggle::after {
      float: right;
      margin-top: 8px;
    }
    section.header {
    position: absolute;
    width: 100%;
    background-color: #ffffff61;
}

/*****************************   Header code End   **********************************************/

/************************** main body *****************************/
 .bg-image {
      background-image: url('../images/concert-image.jpg'); /* You can replace this with your image */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 100vh;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
     .bg-contact {
      background-image: url('../images/thankyou-bg-1.png'); /* You can replace this with your image */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 100vh;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .bg-thankyou {
      background-image: url('../images/thankyou-bg-1.png'); /* You can replace this with your image */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 100vh;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-banner {
      background-image: url('../images/about-banner.jpg'); /* You can replace this with your image */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 70vh;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .glass-box {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 40px;
      border-radius: 20px;
      text-align: center;
      color: white;
      max-width: 450px;
      box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    }

    .glass-box h1 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .glass-box p {
      font-size: 1.1rem;
      margin-bottom: 30px;
    }

    .glass-box .btn {
      padding: 10px 25px;
      font-size: 1rem;
      border-radius: 30px;
    }

button.navbar-toggler.border-0 {
    position: absolute;
    top: 10px;
    z-index: 9;
    right: 10px;
}
button.navbar-toggler.border-0:focus{
    box-shadow:none;
}
.footer{
    background-color: #ffffff61;
}
.side-1-img{
    border:1px solid #e6e6e6;
    border-top-left-radius:30px;
    border-bottom-right-radius:30px;
}