  /* Custom styles */
  .navbar-brand img {
    height: 40px;
}
.nav-link {
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #007bff !important;
}
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}
.hero-section .carousel-item img {
    object-fit: cover;
    height: 600px;
}
.booking-form {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    z-index: 10;
    max-width: 400px;
}
.car-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.car-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.feature-icon {
    font-size: 3rem;
    color: #007bff;
    transition: transform 0.3s ease;
}
.feature:hover .feature-icon {
    transform: scale(1.1);
}
.testimonial-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
}
.btn-primary {
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}
/* p&pcss */
.page-cover {
    background-image: url('your-image-path.jpg'); 
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: white;
}

.breadcrumb-wrapper {
    background-color: rgb(239 239 239);
    padding: 25px 0;
    width: 100vw; 
    margin-left: calc(-50vw + 50%); 
}

.breadcrumb {
    padding: 0.75rem 1rem; 
    background-color: transparent; 
    font-size: 0.875rem; 
}

@media (max-width: 576px) {
    .breadcrumb {
        font-size: 0.8rem; 
        padding: 0.5rem 0.75rem; 
    }
}


 /* Theme Color Variables */
 :root {
    --primary-color: #e9a84e; /* Changed from Bootstrap primary to green */
    --secondary-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

/* Navbar Styling */
.navbar {
    background-color: var(--primary-color) !important;
}
.navbar-brand img {
    height: 50px;
}
.nav-link {
    color: #fff !important;
    margin-left: 15px;
}
.nav-link:hover {
    color: var(--light-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.hero-section .carousel-item img {
    height: 100vh;
    object-fit: cover;
}

/* Booking Form Design */
.booking-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    max-width: 600px;
    width: 100%;
}
.booking-form h3 {
    color: var(--dark-color);
}

/* Our Cars Section */
#cars .card {
    border: none;
    transition: transform 0.3s;
}
#cars .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Features Section */
.feature-icon {
    color: var(--primary-color);
}
.feature h4 {
    color: var(--dark-color);
}

/* About Us Section */
#about h2 {
    color: var(--dark-color);
}

/* Testimonials Section */
.testimonial-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    text-align: center;
}
.testimonial-item p {
    font-style: italic;
    color: #555;
}
.testimonial-item strong {
    display: block;
    margin-top: 15px;
    color: var(--dark-color);
}

/* Contact Section */
#contact h2 {
    color: var(--dark-color);
}
#contact form {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color:#e9a84e;
    color: #fff;
}
footer a {
    color: #adb5bd;
    text-decoration: none;
}
footer a:hover {
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .booking-form {
        max-width: 90%;
        padding: 20px;
    }
    .navbar-brand img {
        height: 40px;
    }
}
.form-group-lg {
    margin-bottom: 20px;
}
.btn-lg {
    width: 50%;
}
.fab {
    font-size: 30px;  
}

