/* 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 */
}


/* ================== CONTACT PAGE STYLES ================== */
.contact-container {
    max-width: 800px;
    margin: auto;
    padding: 50px 20px;
    text-align: center;
}

.contact-container h2 {
    font-size: 26px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.contact-container p {
    font-size: 18px;
    color: #444;
    margin-bottom: 10px;
}

/* Contact Info */
.contact-info {
    margin: 20px 0;
    font-size: 18px;
}

.contact-info p {
    margin: 10px 0;
}


/* Contact Info Section */
.contact-info {
    text-align: center;
    background: #f9f9f9; /* Light gray background */
    padding: 40px 20px;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 800px; /* Limits width for better readability */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 26px;
    color: #4CAF50; /* Green to match theme */
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between icons */
}

.social-links a {
    color: #4CAF50; /* Green theme */
    font-size: 28px;
    transition: color 0.3s ease-in-out, transform 0.2s;
}

.social-links a:hover {
    color: #ff9800; /* Orange hover effect */
    transform: scale(1.2);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
}

.contact-form .btn {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.contact-form .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;
}

/* "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 */
}

