/* Banner Styles */
#banner {
    height: 100px;
    width: 100%;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}
#banner p {
    margin: 0;
}
#banner p span {
    color: #cc6018;
}

/* Image Slider Styles */
.image-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    margin: 0 0 40px 0;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide.active {
    opacity: 1;
}

/* Static Content Box */
.slide-content {
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    max-width: 400px;
    width: 100%;
}

.container-side {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
}
.container-full {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    margin: 40px 0;
    align-items: center;
    position: relative;
}

/* Vertical Line Between Sections */
.container-full::before {
    content: "";
    width: 2px; /* Line width */
    height: 100%; /* Adjust height */
    background: #ccc; /* Line color */
    position: absolute;
    left: 65%;
    transform: translateX(-50%);
}
.con-about {
    width: 50%;
    padding: 20px;
}

.con-about #about-one {
    margin: 0 0 30px 0;
    padding: 10px;
    background-color: #ebebeb;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Heading */
.header-side h1 {
    font-size: 24px;
    color: #cc6018;
    margin-bottom: 10px;
}

/* Checkbox Option */
.option {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    
}
.option input {
    margin-right: 10px;
    animation: none;
}

/* Input Fields */
.input-group {
    position: relative;
    margin: 10px 0;
}
.input-group .icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: gray;
}
.input-group input {
    width: 85%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    animation: none;
}

/* Button */
.btn {
    background: #cc6018;
    color: white;
    padding: 12px;
    border: none;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}
.btn:hover {
    background: #cc6018;
}

/* Features */
.features {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
    color: black;
}
.feature {
    display: flex;
    align-items: center;
}

/* Hide Drop-off Fields Initially */
.dropoff-field {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content {
        left: 50%;
        top: 55%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 768px) {
    .slide-content {
        width: 90%;
        text-align: center;
    }
    .container-side {
        width: 100%;
        padding: 15px;
    }
    .btn {
        font-size: 14px;
        padding: 10px;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .container-full {
        flex-direction: column;
    }
    .container-full::before {
        display: none; /* Remove line on small screens */
    }
    .con-about, .container-side {
        width: 90%;
        text-align: center;
    }
}


.container-home {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.car-scroll {
    display: flex;
    gap: 20px; /* Spacing between cars */
    padding: 10px 0;
}

.car-box {
    flex: 0 0 auto;
    width: 250px; /* Adjusted width */
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 15px;
    text-align: center;
    user-select: none;
    position: relative;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #ddd;
}
.car-box h3{
    text-align: start;
}
.car-box img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.car-name {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
    color: #333;
}

/* Pricing Styles */
.car-price {
    font-size: 18px;
    font-weight: bold;
    color: #cc6018;
    background: #e6f0ff;
    padding: 5px 10px;
    margin-bottom: 10px;
    text-align: end;
}

/* View Details Button */
.details-button {
    display: block;
    background: #cc6018;
    color: #fff;
    padding: 8px 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
}

.details-button:hover {
    background: black;
    color:white;
}

/* Horizontal Scrolling */
.car-scroll-container {
    display: flex;
    overflow: hidden; /* Hide scrollbars */
    cursor: grab;
    scroll-behavior: smooth;
    user-select: none;
}

.car-scroll-container.active {
    cursor: grabbing;
}
