
/* General Reset */
* {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    width: 100vw;
    overflow-x: hidden; /* Prevents horizontal scrolling */
}

.container {
    width: 100vw;
    max-width: 100%;
    padding: 0;
    margin: 0;
}


/* Navbar Styling */
nav {
    background: #000;
    color: #fff;
    padding: 1rem 0;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    transition: background 0.3s, color 0.3s;
}

nav a:hover {
    color: #000;
    background: #fff;
    border-radius: 5px;
}


/* Hero Section */
#hero {
    align-items: center;
    justify-content: space-between;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #000000, #000000);
    color: #ffffff;
    height: auto;
    width: 100vw;
    max-width: 100%;
}

#hero img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
}

.hero-content {
    flex: 1;
    padding: 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-content button {
    padding: 0.75rem 1.5rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-content button:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

/* Section Styling */
section {
    width: 100vw; /* Full viewport width */
    max-width: 100%;
    padding: 4rem 1rem;
    text-align: center;
}



section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

section p, section ul {
    max-width: 100vw;;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

section ul {
    list-style: none;
    padding: 0;
}

section ul li {
    margin-bottom: 0.5rem;
}

/* About Section Styling */
#about {
    padding: 4rem 1rem;
    text-align: center;
    margin-bottom: 2rem;
    border-radius: 10px;
    text-align: center;
}

.about-container button {
    padding: 0.75rem 1.5rem;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.about-container button:hover {
    background: #555;
    transform: scale(1.05);
}

/* Team Section */
#team {
    background: #fff;
    border-radius: 10px;
    text-align: center;
}
.team-member {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 10px;
    flex-wrap: wrap;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.member-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #000;
}

/* Form */
form {
    max-width: 90vw;
    margin: 2rem auto;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

form input,
form textarea,
form button {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

form button:hover {
    background: #555;
    transform: scale(1.05);
}

/* Footer */
#footer {
    background: #000;
    color: #fff;
    padding: 3rem 1rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #444;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-container ul li a:hover {
    color: #00aaff;
}

.social-media a {
    margin: 0 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.footer-bottom button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.footer-bottom button:hover {
    background: #00aaff;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    #hero {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    form input, form textarea {
        font-size: 0.9rem;
    }
}
