body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #000;
  }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #000,#000000bb);
    padding: 10px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0; 
    right: 0; 
    width: 100%; 
    z-index: 1000;
    box-sizing: border-box; 
}

.logo img {
    height: 60px;

}

/* Toggle Button */
.toggle-btn {

    color: #ffd700;
    font-size: 24px;
    background: none;
    position:relative;
    top:20px;
    left: 530px;
    cursor: pointer;
    border:none;
    transition: all 0.3s ease-in-out;
}

.toggle-btn:focus, .toggle-btn:active {
    color: #ffd700; 
    transform: scale(1.1); 
    outline: none;  
}
/* Sidebar Styling */
.sidebar {
    position: fixed;
    top: 0;
    left: -350px; /* Hidden off-screen initially */
    width: 300px;
    height: 100%;
    background: linear-gradient(to bottom, #000000, #203a43);
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 1100;
}

.sidebar.open {
    left: 0; /* Reveal sidebar */
}

/* Close Button */
.close-btn {
   
    color: #ffd700;
    border: none;
    font-size: 24px;
    align-self: flex-end;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.close-btn:hover {
    background-color: #ffd700;
   
}

/* Sidebar Links */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
    gap: 20px;
}

.nav-list a {
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease-in-out;
    padding: 5px 10px;
   
}

.nav-list a:hover {
    color: #ffd700;
    
}


.nav-list li:hover .dropdown {
    display: flex; /* Show dropdown on hover */
}

@media (max-width: 480px) {
    /* Navigation Container */
    .nav-container {
        padding: 8px 10px; /* Reduced padding for smaller screens */
        flex-wrap: wrap; /* Allow wrapping for narrow devices */
    }

    /* Logo */
    .logo img {
        height: 30px; /* Smaller logo size for smartphones */
        margin: 0 auto; /* Center-align the logo for aesthetic balance */
    }

    /* Toggle Button */
    .toggle-btn {
        font-size: 18px; /* Adjusted font size for mobile */
        top: 0;
        left: auto;
        right: 15px; /* Keep toggle accessible at the right edge */
    }

    /* Sidebar */
    .sidebar {
        width: 70%; /* Slightly narrower sidebar for small devices */
        height: 100vh; /* Ensures sidebar covers the full height */
        overflow-y: auto; /* Adds scrolling for longer menus */
    }

    /* Close Button */
    .close-btn {
        font-size: 16px; /* Compact size for smartphones */
        padding: 5px; /* Adjusted padding for smaller devices */
    }

    /* Navigation Links */
    .nav-list a {
        font-size: 12px; /* Optimized font size for small screens */
        padding: 8px; /* Adjust spacing for mobile */
        text-align: center; /* Center-align for simplicity */
        display: block; /* Ensure block display for proper stacking */
    }

    .nav-list {
        gap: 10px; /* Compact spacing between items */
    }

}
@media (max-width: 768px) {
    .nav-container {
        padding: 15px;
        flex-wrap: wrap;
    }
    .logo img {
        height: 40px;
    }
    .toggle-btn {
        font-size: 22px;
        right: 18px;
    }
    .sidebar {
        width: 50%;
    }
    .close-btn {
        font-size: 17px;
        padding: 8px;
    }
    .nav-list a {
        font-size: 14px;
        padding: 10px;
    }
    .nav-list {
        gap: 15px;
    }
}



  
  /* Booking Section */
  .booking-section {
    background: url('img/pexels-33843172-7060099.jpg') no-repeat center center/cover;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
  }
  
  .booking-text-box {
    background-color: rgba(0, 0, 0, 0.7); 
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
  }
  
  .booking-text-box h2 {
    font-size: 40px;
    text-transform: uppercase;
    color: #ffd700;
  }
  
  .booking-text-box p {
    font-size: 18px;
    margin-top: 10px;
    color: #000;
  }
  
  /* Booking Form */
  .booking-form {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
  }
  
  .booking-form label {
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 5px;
    display: block;
  }
  
  .booking-form input,
  .booking-form select {
    padding: 12px;
    font-size: 16px;
    width: 100%;
    border: 1px solid #aaa;
    border-radius: 8px;
    background-color: #f1f1f1;
  }
  
  .booking-form input:focus,
  .booking-form select:focus {
    border-color: #ffd700;
    background-color: #fff;
    outline: none;
  }
  
  .booking-form button {
    margin-top: 25px;
    padding: 15px;
    font-size: 18px;
    background-color: #2c5364;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .booking-form button:hover {
    background-color: #ffd700;
    color: #000;
  }
  
  
  /* Map */
  #map {
    width: 100%;
    height: 400px;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .booking-text-box h2 {
      font-size: 28px;
    }
  
    .booking-text-box p {
      font-size: 14px;
    }
  
    .booking-form {
      padding: 25px;
    }
  
    #map {
      height: 300px;
    }
  
  


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}
    
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }




/* About Us Section */
.About-us {
    padding: 60px 20px;
    background-color: #f4f4f4;
    color: #000;
}

.about-container {
    display: flex;
    flex-wrap: nowrap; /* Allow items to wrap to the next line */
    justify-content: center; /* Ensure space is evenly distributed */
    gap: 50px; /* Space between cards */
    max-width: 1200px;
    width: 100%;
    margin: auto;
    align-items: center;
}

.about-card {
    display: flex;
    flex-direction: column; /* Vertical layout of image and text */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 50% 50%;
    color: #000;
}

.about-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-image {
    width: 100%;
    overflow: hidden;
}

.card-image img {
    width: 50%;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 10%;
}

.card-image:hover img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
}

.card-content h2 {
    font-size: 30px;
    color: #000;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.card-content p {
    font-size: 20px;
    color: #000;
    line-height:1.8;
    font-family: 'Arial', sans-serif;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column; /* Stack the cards vertically on smaller screens */
        align-items: center;
    }

    .about-card {
        width: 100%; /* Full width for each card */
    }

    .card-content h2 {
        font-size: 20px;
    }

    .card-content p {
        font-size: 14px;
    }
}
.services {
    text-align: center;
    padding: 50px 20px;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    background: #fff;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    border-radius: 10px;
}

.service-card h3 {
    font-size: 20px;
    margin-top: 15px;
}

.service-card p {
    color: #666;
}


.gallery {
    max-width: 100%;
    margin: 30px auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
  }

  .car-card {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: max-content;
    touch-action: pan-y;
  }

  .car-card img {
    width: 100vw;
    height: 60vh;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 0;
  }

  .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 8px 16px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
  }

  .btn:hover {
    background: #fff;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  @media (max-width: 600px) {
    .btn {
      padding: 6px 12px;
      font-size: 20px;
    }
  }


  
 
  
  .map-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
  }

  .map-iframe {
    flex: 1 1 45%;
    min-width: 300px;
    height: 450px;
    border: 0;
  }

  @media (max-width: 768px) {
    .map-iframe {
      flex: 1 1 100%;
      height: 400px;
    }
  }

.container {
  display: flex;
  overflow: hidden;
  justify-content: center;
}

.slider-wrapper {
  width: 100%;
  overflow: hidden;
}

.card-list {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.card-item {
  flex: 0 0 auto;
  width: 80%;
  max-width: 400px;
  scroll-snap-align: center;
  aspect-ratio: 4 / 3; /* Maintain a consistent box size */
  overflow: hidden; /* Ensure image doesn't overflow */
  border-radius: 10px;
}

.car-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes sure image fills the box without stretching */
  border-radius: 10px;
}



@media (max-width: 600px) {
  .card-item {
    width: 90%;
  }
}

