/* style.css */
:root {
    --primary-color: #0d6efd; /* Bootstrap Blue */
    --secondary-color: #6c757d;
    --dark-bg: #111827; /* Dark Navy/Black */
    --light-bg: #f8f9fa;
    --accent-red: #dc3545;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: var(--light-bg);
}

/* Top Bar */
.top-bar {
    background-color: #0b111d;
    color: #ccc;
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.top-bar a:hover {
    color: #fff;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}
.navbar-brand img {
    max-height: 50px;
}
.nav-link {
    font-weight: 600;
    color: #333 !important;
    text-transform: uppercase;
    font-size: 1rem;
}
.nav-link:hover {
    color: var(--primary-color) !important;
}
.dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Hero & Form Section */
.hero-section {
    background: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.8)), url('img/engine-bg.jpg'); /* Add a bg image here if you have one */
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: white;
}

.search-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-color); /* Adds a blue line at the top */
}

.search-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
	color: #555;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.3rem;
}

/* Content Sections */
.trust-badges img {
    max-height: 60px;
    margin: 10px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}
.trust-badges img:hover {
    filter: grayscale(0%);
}

.feature-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    background: white;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 20px;
}
.stars { color: #ffc107; }

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: #aaa;
    padding: 50px 0 20px;
}
footer h5 {
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1.1rem;
}
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: #aaa; text-decoration: none; }
footer ul li a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
}