* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #EEEDEB;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #577B8D 0%, #213555 100%);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-image {
            font-size: 1.8rem;
            font-weight: bold;
            color: #fff;
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #4299e1;
        }

        /* Main Content */
        main {
            padding-top:0;
        }

        section {
            padding-top: 100px;

        }

        .hero {
            background: linear-gradient(135deg, #577B8D 0%, #213555 100%);
            color: white;
            text-align: center;
            padding: 6rem 11rem;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .btn {
            background: #0B192C;
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            display: inline-block;
            transition: background 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn:hover {
            background: #4D869C;
        }

        .btn-map {
            background: #48bb78;
            margin-bottom: 0.5rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            width: 100%;
            justify-content: center;
        }

        .btn-map:hover {
            background: #38a169;
        }

        .btn-locate {
            background: #58A399;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            width: 65%;
            justify-content: center;
        }

        .btn-locate:hover {
            background: #2b6cb0;
        }

        /* Sections */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1a365d;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .card h3 {
            color: #1a365d;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* About Section */
        .about {
            background: #f7fafc;
            padding:1rem;
        }

        .about-content {
            display: grid;
            gap: 3rem;
            align-items: center;
        }

        .about-text h3 {
            color: #1a365d;
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
        }
        .partners-strip {
                background: #2563eb; /* Blue background */
                padding: 24px 0;
                display: flex;
                justify-content: center;
                align-items: center;
            }

        .company-logos {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                gap: 40px; /* Space between logos */
                flex-wrap: wrap; /* Logos wrap on small screens */
            }

        .partner-logo {
                border-radius: 10px;
                height: 64px; /* Adjust logo size as needed */
                width: auto;
                object-fit: contain;
                filter: drop-shadow(0 2px 12px rgba(0,0,0,0.15));
                background: transparent;
            }

        .section{
            padding-top: 1rem;
            padding-bottom: 1rem;
        }
        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            text-align: center;
            margin-top: 2rem;
        }

        .stat-item h4 {
            font-size: 2rem;
            color: #4299e1;
            margin-bottom: 0.5rem;
        }

        /* Vehicle Section */
        .vehicle-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 1rem;
            background: #f7fafc;
            border-radius: 8px;
        }

        .vehicle-icon {
            font-size: 2rem;
            color: #4299e1;
            width: 60px;
            text-align: center;
        }

        /* Routes Section */
        .routes {
            background: #f7fafc;
            padding-top: 0.5rem;
            padding-bottom: 2rem;
        }

        .route-item {
            background: white;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .route-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .route-price {
            color: #4299e1;
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Contact Section - New Layout */
        .contact-info-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .contact-item {
            background:  linear-gradient(135deg, #577B8D 0%, #213555 100%);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s;
        }

        .contact-item:hover {
            transform: translateY(-5px);
        }

        .contact-item h3 {
            margin-bottom: 1rem;
        }

        .contact-item:nth-child(2) {
            background:  linear-gradient(135deg, #577B8D 0%, #213555 100%);
        }

        .contact-item:nth-child(3) {
            background:  linear-gradient(135deg, #577B8D 0%, #213555 100%);
        }
        .office-location-section {
            background:  linear-gradient(135deg, #577B8D 0%, #213555 100%);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin-bottom: 3rem;
        }

        .office-location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 300px;
            background: linear-gradient(135deg, #213555 0%, #577B8D 100%);
        }

        .office-address-side {
            padding: 3rem;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .office-title {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #4299e1;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .office-details {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
        }

        .office-details h4 {
            color: #4299e1;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .office-details p {
            margin-bottom: 0.8rem;
            line-height: 1.8;
        }

        .contact-methods {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 1rem;
            width: 100%;
        }

        .office-map-side {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
        }

        .map-icon-large {
            font-size: 4rem;
            color: #4299e1;
            margin-bottom: 1.5rem;
        }

        .map-buttons {
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 100%;
            max-width: 250px;
        }

        .coordinates-info {
            background: rgba(66, 153, 225, 0.1);
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            color: #1a365d;
        }

        .contact-form {
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            margin-top: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #1a365d;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px;
            border: 2px solid #e2e8f0;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #4299e1;
        }

        /* Map Modal */
        .map-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
        }

        .map-modal-content {
            background-color: white;
            margin: 3% auto;
            padding: 0;
            border-radius: 15px;
            width: 90%;
            max-width: 900px;
            height: 80vh;
            position: relative;
            overflow: hidden;
        }

        .map-modal-header {
            background: #1a365d;
            color: white;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .close-modal {
            color: white;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            background: none;
            border: none;
        }

        .close-modal:hover {
            color: #4299e1;
        }

        .map-frame {
            width: 100%;
            height: calc(100% - 70px);
            border: none;
        }

        .map-info {
            position: absolute;
            top: 90px;
            left: 20px;
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            max-width: 300px;
            z-index: 10;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #577B8D 0%, #213555 100%);
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            .contact-info-row {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .office-location-content {
                grid-template-columns: 1fr;
            }

            .office-address-side {
                padding: 2rem;
            }

            .office-map-side {
                padding: 2rem;
            }

            .contact-methods {
                grid-template-columns: 1fr;
            }

            .map-modal-content {
                width: 95%;
                margin: 5% auto;
                height: 85vh;
            }
        }
        .routes-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .routes-table th,
        .routes-table td {
            padding: 1rem;
            text-align: center;
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.95rem;
        }

        .routes-table th {
            background: linear-gradient(135deg, #577B8D 0%, #213555 100%);
            color: white;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .routes-table tr:hover {
            background: #f7fafc;
        }

        .table-responsive {
            overflow-x: auto;
        }

        @media (max-width: 480px) {
            .office-title {
                font-size: 1.5rem;
            }

            .map-buttons {
                max-width: 100%;
            }
        }
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: white;
            transition: opacity 0.3s;
        }

        .logo-container:hover {
            opacity: 0.9;
        }

        .logo-image {
            height: 60px;
            width: auto;
            object-fit: contain;
            border-radius: 10px;
        }