body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
}


.top-header {
    background: #0b3c74;
    padding: 15px 0;
}

.nav-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 100px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
}

.hero {
    height: 70vh;
    background: url("../images/yellow-bus-bg-min.jpg") center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.55);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

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

.cta-button {
    margin-top: 20px;
    padding: 12px 30px;
    background: #f4b400;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.section {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 60px 0;
}

.section h2 {
    text-align: center;
    color: #0b3c74;
    margin-bottom: 30px;
}

.gray {
    background: #f4f4f4;
}

.blue {
    background: #0b3c74;
    color: white;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.fleet-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 20px;
}

.fleet-gallery img {
    width: 100%;
    border-radius: 8px;
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-left: 25px;
}

input, textarea {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
}

button {
    background: #f4b400;
    border: none;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
}

footer {
    background: #062c54;
    color: white;
    text-align: center;
    padding: 15px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.slider {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 8px;
}


