/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #f0f2f5;
    color: #333;
}

/* Header Styling */
.header {
    background: black;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 55px;
    transition: all 0.3s ease;
}

/* Logo */
.header h1 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: bold;
}

/* Buttons */
.header .buttons {
    display: flex;
    gap: 15px;
}

.btn {
    background: white;
    color: black;
    border: none;
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn:hover {
    background: #007bff;
    color: white;
    transform: scale(1.1);
}

/* Mobile Menu */
.menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 55px;
    right: 20px;
    background: black;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 180px;
}

.mobile-menu a {
    display: block;
    padding: 12px 20px;
    text-align: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.mobile-menu a:hover {
    background: #007bff;
}

/* Hero Section */
.hero-image {
    background: url('https://www.wallpaperflare.com/static/219/145/124/ecommerce-selling-online-online-sales-e-commerce-wallpaper.jpg') no-repeat center/cover;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    margin-top: 70px;
}

/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #f0f2f5;
    color: #333;
}

/* Header Styling */
.header {
    background: black;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 55px;
    transition: all 0.3s ease;
}

/* Benefits Section - Cards */
.benefits-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    width: 250px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Glow Effect on Hover */
.card:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Card Shine Effect */
.card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
    transform: rotate(-30deg);
    transition: all 0.5s ease;
}

.card:hover::before {
    top: 0%;
    left: 0%;
}

/* MUJMarket 4 Simple Steps */
.container {
    padding: 40px;
    text-align: center;
}

.heading {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 20px;
}

/* Step Section with Floating Animation */
.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.step {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 500px;
    text-align: center;
    font-weight: bold;
    animation: fadeIn 1.5s ease-in-out forwards, float 3s ease-in-out infinite alternate;
    opacity: 0;
}

/* Animations for Steps */
.step:nth-child(2) { animation-delay: 0.3s; }
.step:nth-child(3) { animation-delay: 0.6s; }
.step:nth-child(4) { animation-delay: 0.9s; }

@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    from { transform: translateY(-5px); }
    to { transform: translateY(5px); }
}

/* Final Message - Neon Glow */
.final-message {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    background: #000;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-shadow: 0 0 10px #007bff, 0 0 20px #007bff;
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #007bff, 0 0 20px #007bff; }
    to { text-shadow: 0 0 20px #ff00ff, 0 0 30px #ff00ff; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header { padding: 10px 15px; }
    .hero-image { font-size: 1.6rem; height: 280px; }
    .header .buttons { display: none; }
    .menu-icon { display: block; }
}




/* Menu Icon */
.menu-icon {
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
}

/* Mobile Dropdown Menu */
.mobile-menu {
    position: fixed;
    top: 55px;
    right: -100%;
    background: rgba(0, 0, 0, 0.95);
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    transition: right 0.5s ease-in-out;
    opacity: 0;
    z-index: 2000;  /* Ensures menu appears on top */
}

/* Show menu when toggled */
.mobile-menu.open {
    right: 10px;
    opacity: 1;
}

/* Menu Items */
.menu-item {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px;
    margin: 5px 0;
    width: 90%;
    text-align: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.menu-item:hover {
    background: white;
    color: black;
}

/* Show menu icon on mobile */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .buttons {
        display: none;
    }
}




