/*
Theme Name: Astra Child Ride Hailing
Theme URI: http://example.com/astra-child-ride-hailing/
Description: Child theme for the Ride Hailing & Parcel Delivery website.
Author: Antigravity
Author URI: http://example.com
Template: astra
Version: 1.0.0
*/

/* Custom Styles for Ride Hailing Theme */

:root {
    --primary-color: #f7c948; /* Taxi Yellow */
    --secondary-color: #2c3e50; /* Dark Blue/Black */
    --text-color: #333;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
}

.ride-hailing-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.ride-hailing-btn:hover {
    background-color: #e0b439;
}

/* Service Cards */
.service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
