/* style.css */
body {
    font-family: sans-serif;
    margin: 0;
    background-image: url("31.jpg"); /* Replace with your image path */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #333;
    display: flex; /* Needed for flexbox layout */
    flex-direction: column; /* Stack elements vertically */
    min-height: 100vh; /* Ensure full viewport height */
}


nav {
    background-color: #00bcd4;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

nav li {
    margin: 0 10px;
}
nav a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

nav a:hover {
    background-color: #009688;
    transform: scale(1.05);
}
section.home-section { /* Style specifically for the home section */
    padding: 60px; /* Increased padding */
    background-color: rgba(255, 255, 255, 0.8); /* Slightly more opaque */
    margin: 30px; /* Increased margin */
    border-radius: 15px; /* More rounded corners */
    text-align: center; /* Center text */
    flex-grow: 1; /* Allow section to expand */
    display: flex; /* Use flexbox for vertical centering */
    flex-direction: column; /* Stack elements vertically */
    justify-content: center; /* Vertically center content */
    align-items: center; /* horizontally center content */
}

section.home-section h1 {
    font-size: 2.5em; /* Larger heading */
    margin-bottom: 20px;
}

section.home-section p {
    font-size: 1.2em; /* Larger paragraph text */
    line-height: 1.6; /* Improved readability */
    margin-bottom: 30px;
    max-width: 600px; /* Limit paragraph width for better readability */
}

.cta-buttons {
    display: flex;
    gap: 20px; /* Space between buttons */
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #00bcd4; /* Teal button */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 1.1em;
}

.cta-button:hover {
    background-color: #009688; /* Darker teal on hover */
    transform: scale(1.03); /* Scale up slightly on hover */
}

footer {
    background-color: rgba(51, 51, 51, 0.8);
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}