 /* Reset CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }

        body {
            background: linear-gradient(45deg, #1a1a1a, #3b3b3b);
            color: #f5f5f5;
            overflow-x: hidden;
            font-size: 18px;
            padding-top: 5rem;
            transition: background 0.5s ease;
        }

        /* Navigation Bar */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 999;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #FFD700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .menu li {
            position: relative;
        }

        .menu li a {
            color: #fff;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
            padding: 0.5rem;
            transition: transform 0.3s ease;
        }

        .menu li a:hover {
            color: #FFD700;
            transform: scale(1.1);
        }
		  
         /* Customize Back to Home Button */
    .action-buttons a {
        display: inline-block;
        padding: 1rem 2rem;
        background-color: #FFD700;
        color: #111;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 600;
        border-radius: 50px; /* Rounded button */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        margin-top: 20px;
    }

    .action-buttons a:hover {
        background-color: #f5a623;
        transform: translateY(-3px);
        color: #fff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .action-buttons a:focus {
        outline: none;
        border: 2px solid #FFD700;
    }

    /* Adjust placement in navigation */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

        /* Hero Section with Slideshow Background Image */
        #home.hero {
            position: relative;
            height: 100vh;
            background: url('car10.png') center/cover no-repeat;
            background-attachment: fixed;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: center;
            z-index: 1;
            animation: fadeIn 2s ease-out;
            filter: brightness(1.5); /* Increases brightness by 50% */
            transition: background 0.5s ease;
        }

        #home.hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: -1;
        }

        #home.hero h1 {
            font-size: 5rem;
            font-weight: bold;
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 0px 0px 15px rgba(255, 215, 0, 0.6);
        }

        #home.hero p {
            font-size: 1.6rem;
            color: #fff;
            margin-bottom: 30px;
            opacity: 0.8;
        }

        .cta-button {
            padding: 1.2rem 3rem;
            background-color: #FFD700;
            font-size: 1.5rem;
            color: #111;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .cta-button:hover {
            background-color: #f5a623;
            transform: scale(1.1);
        }

        /* Keyframe Animation for Hero Section FadeIn */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Slideshow Background Animation */
      @keyframes slideshow {
    0% { 
        background-image: url('car10.png'); 
        transform: translateX(-100%) translateY(0); /* Image starts off-screen from the left */
        opacity: 1; /* Initially invisible */
    }
    20% { 
        background-image: url('car10.png'); 
        transform: translateX(0) translateY(0); /* Image comes into its original position */
        opacity: 1; /* Fully visible */
    }
    40% { 
        background-image: url('car2.png'); 
        transform: translateX(0) translateY(0); /* Image stays at its position */
        opacity: 1; /* Fully visible */
    }
    60% { 
        background-image: url('car8.png'); 
        transform: translateX(0) translateY(0); /* Image stays at its position */
        opacity: 1; /* Fully visible */
    }
    80% { 
        background-image: url('car9.png'); 
        transform: translateX(0) translateY(0); /* Image stays at its position */
        opacity: 1; /* Fully visible */
    }
    100% { 
        background-image: url('car10.png'); 
        transform: translateX(100%) translateY(100%); /* The current image moves down and out of view */
        opacity: 0; /* The image disappears as it moves down */
    }
}

        /* Apply the slideshow effect to the hero section */
        #home.hero {
		 animation: slideshow 40s infinite; /* Apply the animation to the hero section */
    background: url('car19.png') center/cover no-repeat; /* Default image */
    background-attachment: fixed;
    position: relative;
    height: 100vh;
    transition: background 0.5s ease; /* Smooth transition for background */
         }

        /* Service Section with Interactive Cards */
        .services {
            background: #222;
            padding: 7rem 2rem;
            position: relative;
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            transition: all 0.3s ease;
        }

        .service-card {
            background: rgba(0, 0, 0, 0.8);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            transform: scale(1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .service-card:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-card:hover img {
            transform: scale(1.1);
        }

        .service-card h3 {
            font-size: 1.8rem;
            color: #FFD700;
            padding: 1.5rem;
            text-align: center;
        }

        .service-card p {
            color: #ddd;
            padding: 1.5rem;
            text-align: center;
            font-size: 1.1rem;
        }

        /* Contact Form Section */
        .contact-form {
            background: #111;
            padding: 5rem 2rem;
            text-align: center;
            border-top: 2px solid #FFD700;
        }

        .contact-form h2 {
            color: #FFD700;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form input, .contact-form textarea {
            padding: 1rem;
            border: 2px solid #FFD700;
            border-radius: 5px;
            background-color: #222;
            color: #fff;
            font-size: 1rem;
        }

        .contact-form input[type="submit"] {
            background-color: #FFD700;
            cursor: pointer;
            color: #111;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .contact-form input[type="submit"]:hover {
            background-color: #f5a623;
            transform: scale(1.05);
        }

        /* Testimonials Section */
        .testimonials {
            background: #222;
            padding: 5rem 2rem;
            color: #fff;
            text-align: center;
        }

        .testimonials h2 {
            font-size: 2.5rem;
            color: #FFD700;
            margin-bottom: 2rem;
        }

        .testimonial-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            background: rgba(0, 0, 0, 0.8);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .testimonial-card p {
            font-style: italic;
            color: #ddd;
        }

        .testimonial-card .customer {
            font-weight: bold;
            color: #FFD700;
            margin-top: 1rem;
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 1024px) {
            .services-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonial-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .services-container {
                grid-template-columns: 1fr;
            }

            .testimonial-cards {
                grid-template-columns: 1fr;
            }

            .cta-button {
                padding: 1rem 2.5rem;
            }

            .nav-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .menu {
                flex-direction: column;
                gap: 1rem;
            }
			.action-buttons a {
                width: 100%;
                margin-bottom: 10px;
            }
        }