/* style.css */

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    color: #444;
    background: #e0f7fa;
    padding: 30px;
}

a {
    color: #00796b;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: #004d40;
    transform: scale(1.05);
}

h1, h2 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}

/* Header Styling */
header {
    background: linear-gradient(135deg, #66bb6a, #2e7d32);
    color: #fafafa;
    text-align: center;
    padding: 50px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

header h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
}

header p {
    font-size: 1.5em;
}

/* Section Styling */
section {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-left: 8px solid #66bb6a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

section:nth-of-type(even) {
    border-left-color: #2e7d32;
}

section h2 {
    font-size: 2em;
    color: #444;
}

/* Footer Styling */
footer {
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: #fafafa;
    text-align: center;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

footer:hover {
    transform: scale(1.02);
}

footer a {
    color: #fafafa;
    margin: 0 15px;
    transition: color 0.3s ease;
}

footer a:hover {
    text-decoration: underline;
    color: #b2dfdb;
}

/* Modal Popup (for Homepage if needed) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal {
    background: #ffffff;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    animation: fadeIn 0.4s ease-in-out;
}

.modal h2 {
    color: #2e7d32;
    margin-bottom: 25px;
}

.modal button {
    background: linear-gradient(135deg, #66bb6a, #2e7d32);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.modal button:hover {
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }