
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            padding-top: 56px; /* To account for fixed navbar */
        }
        
        .navbar {
            background-color: var(--primary-color);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white;
        }
        
        .nav-link {
            color: white !important;
        }
        
        .hero-section {
            position: relative;
            color: white;
            padding: 100px 0;
            text-align: center;
            height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero-bg-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .hero-bg-slideshow .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .hero-bg-slideshow .slide.active {
            opacity: 1;
        }

        .search-card {
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .transport-tabs {
            margin-bottom: 20px;
            border-bottom: none;
        }
        
        .transport-tabs .nav-link {
            color: var(--dark-color) !important;
            border: none;
            border-radius: 5px 5px 0 0;
            margin-right: 5px;
            padding: 10px 15px;
            font-weight: 500;
        }
        
        .transport-tabs .nav-link.active {
            background-color: var(--secondary-color);
            color: white !important;
        }
        
        .transport-tabs .nav-link i {
            margin-right: 5px;
        }
        
        .btn-primary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        
        .btn-primary:hover {
            background-color: #2980b9;
            border-color: #2980b9;
        }
        
        .btn-danger {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            margin-bottom: 20px;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
        }
        
        .price-tag {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--accent-color);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-weight: bold;
        }
        
        .carousel-control-prev, .carousel-control-next {
            width: 5%;
        }
        
        .driver-portal-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 40px 0;
        }
        
        .social-icons a {
            color: white;
            font-size: 20px;
            margin-right: 15px;
        }
        
        .social-icons a:hover {
            color: var(--secondary-color);
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
                height: auto;
                min-height: 100vh;
            }
            
            .search-card {
                padding: 20px;
            }
            
            .service-card img {
                height: 150px;
            }
            
            .transport-tabs .nav-link {
                padding: 8px 10px;
                font-size: 14px;
            }
        }
    