:root {
    --primary-green: #2E8B57;
    --primary-red: #DC143C;
    --light-green: #90EE90;
    --light-red: #FFA07A;
    --light-white: #FFFFFF;
    --light-black: #1b1b1b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Header Styles */
.top-header {
    background-color: var(--light-black);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

    .top-header a {
        color: white;
        text-decoration: none;
        margin-right: 15px;
        transition: all 0.3s ease;
    }

        .top-header a:hover {
            color: var(--light-red);
        }

.main-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 600;
    font-size: 24px;
    color: var(--light-black) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333 !important;
    margin: 0 10px;
    transition: all 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        color: var(--primary-green) !important;
    }

.book-now-btn {
    background-color: var(--primary-red);
    color: white !important;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .book-now-btn:hover {
        background-color: #b71c1c;
        color: white;
    }


/* Hero Section */
.hero-section {
    background:url('../images/slider-1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    position: relative;
}

.booking-form {
    background-color: #ffffffed;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .booking-form h3 {
        color: var(--light-black);
        margin-bottom: 20px;
        font-weight: 600;
    }

    .booking-form .form-control, .booking-form .form-select {
        height: 45px;
        margin-bottom: 15px;
        background: none;
        border: 1px solid #a6a1a1;
    }

.form-control, .form-select {
    height: 45px;
    margin-bottom: 15px;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    max-width: 100%;
    border-radius: 10px;
}


/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 36px;
        font-weight: 700;
        color: var(--primary-green);
        position: relative;
        display: inline-block;
        margin-bottom: 15px;
    }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-red);
        }

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

.service-icon {
    font-size: 50px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-btn {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .service-btn:hover {
        background-color: #1e6b47;
        color: white;
    }

/* Stats Section */
.stats-section {
    background-color: var(--light-black);
    color: white;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
}

    .stat-item i {
        font-size: 40px;
        margin-bottom: 15px;
        color: var(--light-white);
    }

    .stat-item h3 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .stat-item p {
        font-size: 16px;
    }

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: white;
}

.testimonial-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
}

    .testimonial-card:before {
        content: '"';
        position: absolute;
        top: 10px;
        left: 20px;
        font-size: 60px;
        color: var(--primary-green);
        opacity: 0.2;
    }

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.client-name h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.client-name p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

.rating {
    color: var(--primary-red);
    margin-bottom: 10px;
}

/* Feedback Section */
.feedback-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.feedback-form {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .feedback-form .form-control, .feedback-form .form-select {
        border-radius: 4px;
        border: 1px solid #ddd;
        padding: 12px;
        margin-bottom: 20px;
    }

        .feedback-form .form-control:focus, .feedback-form .form-select:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.25rem rgba(46, 139, 87, 0.25);
        }

.submit-btn {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    width: 100%;
    transition: all 0.3s ease;
}

    .submit-btn:hover {
        background-color: #b71c1c;
        color: white;
    }

/* Drivers Section */
.drivers-section {
    padding: 80px 0;
    background-color: #fff;
}

.driver-card {
    text-align: center;
    margin-bottom: 30px;
}

.driver-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid var(--primary-green);
}

.driver-name {
    color: var(--primary-green);
    font-weight: bold;
    margin-bottom: 5px;
}

.driver-exp {
    color: var(--primary-red);
    font-weight: 500;
}

.driver-rating {
    color: #ffc107;
    margin-top: 10px;
}


/* CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--primary-red), #0d6efd);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 18px;
    transition: all 0.3s;
}

    .btn-cta:hover {
        background-color: #c82333;
        transform: translateY(-3px);
        color: white;
    }


/* Contact Section */
.contact-section {
    padding: 80px 0 40px;
    background-color: #f9f9f9;
}

.contact-info {
    margin-bottom: 30px;
}

    .contact-info i {
        color: var(--primary-green);
        font-size: 24px;
        margin-right: 15px;
    }

.contact-form {
    background-color: var(--primary-green);
    padding: 30px;
    border-radius: 8px;
}

    .contact-form .form-label {
        color: var(--light-white);
    }

.social-icons a {
    color: #333;
    font-size: 20px;
    margin-right: 15px;
    transition: all 0.3s;
}

    .social-icons a:hover {
        color: var(--light-green);
    }

/* Footer */
footer {
    background-color: var(--primary-green);
    color: white;
    padding: 0 0 10px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-links h4:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: var(--primary-red);
    }

.footer-links ul {
    list-style: none;
    padding: 0;
}

    .footer-links ul li {
        margin-bottom: 10px;
    }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .footer-links ul li a:hover {
                color: var(--light-red);
                padding-left: 5px;
            }

.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-contact h4:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: var(--primary-red);
    }

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--light-red);
}

.social-links {
    margin-top: 20px;
}

    .social-links a {
        display: inline-block;
        width: 36px;
        height: 36px;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        text-align: center;
        line-height: 36px;
        border-radius: 50%;
        margin-right: 8px;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            background-color: var(--primary-red);
            transform: translateY(-3px);
        }

.copyright {
    text-align: center;
    padding-top: 25px;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .service-card, .driver-card {
        margin-bottom: 30px;
    }

    .testimonial-card {
        margin-bottom: 20px;
    }

    .footer-links, .footer-contact {
        margin-bottom: 30px;
    }
}
