/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #333;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: white;
    margin-top: 10px;
}

/* Logo */
.navbar .logo a img {
    height: 78px;
}

/* Desktop Navigation */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

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

.nav-links a:hover {
    background: #555;
    border-radius: 5px;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #333;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    text-align: center;
    list-style: none;
    padding: 0;
}

.mobile-nav li {
    padding: 10px;
}

.mobile-nav a {
    text-decoration: none;
    color: white;
    display: block;
}

.mobile-nav a:hover {
    background: #555;
}

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

    .menu-toggle {
        display: block;
    }

    .mobile-nav.show {
        display: flex;
    }
}

/* Content */


/* Marquee Container */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background-color: #ab5e02;
    height: 55px;
    display: flex;
    align-items: center;
    width: 100%;
    position: fixed; /* Ensure it stays above header */
    top: 0;
    left: 0;
    z-index: 1001; /* Higher than header */
}

/* Marquee Animation */
.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 10s linear infinite loop;
    min-width: 100%; /* Ensure it spans the screen */
}

.marquee span {
    font-size: 26px;
    font-weight: bold;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    padding-left: 100%; /* Start off-screen */
}

.order-now {
    text-decoration: none;
    color: red;
}

/* Keyframe Animation */
@keyframes marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Adjust Content Margin to Avoid Overlap */
.content {
    margin-top: 135px; /* Marquee + Sticky Header */
}
