/* Modern Sleek Style */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Helvetica Neue', sans-serif;
    background: #f7f7f7;
    color: #333;
    padding: 40px;
    text-align: center;
    line-height: 1.6;
}
a {
    color: #1e90ff;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #4682b4;
}
h1, h2 {
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}
p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #666;
}

/* Header Styling */
header {
    background: #fff;
    color: #333;
    padding: 60px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
header h1 {
    font-size: 3.2em;
    margin-bottom: 10px;
    color: #222;
}
header p {
    font-size: 1.5em;
    opacity: 0.75;
}

/* Section Styling */
section {
    background: #ffffff;
    padding: 50px;
    margin: 50px auto;
    width: 80%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: left;
    transition: transform 0.3s ease;
}
section:hover {
    transform: translateY(-5px);
}
section h2 {
    color: #333;
    font-size: 2.5em;
}

/* Footer Styling */
footer {
    background: #fff;
    color: #333;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
    text-align: center;
}
footer a {
    font-weight: bold;
    margin: 0 20px;
    color: #1e90ff;
}
footer a:hover {
    text-decoration: underline;
    color: #4682b4;
}

/* Call to Action Button */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background: #1e90ff;
    color: #fff;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.2);
}
.btn:hover {
    background: #4682b4;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

/* Card Component */
.card {
    background: #fff;
    padding: 35px;
    margin: 25px auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}
.card h3 {
    color: #333;
    font-size: 2em;
    margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }
    header, footer {
        padding: 40px;
    }
    section {
        padding: 30px;
    }
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal {
    background: #222;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 30px rgba(30, 144, 255, 0.4);
}
.modal h2 {
    color: #1e90ff;
    font-size: 2.5em;
    margin-bottom: 20px;
}
.modal button {
    background: #1e90ff;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.modal button:hover {
    background: #4682b4;
}
