/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, .9)),
                url('img/TamilPicture1.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Section */
header {
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: orange;
}

/* Contact Section */
.contact {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.contact .content {
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact .content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: orange;
}

.contact .content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1rem;
    margin: 10px 0;
}

.contact-info a {
    color: orange;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: white;
}

/* Footer */
footer {
    width: 100%;
    padding: 10px 10px;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    border-top: 2px solid orange;
}
