body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('https://i.ibb.co/JFnzYzR/a-realistic-illustration-of-a-spacious-vehicle-shi-MBU7-Jkl1-Sf-CXSXtm-AZYHbw-p-LSw-Nwz-RS82-PH9-QMZ.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.3); /* Adds a black overlay to fade the background */
    color: white;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: black;
}

header img {
    width: 120px;
    height: 60px; /* Ensures the logo is square */
    border-radius: 10%; /* Slightly rounded corners */
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: yellow;
    font-weight: bold;
}

.main-content {
    display: flex;
    justify-content: space-between;
    padding: 50px;
}

.intro-text h1 {
    font-size: 28px;
    color: yellow;
}

.intro-text p {
    font-size: 18px;
}

.quote-form-container {
    width: 400px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 8px;
}

.quote-form h2 {
    color: yellow;
    text-align: center;
}

.quote-form label {
    color: yellow;
    display: block;
    margin-bottom: 5px;
}

.quote-form input[type="text"],
.quote-form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    background-color: #333;
    color: white;
}

.radio-buttons {
    margin-bottom: 10px;
}

.radio-buttons label {
    margin-right: 10px;
    color: yellow;
}

.quote-form button {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: yellow;
    color: black;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
}

.quote-form button:hover {
    background-color: darkyellow;
}
body {
    font-family: 'Roboto', sans-serif; /* Apply the Roboto font throughout the body */
}

.intro-text h1 {
    font-size: 36px;
    color: yellow;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.intro-text p {
    font-size: 20px;
    line-height: 1.6;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px; /* Add more spacing between paragraphs */
}

.btn {
    display: inline-block;
    background-color: yellow;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-shadow: none;
}

.btn:hover {
    background-color: darkyellow; /* Slightly darker yellow on hover for better interaction feedback */
}

.main-content {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    align-items: flex-start; /* Align content to the top if there's uneven content length */
}
.how-it-works {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a; /* Very dark grey for contrast */
    color: white;
}

.how-it-works h2 {
    color: yellow;
    margin-bottom: 20px;
    font-size: 36px; /* Larger font size for main heading */
    font-weight: bold;
    text-transform: uppercase; /* Stylistic choice for emphasis */
}

.contact-number {
    color: yellow;
    font-size: 24px;
    margin-bottom: 40px; /* Space before listing the steps */
    font-weight: bold;
}

.step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    padding: 20px;
    background-color: black; /* Black background for each step */
    border-radius: 10px; /* More pronounced rounded corners */
}

.image-container img {
    width: 100%;
    max-width: 350px; /* Larger images for more visual impact */
    height: auto;
    border-radius: 10px;
    margin-right: 20px; /* Ensures space between image and text */
}

.text-container {
    flex-grow: 1;
    text-align: left;
}

.step h3 {
    color: yellow;
    font-size: 28px; /* Larger and bolder subheadings */
}

.step p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc; /* Lighter gray for better readability */
}

.contact-number a {
    color: yellow; /* Keeps the link yellow to match the heading style */
    text-decoration: none; /* Removes underline from links */
    font-weight: bold; /* Makes it stand out more */
}

.contact-number a:hover, .contact-number a:focus {
    text-decoration: underline; /* Adds underline on hover/focus for better user interaction */
    color: white; /* Changes color to white for contrast when hovering or focusing */
}
.what-we-offer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #f5f5f5; /* Light background for the section */
}

.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px; /* Keeps content well-contained */
    width: 100%;
}

.text-container {
    flex-basis: 50%;
    padding-right: 20px; /* Ensures some space between text and image */
}

.text-container h2 {
    color: #333;
    font-size: 32px;
    margin-bottom: 20px;
}

.text-container p {
    color: #666;
    line-height: 1.6;
    font-size: 18px;
}

.text-container ul {
    list-style-type: square; /* Stylish square bullets */
    margin: 20px 0;
    padding-left: 20px;
}

.text-container li {
    margin-bottom: 10px;
    color: #444;
    font-size: 18px;
}

.image-container {
    flex-basis: 50%;
}

.image-container img {
    width: 100%;
    height: auto;
    max-width: 600px; /* Limits the image size */
    border-radius: 10px; /* Adds a bit of curvature to the edges */
    box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* Soft shadow for depth */
}
header {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0; /* Set the top position to align at the top */
    background-color: black; /* Assuming the header background is black */
    z-index: 1000; /* Ensures the header stays on top of other content */
    padding: 10px 50px; /* Adjust padding to your design */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Optional: adds shadow for better separation from the content */
}

.nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.nav ul li {
    display: inline;
    margin-right: 20px; /* Adjust based on your spacing preferences */
}

.nav ul li a {
    text-decoration: none;
    color: white; /* Adjust based on your color scheme */
    font-weight: bold;
}
.offer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(to right, yellow 50%, black 50%); /* Split background in brand colors */
    width: 100%; /* Ensures full width of the container */
}

h2 {
    color: white;
    font-size: 36px; /* Larger font size for visibility */
    margin-bottom: 30px; /* Space below the heading */
}

.row {
    display: flex;
    justify-content: space-around;
    width: 100%; /* Full container width for better spacing */
    margin-bottom: 20px; /* Space between rows */
}

.offer-box {
    width: 200px; /* Increased box size */
    height: 200px; /* Increased box size */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 15px; /* Soften edges */
    transition: transform 0.3s ease, z-index 0s linear, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    position: relative;
    z-index: 1; /* Normal state z-index */
}

.offer-box p {
    text-align: center;
    font-weight: bold;
    color: black;
    margin: 0; /* Remove default margins for better alignment */
    padding: 10px; /* Padding inside the box for text */
}

.offer-box:hover {
    transform: translateY(-20px) scale(1.5); /* Move up and enlarge on hover */
    z-index: 1000; /* Bring to the forefront */
    background-color: #f8f8f8; /* Lighter background on hover */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5); /* Stronger shadow for depth */
}
.faq-section {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #fff;
}

.faq-questions, .trailer-info {
    width: 48%; /* Adjust based on total width to avoid overflow */
    padding: 10px;
}

.faq-questions h2, .trailer-info h2 {
    color: #333;
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    padding: 10px;
    background: #eee;
    color: #333;
    border: none;
    text-align: left;
    cursor: pointer;
    margin-top: 5px;
}

.faq-answer {
    display: none; /* Hide answers initially */
    padding: 10px;
    background-color: #fff;
    color: black;
    border: 1px solid #ccc;
}

.info-item h3 {
    color: red;
}

.info-item p {
    color: black;
    background-color: #f9f9f9;
    padding: 10px;
    border-left: 5px solid red;
    margin-top: 5px;
}
footer {
    background-color: #000; /* Set background to black */
    color: white;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    border-bottom: 1px solid #444;
}

.footer-logo img {
    width: 150px;
    height: auto;
    border-radius: 15px; /* Rounded corners */
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: yellow; /* Highlight color on hover */
}

.footer-contact p {
    margin: 5px 0;
}

.footer-bottom {
    background-color: #222; /* Darker shade for the bottom part */
    text-align: center;
    padding: 10px 0;
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links, .footer-contact {
        margin-top: 20px;
    }
}