/* General Body Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
}

.logo i {
    font-size: 1.8rem;
    animation: spin 10s linear infinite;
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #E8F5E9;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #E8F5E9;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.main-container {
    display: flex;
    min-height: calc(100vh - 69px); /* Adjusted to account for navbar height */
}

/* Sidebar Styles (Assuming you might use it on other pages) */
.sidebar {
    background-color: rgba(255, 255, 255, 0.8);
    width: 300px;
    padding: 2rem 1rem;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* --- Contact Us Page Styles --- */
.contact-us-section {
    max-width: 800px;
    /* margin: auto; */
    margin-left: 380px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-us-section h2 {
    font-size: 2rem;
    color: #388E3C;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-us-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: justify;
}


.contact-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.contact-info h3 {
    font-size: 1.3rem;
    color: #388E3C;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center; /* Vertically center icon and text */
    gap: 0.5rem; /* Add some gap between icon and text */
}

.contact-info i {
    color: #388E3C; /* Color the icons */
    font-size: 1.2rem; /* Adjust icon size as needed */
}


.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.3rem;
    color: #388E3C;
    margin-bottom: 1.5rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #66BB6A 0%, #388E3C 100%);
}
