/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main Container */
.main-container {
    font-family: 'Arial', sans-serif;
    color: white;
}

/* Background Image with Dim Effect */
body {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('img/TamilPicture1.jpg') no-repeat center center/cover;
    height: 100vh;
}

/* Header Section */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: transparent;
    position: absolute;
    width: 100%;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

header nav ul {
    display: flex;
    list-style: none;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: orange;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    padding: 0 20px;
}

.hero .content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta {
    background-color: orange;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: darkorange;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    bottom: 0;
    width: 100%;
}
/* Zoom-in and Zoom-out Animation */
@keyframes zoomInOut {
    0% {
        transform: scale(0.5); /* Start smaller */
        opacity: 0;
    }
    50% {
        transform: scale(1.2); /* Zoom in */
        opacity: 1;
    }
    100% {
        transform: scale(1); /* Return to normal size */
        opacity: 1;
    }
}

.tamizhgen-text {
    font-size: 3rem; /* Adjust size of Tamil text */
    font-weight: bold;
    color: orange;
    animation: zoomInOut 3s ease-in-out infinite; /* Apply animation */
    margin-top: 20px; /* Space it from the other content */
    text-align: center;
}

/* Other Hero Section Adjustments for Better Visuals */
.hero .content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
}
/* About Us Section */
.about-us-container {
    margin-top: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('img/TamilPicture1.jpg') no-repeat center center/cover;
    background-size: cover;
    height: 90vh;
    color: orange; /* Text color for readability */
    display: flex;
    padding: 30px;
    text-align: left;
}
/* Paragraph and List Styling */
p {
    color: white; /* Set p text color to white */
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-us-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-us-container p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.about-us-container h2 {
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 10px;
}

.about-us-container a {
    color: orange;
    text-decoration: none;
}

.about-us-container a:hover {
    text-decoration: underline;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    position: absolute;
    bottom: 0;
    border-top: solid orange;
}
