.story-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('factory.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.history-img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.history-img:hover {
    transform: scale(1.02);
}

.highlight-text {
    color: #ff0000;
    font-weight: bold;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald';
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

#video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease;
}

#intro-video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.fade-out {
    opacity: 0;
    pointer-events: none;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    margin-left: 10px;
}

.navbar-nav .nav-link:hover {
    color: #ff0000 !important;
}

.carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    margin: 30px auto;
    max-width: 95%;
}

.carousel img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

section {
    padding: 60px 0;
}

section h2 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.car-card {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: white;
    height: 100%;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.car-card img {
    height: 250px;
    object-fit: contain;
    padding: 20px;
    background-color: #f8f9fa;
}

.car-card .card-body {
    padding: 30px;
}

.car-card .card-title {
    font-weight: 600;
    color: #333;
}

/* --- Features Section --- */
.feature-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: white;
}

.feature-icon {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 20px;
}

/* --- Testimonial Section --- */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card i {
    color: #ffcc00;
    /* Star color */
}

/* --- Footer --- */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

footer a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: #ff0000;
}