/* Modern Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    text-align: center;
}

header {
    background: #002244;
    color: white;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
}

.hero img {
    width: 90%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.hero {
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    border-radius: 10px;
}

.hero-overlay h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: #0077cc;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #005fa3;
}

/* Section Styles */
section {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.services .service-item {
    margin: 15px 0;
}

.services img {
    width: 50%;
    height: auto;
    border-radius: 20px;
}

footer {
    background: #002244;
    color: white;
    padding: 20px;
    font-size: 16px;
}

footer a {
    color: #66c2ff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* --- MODAL STYLING START --- */

/* Modal Background */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Content */
.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 400px; /* Limits size on larger screens */
    position: relative;
}

/* Close Button */
.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
    color: black;
}

.close:hover {
    color: red;
}


        display: none;
    }
}
