/* General Styling */
body {
    background-color: #253239;
    color: #FFF;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.company-name span {
    color: #FFD700;
}

/* Header Styling */
header {
    margin-top: 50px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 50px;
}

/* Bus Section */
.bus-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.animated-bus {
    width: 800px; /* Default bus size for large screens */
    position: absolute;
    bottom: -1000px; /* Start far off-screen */
    animation: busRise 3s ease-in-out forwards;
}

@keyframes busRise {
    0% {
        bottom: -1000px; /* Start position */
    }
    100% {
        bottom: 300px; /* Stop position for large screens */
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .animated-bus {
        width: 600px; /* Resize bus for medium screens */
        animation: busRiseMedium 3s ease-in-out forwards;
    }

    @keyframes busRiseMedium {
        0% {
            bottom: -1000px;
        }
        100% {
            bottom: 250px; /* Adjust stop position for medium screens */
        }
    }
}

@media (max-width: 768px) {
    .animated-bus {
        width: 400px; /* Resize bus for small screens */
        animation: busRiseSmall 3s ease-in-out forwards;
    }

    @keyframes busRiseSmall {
        0% {
            bottom: -1000px;
        }
        100% {
            bottom: 200px; /* Adjust stop position for small screens */
        }
    }
}

@media (max-width: 480px) {
    .animated-bus {
        width: 300px; /* Resize bus for very small screens */
        animation: busRiseExtraSmall 3s ease-in-out forwards;
    }

    @keyframes busRiseExtraSmall {
        0% {
            bottom: -1000px;
        }
        100% {
            bottom: 150px; /* Adjust stop position for very small screens */
        }
    }
}
/* Footer Styling */
.contact-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section h2 {
    font-size: 2rem;
    letter-spacing: 2px;
}

.contact-info p {
    font-size: 1rem;
    margin: 5px 0;
}

.social-links a {
    font-size: 1rem;
    padding: 10px 20px;
    transition: background-color 0.3s, transform 0.3s;
}

.social-links a:hover {
    background-color: #FFD700;
    color: #121212;
    transform: scale(1.1);
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
