 
:root {
    --primary: #008751;
    --primary-dark: #006b3f;
    --secondary: #FFD700;
    --secondary-dark: #e6c200;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    background: var(--primary);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .navbar-brand img {
        height: 45px;
        width: auto;
        border-radius: 8px;
        border: 2px solid var(--secondary);
    }

.nav-link {
    font-weight: 500;
    color: #fff !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background: var(--secondary);
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 70%;
    }

    .nav-link:hover {
        color: var(--secondary) !important;
    }

.navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 215, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Buttons */
.btn-primary {
    background: var(--secondary);
    border: none;
    color: var(--black);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

    .btn-primary:hover {
        background: var(--secondary-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
        color: var(--black);
    }

.btn-outline-light {
    border: 2px solid #fff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .btn-outline-light:hover {
        background: #fff;
        color: var(--primary);
        transform: translateY(-2px);
    }

.btn-secondary {
    background: var(--primary);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 135, 81, 0.4);
    }

.btn-outline-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}

    .btn-outline-secondary:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-2px);
    }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 135, 81, 0.95), rgba(0, 107, 63, 0.9)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?q=80&w=2069') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

    .hero h1 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

        .hero h1 .highlight {
            color: var(--secondary);
        }

    .hero p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0.95;
    }

@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        min-height: 90vh;
    }
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

    .section-title h2 {
        font-weight: 700;
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1rem;
    }

    .section-title p {
        color: var(--gray);
        font-size: 1.1rem;
    }

    .section-title .divider {
        width: 80px;
        height: 4px;
        background: var(--secondary);
        margin: 1rem auto;
        border-radius: 2px;
    }

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: 100%;
    border: 2px solid transparent;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,135,81,0.15);
        border-color: var(--secondary);
    }

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--black);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.service-card h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card .capacity {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

    .service-card .capacity i {
        color: var(--secondary);
        margin-right: 0.5rem;
    }

/* Features */
.feature-box {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

    .feature-box:hover {
        transform: translateY(-5px);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 135, 81, 0.1);
    border: 2px solid var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: var(--primary);
    color: var(--secondary);
    transform: scale(1.1);
}

.feature-box h5 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

/* Routes Table */
.table-container {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    overflow-x: auto;
}

.table {
    margin-bottom: 0;
}

    .table thead th {
        background: var(--primary);
        color: var(--secondary);
        font-weight: 600;
        border: none;
        padding: 1rem;
        white-space: nowrap;
    }

    .table tbody td {
        padding: 1rem;
        vertical-align: middle;
    }

    .table tbody tr {
        transition: all 0.3s ease;
    }

        .table tbody tr:hover {
            background: rgba(255, 215, 0, 0.1);
        }

.badge-status {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.badge-active {
    background: rgba(0, 135, 81, 0.15);
    color: var(--primary);
}

.badge-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #856404;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 35px rgba(0,135,81,0.15);
        border-top-color: var(--secondary);
    }

.testimonial-rating {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .testimonial-author img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--primary);
    }

.testimonial-author-info h6 {
    margin: 0;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-author-info small {
    color: var(--gray);
}

/* Contact Form */
.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border: 2px solid var(--primary);
}

@media (max-width: 576px) {
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 0.25rem rgba(0, 135, 81, 0.25);
    }

.form-label {
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-section-header {
    color: var(--primary);
    font-weight: 700;
    margin: 2rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary);
}

    .form-section-header:first-of-type {
        margin-top: 0;
    }

/* Footer */
footer {
    background: var(--black);
    color: #fff;
    padding: 4rem 0 2rem;
    border-top: 5px solid var(--secondary);
}

    footer h5 {
        color: var(--secondary);
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    footer ul {
        list-style: none;
        padding: 0;
    }

        footer ul li {
            margin-bottom: 0.75rem;
        }

            footer ul li a {
                color: rgba(255,255,255,0.7);
                text-decoration: none;
                transition: all 0.3s ease;
            }

                footer ul li a:hover {
                    color: var(--secondary);
                    padding-left: 5px;
                }

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

    .social-links a:hover {
        background: var(--secondary);
        color: var(--black);
        transform: translateY(-3px);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

    .footer-bottom .tagline {
        color: var(--secondary);
        font-weight: 600;
        margin-top: 0.5rem;
    }

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--black);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

    .scroll-top:hover {
        background: var(--secondary-dark);
        transform: translateY(-5px);
    }

    .scroll-top.show {
        display: flex;
    }

/* Stats Cards */
.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-5px);
        border-left-color: var(--secondary);
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
}

 
