

        /* ****FADE IN **** */
/* Fade-In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* General About Section Styling */
.about {
    padding: 60px 0;
    background-color: #000000; /* Matches your dark theme */
    color: #fff; /* White text for readability */
}

/* Content Styling */
.about .content {
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.8;
    padding-right: 20px; /* Add a subtle gap between text and image */
}

.about .section-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about .section-subtitle {
    font-size: 1.4rem;
    color: #f9a825;
    margin-bottom: 15px;
}

.about .list-unstyled {
    margin-top: 20px;
}

.about .list-icon {
    margin-right: 10px;
    color: #f9a825;
}

.about .list-text p {
    margin: 0;
}

/* Image Styling */
.about .item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Divider Line */
.divider-line {
    height: 2px;
    background-color: #E63946;
    margin: 40px

}
        
                
                
                
           /**** FEATURED CARS *****/
           
/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.cars1 {
    padding: 60px 15px;
}

.cars-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Car Item */
.car-item {
    flex: 0 0 30%; /* 3 columns on desktop */
    background-color: #2b2b2b;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.car-item:hover {
    transform: scale(1.05);
}

.car-image img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.car-details h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: #bbb;
}

.car-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cars-carousel {
        flex-direction: column;
        align-items: center;
    }

    .car-item {
        flex: 0 0 80%; /* Full width for tablet */
        margin-bottom: 20px;
    }

    .car-details h4 {
        font-size: 1.5rem;
    }

    .details-list {
        font-size: 1rem;
    }

    .car-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .car-item {
        flex: 0 0 100%; /* Full width for mobile */
    }

    .car-details h4 {
        font-size: 1.2rem;
    }

    .details-list {
        font-size: 0.8rem;
    }

    .car-price {
        font-size: 1.2rem;
    }
}




         
        @keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.rental-list {
    animation: fadeIn 1.5s ease-in-out;
}   
           
           
           
           


/* PROCESS NUMBER */



.button-1 {
    cursor: pointer;
    pointer-events: auto;
    display: inline-block;
}




.btn-double::before,
.btn-double::after {
    content: none;
    display: none;
}

