
/* Header Styles */
header {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    justify-content: center;
}

.logo img {
    max-width: 150px;
    height: auto;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-grow: 1;
}

nav ul li a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
}

.login-button {
    background-color: #ffd700;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
/* Contact Page Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Contact Page Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Contact Form Section */
.contact-form-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f8f8;
}

.contact-form-section h1 {
    font-size: 2.5rem;
    color: #333;
}

.contact-form-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #555;
}

form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table td {
    padding: 10px;
    vertical-align: middle;
}

form label {
    font-weight: bold;
}

form input, form select, form textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form textarea {
    height: 100px;
    resize: none;
}

form button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #ffd700;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 20px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

form button:hover {
    background-color: #e6c200;
}



/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 10px;
}

.social-icons a {
    color: #ffd700;
    font-size: 1.5rem;
    transition: transform 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.2);
}
