/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f0f4f8;
    color: #333;
}

/* Main Menu Styles */
.menu {
    background: linear-gradient(90deg, #333, #555);
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.menu ul li {
    margin: 0 20px;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease;
}

.menu ul li a:hover {
    color: #ffdd57;
}

.menu ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #ffdd57;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu ul li a:hover::after {
    transform: scaleX(1);
}

/* Banner Section */
.banner {
    background-image: url('your-image.jpg');
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: bannerFade 1.5s ease-out forwards;
}

@keyframes bannerFade {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Button Container */
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px;
}

.button-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
    flex-wrap: wrap;
}

button {
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
    width: 150px;
    background: linear-gradient(45deg, #0073e6, #00aaff);
    color: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background 0.3s ease, box-shadow 0.3s;
    font-weight: bold;
}

button:hover {
    background: linear-gradient(45deg, #005bb5, #0073e6);
    transform: translateY(-4px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

button:active {
    transform: translateY(-2px);
}

/* Footer Heading */
.footer-heading {
    text-align: center;
    margin-top: 30px;
    color: black;
    position: relative;
    padding: 15px 0;
}

.footer-heading hr {
    border: 1px solid black;
    width: 60%;
    margin: auto;
    margin-bottom: 10px;
}

.footer-heading span {
    display: inline-block;
    background: #f0f4f8;
    padding: 0 15px;
    font-size: 20px;
    font-weight: bold;
    color: #555;
    position: relative;
    top: -10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .menu ul {
        flex-direction: column;
        padding: 0;
    }
    
    .menu ul li {
        margin: 8px 0;
    }

    .banner {
        height: 180px;
        font-size: 24px;
    }

    .button-container {
        margin: 15px;
    }

    .button-row {
        flex-direction: column;
        gap: 8px;
    }

    button {
        width: 100%;
        font-size: 15px;
    }
    
    .footer-heading hr {
        width: 80%;
    }

    .footer-heading span {
        font-size: 18px;
    }
}
