body {
    background-color: #212121;
}

[data-bs-theme="dark"] {
    --bs-dark: #121212;
    --bs-dark-rgb: 18, 18, 18;
    --bs-body-bg: #212121;
    --bs-body-color: #deddde;
    --bs-link-color: #ff6f61;
}

/* Car Details - Each vehicle */
.car-spec i,
.car-feature i {
    color: #0d6efd;
}

.car-feature i.bi-check-circle-fill {
    color: #198754;
}

.thumbnail {
    cursor: pointer;
    transition: transform 0.2s;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.custom-ratio {
    height: 590px;
    max-width: 100%;
}
.custom-ratio img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* Car Deetail Index */
.custom_car-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.custom_car-card:hover .custom_book-now {
    transition: 0.5s;
    background-color: #ff4d4f;

}

.custom_car-card:hover {
    border-color: #ff4d4f;
}

.custom_car-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.custom_model-tag {
    background: #0066ff;
    color: white;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.custom_features i {
    color: #ff4d4f;
    margin-right: 5px;
}

.custom_book-now {
    background: #f8f9fa;
    padding: 15px;
    text-align: center;
}

.custom_book-now a {
    text-decoration: none;
    font-weight: 600;
    color: #000;
}

/* Car Deetail Index */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3) !important;
}

.top-fixed {
    margin-top: 50px;
}

.hero-section {
    position: relative;
    height: 100vh;
    background: url('car2.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
}

.car-listing {
    padding: 50px 0;
    background-color: #111;
}

.footer {
    background-color: #111;
    height: 100%;
    width: 100%;
}

.porsche {
    max-width: 500px;
}

.question-section {
    background: linear-gradient(to right, #ff6b6b, #ffa07a);
    color: white;
}


/* Phone */
@media (max-width: 768px) {
    .enquiry-box {
        margin-bottom: 120px;
    }

    .car-maps iframe {
        max-width: 400px;
        margin-top: 10px;
        width: 100%;
    }

    .question-section {
        display: flex;
        flex-direction: column;
    }

    .porsche {
        max-width: 300px;
    }
    .custom-ratio img {
        object-fit: contain;
    }
    .custom-ratio{
        height: auto;
    }
}

/* Smaller Phone */
@media (max-width: 670px) {}