/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #02ffc8;
    color: #333;
}

/* Header */
header {
    background-color: #1a3d7c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 90px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

nav ul li a:hover {
    background-color: #3e65aa;
}

/* Main Content */
main {
    padding: 40px 20px;
    text-align: center;
}

.contact h1 {
    font-size: 32px;
    color: #1a3d7c;
    margin-bottom: 10px;
}

.contact p {
    font-size: 18px;
    color: #555;
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 30px auto;
}

.contact-form h2 {
    font-size: 24px;
    color: #1a3d7c;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #1a3d7c;
    outline: none;
}

.contact-form button {
    background-color: #1a3d7c;
    color: white;
    font-size: 18px;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #3e65aa;
}

/* Contact Information */
.contact-details {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
}

.contact-details h2 {
    font-size: 24px;
    color: #1a3d7c;
    margin-bottom: 10px;
}

.contact-details a {
    color: #1a3d7c;
    text-decoration: none;
    font-weight: bold;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #1a3d7c;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    font-size: 14px;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}



.social-icon:hover img {
    transform: scale(1.1); /* Slightly zoom in the icon when hovered */
}
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    video {
        max-width: 100%;
        height: auto;
    }    
    .contact p {
        font-size: 14px;
        color: #555;
    }
}
@media screen and (max-width: 600px) {
    .contact-form {
        width: 90%;
        padding: 20px;
    }
}
.contact-form button:hover {
    background-color: #264d99;
    transform: scale(1.05);
}


.office-hours {
        list-style: none; /* Removes bullet points */
        padding: 0; /* Removes padding */
        margin: 0; /* Removes margin */
    }
.office-hours li {
        margin-bottom: 5px; /* Adds space between list items */
    }