/* coding with onespro */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f2f2f2;
    color: #333;
}

/* ========== Header & Navigation ========== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #4CAF50;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========== Desktop Navigation =========== */
nav {
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    transition: background 0.3s ease;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* =========== Mobile Navigation =========== */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: #ffeb3b;  /* ✅ Menu icon color fixed */
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 15px;  /* Adjusted from 30px to 15px */
    right: 20px;
    z-index: 1001; /* Ensure the menu icon appears above the header */
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 30px;
        position: absolute;
        right: 20px;
        top: 15px; /* Position it within the header */
        z-index: 1001;  /* Ensure it appears above the header */
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        text-align: center;
        padding-top: 100px;
        transition: all 0.3s ease-in-out;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 20px 0;
    }

    .nav-menu a {
        font-size: 22px;
        display: block;
        color: white;
    }
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* Fix content being blocked by menu */
body {
    padding-top: 100px; /* Adjust this based on the header's height */
}


/* ================== SERVICES PAGE STYLES (UNCHANGED) ================== */

/* Services Hero Section */
.services-hero {
    background: url('flowers-banner.jpg') center/cover no-repeat, #4CAF50; /* Fallback color */
    color: white;
    text-align: center;
    padding: 80px 20px;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

/* Services Container */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
}

.service-box {
    background: white;
    padding: 20px;
    width: 280px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-box h3 {
    font-size: 20px;
    color: #4CAF50;
}

.service-box p {
    font-size: 16px;
    color: #333;
}

/* Call to Action */
.cta {
    background: #4CAF50;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.cta .btn {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 10px;
}

.cta .btn:hover {
    background: #e68900;
}
/* Footer */
footer {
    background-color: #4CAF50;  /* Green background */
    color: white;
    text-align: center;
    padding: 15px 10px; /* Increased padding for better spacing */
    margin-top: 30px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Social Media Links */
.social-links {
    margin: 10px 0;
}

.social-links a {
    color: white;
    font-size: 22px; /* Slightly larger icons */
    margin: 0 8px;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffeb3b; /* Yellow hover effect */
}

/* "Powered by OnesPro Developers" */
footer a {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 5px;
}

footer a:hover {
    color: #ffd700; /* Gold on hover */
}

