
    
    
    
    .hero-section {
      background-image: url('banner3.webp'); /* Replace with your image */
      background-size: cover;
      background-position: center;
      height: 100vh;
      position: relative;
      color: white;
    }

    .overlay {
      background: rgba(0, 0, 0, 0.6); /* Dark layer */ 
      height: 100%;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
    }

    .content {
      position: relative;
      z-index: 2;
      top:10%;
    }
  

    #hovercolor:hover{
      background-color: orange;
      color:white;

    }


    

    #card h3 {
  margin: 15px 0;
  font-size: 22px;
  font-weight: 700;
}

#card ul {
  text-align: left;
  margin: 15px 0;
}

#card ul li {
  margin: 8px 0;
  list-style: none;
  position: relative;
  padding-left: 22px;
}

#card ul li::before {
  content: "✔";
  color: #d4a017;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.book-btn {
  background: orange;
  color: #fff;
  border: none;
  padding: 10px 25px;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.book-btn:hover {
  background: #b68d12;
}


#card:hover {
  transform: translateY(-5px);
}

#card img {
  width: 100%;
  height: auto;
}


#card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
}


  .booking-card{
    background: rgba(194, 148, 60, 0.92);
    border-radius: 20px;
    padding: 30px;
    max-width: 420px;
    opacity: 0.8;
  }
  .booking-card h2{
    color:#fff;
    font-weight:700;
    text-align:center;
    margin-bottom:25px;
  }
  .form-control, .form-select{
    border-radius: 30px;
    padding: 12px 18px;
    border:none;
    margin-bottom:15px;
  }
  .form-control:focus, .form-select:focus{
    box-shadow:none;
  }
  .btn-book{
    background:#f2a900;
    color:#fff;
    font-weight:600;
    border-radius:30px;
    padding:12px;
    width:100%;
    border:none;
  }
  .btn-book:hover{
    background:#e09b00;
  }





        .services-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #4C51BF 100%);
            color: black;
            padding: 80px 0 40px;
            margin-bottom: 60px;
            text-align: center;
        }
        
        .services-header h1 {
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .services-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Service Card Design - Different from the image but same layout */
        .service-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            height: 100%;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
            border-left: 5px solid var(--accent-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: orange;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 24px;
        }
        
        .service-card h3 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .service-card p {
            color: #4a5568;
            margin-bottom: 0;
        }
        
        /* Different color for each card */
        .service-card:nth-child(1) { border-left-color: #3182CE; }
        .service-card:nth-child(2) { border-left-color: #38A169; }
        .service-card:nth-child(3) { border-left-color: #DD6B20; }
        .service-card:nth-child(4) { border-left-color: #805AD5; }
        .service-card:nth-child(5) { border-left-color: #D53F8C; }
        .service-card:nth-child(6) { border-left-color: #319795; }
        
        .service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, #3182CE, #2C5282); }
        .service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, #38A169, #2F855A); }
        .service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, #DD6B20, #C05621); }
        .service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, #805AD5, #6B46C1); }
        .service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, #D53F8C, #B83280); }
        .service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, #319795, #2C7A7B); }
        
        /* Grid layout matches the image (2x3) */
        .services-grid {
            margin-bottom: 80px;
        }
        
        /* Footer */
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        
        .brand-name {
            color: var(--secondary-color);
            font-weight: 700;
        }
        
        .cta-button {
            background: linear-gradient(to right, var(--secondary-color), #ED8936);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            color: white;
            transition: all 0.3s;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(221, 107, 32, 0.3);
        }
        
        @media (max-width: 768px) {
            .services-header {
                padding: 60px 0 30px;
            }
            
            .service-card {
                padding: 25px;
            }
        }




        /* Custom Styles */
:root {
    --bs-warning-rgb: 255, 193, 7;
    --bs-dark-rgb: 33, 37, 41;
}

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header Styling */
header {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%) !important;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
}

/* Card Styling */
.card {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    border-radius: 15px 15px 0 0 !important;
}

/* Table Styling */
.table {
    margin-bottom: 0;
}

.table thead th {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid #ffc107;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background-color: rgba(255, 193, 7, 0.1) !important;
    transform: scale(1.005);
}

.table tbody td {
    padding: 1rem 1.5rem;
    vertical-align: middle;
}

/* Car Button Styling */
.car-btn {
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.car-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.car-btn:hover::before {
    left: 100%;
}

.car-btn.active {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3) !important;
    border-color: #ff9800;
}

.car-btn .car-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-right: 10px;
}

.car-btn.active .car-icon {
    background: rgba(255, 255, 255, 0.3);
}

/* Price Badge */
.price-badge {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    display: inline-block;
    min-width: 120px;
    text-align: center;
}

/* Selected Car Display */
#selected-car-display {
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
    border: 2px solid #ff9800;
}

/* Footer Styling */
footer {
    border-top: 5px solid #ffc107;
}

/* Animation for table rows */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.table tbody tr {
    animation: fadeIn 0.5s ease-out;
    animation-fill-mode: both;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .car-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .car-btn .car-icon {
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }
    
    h1.display-4 {
        font-size: 2.5rem;
    }
    
    .table tbody td {
        padding: 0.75rem 1rem;
    }
    
    .price-badge {
        min-width: 100px;
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ffc107;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff9800;
}




.dropdown-toggle {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  font-size: 16px;
}

.nav-item > a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 300px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 4px;
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}



.dropdown-menu a:last-child {
  border-bottom: none;
}



/* Show dropdown when active class is present */
.dropdown-menu.active {
  display: block;
}



@media (max-width: 575.98px) { 

  .hero-section{
    height: 1400px;
  }





   #mobileshow{
    display: block;
 }


  #mobilehide{
    display: none;
 }


 #navbarSupportedContent{

    text-align: center;
 }

 }








 @media (min-width: 575.98px) { 


     #mobileshow{
    display: none;
 }


 }





   /* Section Title */
        .section-title {
            color: #333;
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--bs-warning);
            margin: 15px auto;
            border-radius: 2px;
        }
        
        /* Services Grid */
        .service-item {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #eee;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 193, 7, 0.1);
            border-color: var(--warning-light);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--warning-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--warning-text);
            font-size: 28px;
            border: 2px solid var(--bs-warning);
        }
        
        .service-item h3 {
            color: #333;
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .service-item p {
            color: #666;
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .service-btn {
            background-color: var(--bs-warning);
            color: var(--warning-text);
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .service-btn:hover {
            background-color: var(--warning-dark);
            color: var(--warning-text);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
        }