/* Modern Light Theme */

/* Import Stylish Font */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;600;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Urbanist', sans-serif;
}

body {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    color: #333;
    padding: 20px;
    line-height: 1.6;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #0056b3;
}

h1, h2, h3 {
    font-weight: 800;
    margin-bottom: 10px;
    color: #0056b3;
    text-shadow: 0 0 5px rgba(0, 86, 179, 0.2);
}

p {
    margin-bottom: 15px;
}

/* Header Styling */
header {
    background: linear-gradient(135deg, #ffffff, #e3f2fd);
    padding: 60px;
    text-align: center;
    border-radius: 12px;
    color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.8em;
}

header p {
    font-size: 1.2em;
    opacity: 0.85;
}

/* Section Styling */
section {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-left: 6px solid #007bff;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

section:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
}

section:nth-child(even) {
    border-left-color: #28a745;
}

section h2 {
    font-size: 2em;
}

/* Footer Styling */
footer {
    background: linear-gradient(135deg, #ffffff, #e3f2fd);
    color: #333;
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

footer a {
    color: #28a745;
    margin: 0 10px;
    transition: color 0.3s ease-in-out;
}

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

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 30px;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.modal h2 {
    color: #28a745;
    margin-bottom: 20px;
}

.modal button {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.modal button:hover {
    background: linear-gradient(135deg, #28a745, #218838);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    header, footer {
        padding: 40px;
    }
    section {
        padding: 20px;
    }
}