/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffffff;
    color: #263238;
    text-align: center;
    padding-top: 80px; /* Space for fixed navbar */
}

/* Navbar Styling */
header {
    background-color: #ffffff;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Navbar Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #00a652;
    text-decoration: none;
}

.navbar-logo {
    height: 50px;
    margin-right: 10px;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.navbar-logo:hover {
    transform: rotate(360deg);
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    padding: 10px 15px;
}

.nav-link {
    color: #00a652;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover {
    color: #eebf17;
    transform: scale(1.1);
}

/* Mobile Navigation - Hidden on Desktop */
.nav-toggle {
    display: none; /* Hide button on Desktop */
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #00a652;
    position: absolute;
    top: 15px;
    right: 20px;
    transition: transform 0.3s ease-in-out;
}

.nav-toggle:hover {
    transform: scale(1.1);
}

/* Mobile View */
@media screen and (max-width: 768px) {
    .nav-toggle {
        display: block; /* Show toggle button in Mobile */
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        padding: 20px 0;
        text-align: center;
        transition: all 0.3s ease-in-out;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu li {
        padding: 15px;
    }

    .nav-toggle.active i {
        content: "\f00d"; /* Change icon to 'X' */
    }
}

/* Membership Form */
main {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    margin-top: 10px;
    text-align: left;
    color: #00a652;
}

input {
    width: 100%;
    padding: 12px;
    margin: 5px 0;
    border: 2px solid #ccc;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

input:focus {
    border-color: #00a652;
    outline: none;
    box-shadow: 0px 0px 8px rgba(0, 166, 82, 0.5);
}

button {
    background-color: #00a652;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    margin-top: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

button:hover {
    background-color: #eebf17;
    color: #263238;
    transform: scale(1.05);
}

/* Footer Styling */
#footer {
    background: #00a652;
    color: #eebf17;
    padding: 40px 0;
    text-align: center;
}

#footer h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
}

#footer a {
    color: white;
    font-size: 30px;
    margin: 0 15px;
    transition: all 0.3s ease-in-out;
}

#footer a:hover {
    color: #eebf17;
    transform: scale(1.1);
}

#footer p {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 15px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    main {
        width: 90%;
    }

    form {
        width: 100%;
    }

    input, button {
        width: 100%;
    }
}
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

header {
    background: #222;
    padding: 10px 0;
    text-align: center;
}

.navbar-brand {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.navbar-logo {
    height: 40px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px;
}

nav a:hover {
    color: #ffcc00;
}

.form-container {
    max-width: 400px;
    margin: 50px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

input {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #ffcc00;
    color: black;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #e6b800;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}
#individual-section,
#family-section,
#school-section,
#corporate-section {
  display: none;
}

