/* style.css */

:root {
    --primary-yellow: #FFD400;
    --secondary-charcoal: #1C1C1C;
    --accent-orange: #FF8C00;
    --background-light: #FAFAFA;
    --text-gray: #4A4A4A;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-light);
    color: var(--text-gray);
    margin: 0;
    padding: 0;
}

/* नेविगेशन बार */
.navbar-custom {
    background-color: var(--secondary-charcoal);
    padding: 15px 0;
}

.navbar-brand {
    color: var(--primary-yellow) !important;
    font-weight: bold;
    font-size: 24px;
}

.nav-link {
    color: #ffffff !important;
    margin-left: 20px;
}
.nav-link:hover {
    color: var(--primary-yellow) !important;
}

/* हीरो सेक्शन (Hero Section - जैसे nricab में सबसे ऊपर है) */
.hero-section {
    /* यहाँ एक अच्छी सी कार की इमेज लगाएं */
    background-image: url('https://via.placeholder.com/1920x600?text=Taxi+Background+Image'); 
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

/* बुकिंग फॉर्म बॉक्स */
.booking-form-box {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-top: 5px solid var(--primary-yellow);
}

.booking-form-box h3 {
    color: var(--secondary-charcoal);
    margin-bottom: 20px;
}

/* बटन */
.btn-yellow {
    background-color: var(--primary-yellow);
    color: var(--secondary-charcoal);
    font-weight: bold;
    border: none;
    padding: 12px 20px;
}
.btn-yellow:hover {
    background-color: #e6c200; /* थोड़ा गहरा पीला */
    color: var(--secondary-charcoal);
}

.btn-orange {
    background-color: var(--accent-orange);
    color: white;
    font-weight: bold;
    border: none;
}
.btn-orange:hover {
    background-color: #e67e00;
    color: white;
}

/* सेक्शन टाइटल */
.section-title {
    color: var(--secondary-charcoal);
    text-align: center;
    margin-bottom: 40px;
}

/* फूटर */
.footer {
    background-color: var(--secondary-charcoal);
    color: #ffffff;
    padding: 50px 0 20px 0;
    margin-top: 50px;
}
.footer h5 {
    color: var(--primary-yellow);
}