body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.hero-section {
    background: url('https://images.unsplash.com/photo-1600585154347-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    padding: 150px 0;
    position: relative;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
}

.search-form {
    max-width: 900px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-card {
    background: white;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.ride-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ride-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-card {
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    font-weight: bold;
}

footer .social-icons a {
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #007bff;
}

.btn-primary { /* Facebook button */
    background-color: #4267B2;
    color: white;
    margin: 5px;
}
.btn-danger { /* Google button */
    background-color: #DB4437;
    color: white;
    margin: 5px;
}