/* 🔹 Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 🔹 Global Styles */
body {
    font-family: Arial, sans-serif;
    overflow-x: hidden; /* Prevents horizontal scrolling */
    padding: 70px 20px 20px; /* Space for fixed header */
    background-color: #f7f7f7; /* Light background for contrast */
}

/* 🔹 Marquee Effect */
.marquee {
    background-color: #ff5722;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 5px 0;
    display: block;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.marquee p {
    display: inline-block;
    animation: marquee-scroll 15s linear infinite;
}

@keyframes marquee-scroll {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* 🔹 Navigation Menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

nav ul li a {
    background: #007bff;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 20px;
    transition: 0.3s;
    display: inline-block;
}

nav ul li a:hover {
    background: #ffcc00;
    color: black;
}


/* 🔹 Contact Section */
.contact-info-box {
    background-color: rgba(240, 240, 240, 0.7);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    margin: 20px auto;
}

