



.futuristic-section {
    margin: 0; /* Reset any unwanted margins */
    padding: 0; /* Reset any unwanted padding */
    background: transparent; /* Ensure the section itself is transparent */
}

/* Add this to the parent container if the issue persists */
.container {
    margin: 0 auto; /* Center the container and remove default margins */
    padding: 0; /* Remove unwanted padding */
}








.vehicle-categories {
    background-color: #1b1b1b;
    padding: 50px 20px;
}

.vehicle-categories .categories-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.vehicle-categories .category-item {
    background-color: #2c2c2c;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex: 1 1 calc(33.333% - 20px); /* 3 cards per row */
    transition: transform 0.3s, box-shadow 0.3s;
}

.vehicle-categories .category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.vehicle-categories .category-image img {
    width: 100%;
    height: auto;
    border-bottom: 3px solid #7fc8ff;
}

.vehicle-categories .category-details {
    padding: 20px;
}

.vehicle-categories .category-item h4 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.vehicle-categories .category-item p {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Simple Modern Button */
.simple-button {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.simple-button:hover {
    background-color: #ffffff;
    color: #1b1b1b;
}


@media only screen and (max-width: 768px) {
    /* General Section Styling */
    .futuristic-section {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* Categories Grid */
    .categories-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .category-item {
        width: 90%; /* Adjust width for better spacing on mobile */
        max-width: 400px; /* Prevent it from stretching too large */
        text-align: center;
    }

    .category-image img {
        width: 100%; /* Ensure images scale properly */
        height: auto;
        border-radius: 10px;
    }

    .category-details h4 {
        font-size: 1.2rem;
        margin-top: 10px;
    }

    
}
