* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo { font-size: 22px; font-weight: bold; }
nav ul { list-style: none; display: flex; }
nav ul li { margin: 0 15px; }
nav ul li a { text-decoration: none; color: white; transition: color 0.3s; }
nav ul li a:hover { color: #00ffcc; }

#languageSwitcher {
    padding: 5px;
    border-radius: 5px;
    background: #00ffcc;
    color: black;
    font-weight: bold;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 80px;
}

.hero h1 { font-size: 45px; margin-bottom: 20px; }
.hero p { font-size: 20px; margin-bottom: 30px; }

.cta-btn {
    background: #00ffcc;
    color: black;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}
.cta-btn:hover { background: #00ffaa; transform: scale(1.1); }

.car-scene {
    position: relative;
    width: 50%;
    height: 300px;
}
.car-image {
    width: 300px;
    position: absolute;
    bottom: 20px;
    left: -400px;
    animation: drive 6s linear infinite;
    filter: drop-shadow(0 0 30px white);
}
.road {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 8px;
    background: #444;
    box-shadow: 0 0 10px #00ffcc;
}

@keyframes drive {
    0% { left: -400px; transform: scale(0.9) rotateY(0deg); }
    50% { left: 50%; transform: scale(1.1) rotateY(15deg); }
    100% { left: 110%; transform: scale(1) rotateY(0deg); }
}

section { padding: 80px 50px; text-align: center; }
h2 { font-size: 36px; margin-bottom: 30px; color: #00ffcc; }
p { font-size: 18px; max-width: 800px; margin: auto; }

.service-cards { display: flex; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.card {
    background: rgba(255, 255, 255, 0.1);
    margin: 15px;
    padding: 20px;
    border-radius: 15px;
    width: 250px;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.4);
    transition: 0.3s;
}
.card:hover { transform: scale(1.05); }

footer {
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 20px;
}
