/* Navbar Container */
.neumorphism-navbar {
    width: 100%;
    padding: 12px 30px;
    background: #e0e5ec;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* Inner container for brand + links */
.nav-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand */
.nav-brand {
    text-decoration: none;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 15px;
    background: #e0e5ec;
    box-shadow: inset 3px 3px 6px #a3b1c6, inset -3px -3px 6px #ffffff;
}

/* Links */
.nav-links {
    display: flex;
    gap: 16px;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 8px 16px;              /* Slightly wider padding */
    margin: 0 10px;                 /* ← Space on left and right */
    display: inline-block;          /* Ensures margin works */
    transition: all 0.2s ease;
}
.nav-link:hover {
    transform: translateY(-2px);
    background: #e0e5ec;
    border-radius: 30px;
    padding: 8px 16px;
    box-shadow: inset 5px 5px 10px #b8b9be, inset -5px -5px 10px #ffffff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 10px;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    .nav-link {
        width: 70%;
        text-align: center;
    }
}

/* Hero Section */
.hero-section {
    background: url("/assets/Cars.webp") center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 20px;
    box-shadow: 9px 9px 16px #b8b9be, -9px -9px 16px #ffffff;
}
.hero-title {
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin: 10px 0 20px;
}
.hero-button {
    background: #e0e5ec;
    padding: 12px 30px;
    border-radius: 30px;
    box-shadow: inset 5px 5px 10px #b8b9be, inset -5px -5px 10px #ffffff;
    text-decoration: none;
    color: #111;
    font-weight: 600;
}
.hero-button:hover {
    box-shadow: 5px 5px 15px #b8b9be, -5px -5px 15px #ffffff;
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    text-align: center;
}
.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
}
.features-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.feature-card {
    background: #e0e5ec;
    padding: 20px;
    border-radius: 20px;
    width: 280px;
    box-shadow: 9px 9px 16px #b8b9be, -9px -9px 16px #ffffff;
}
.feature-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-radius: 0px;
}
.footer p {
    margin: 0;
    color: #555;
}