@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

.zoom-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header-contacts Section */
#header-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
    padding: 20px;
    color: black;
    width: 100%;
    background-color: #ffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100px;
    overflow: hidden;
}

#header-contact p {
    margin: 0;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
}

#header-contact .phone {
    font-weight: bold;
    color: #007BFF;
}

#header-contact i {
    margin-right: 8px;
    color: #333;
}


/* header */
.header {
    width: 100%;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    background-color: rgb(65, 64, 64);
    padding: 10px 12px;
}

.header-text {
    margin: 0;
    font-size: 1.2em;
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon img {
    width: 24px;
    transition: opacity 0.3s ease;
}

.social-icon img:hover {
    opacity: 0.7;
}
.logo {
    max-width: 220px;
    height: auto;
}
.navbar {
    background-color: #003366;
}

.navbar-menu {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    margin: 0;
    padding: 16px 22px;
}

.menu-icon {
    font-size: 1.5em;
    color: white;
    text-decoration: none;
    display: none;
    margin-left: 10px;
}

.navbar-menu li {
    margin: 0 15px;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
    font-weight: 500;
    line-height: 1.6;
    font-family: "Poppins", sans-serif;
}

.navbar-menu a:hover {
  color: #ffcc00;
} 
.navbar-menu a.active {
  color: #ffcc00; 
  font-weight: 600;
  background: none;
}

/* Contact Section */
#contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
    padding: 20px;
    background-color: #ffffff;
    color: black;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}

#contact img {
    width: 200px;
    height: auto;
    border-radius: 4px;
}

#contact p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

#contact .phone {
    font-weight: bold;
    color: #007BFF;
}

/*Footer*/
#footer {
    background-color: #004080;
    color: white;
    padding: 40px 20px;
    border-top: 1px solid #dee2e6;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
}

.footer-about,
.footer-hours {
    flex: 1;
    margin: 10px;
    padding: 10px;
    min-width: 200px;
}

.footer-about h3,
.footer-hours h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #007bff;
}

.footer-about p,
.footer-hours ul {
    font-size: 1em;
    line-height: 1.6;
    margin: 5px 0;
}

.footer-hours ul {
    list-style-type: none;
    padding: 0;
}

.footer-hours li {
    margin-bottom: 10px;
}

.footer-bottom {
    background-color: #003366;
    padding: 10px 20px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9em;
}

/* ========================= Contact ========================= */
#contact-details {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-top: 20px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);

}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;


}

.contact-form {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 500px;
    max-height: calc(100% - 40px);
    overflow-y: auto;
    border: 2px solid yellow;
    margin: 30px;
}

.contact-form h2 {
    text-align: center;
    margin-top: 0;
    color: #333;
    font-size: 1.5em;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1em;
    margin: 5px 0;
    color: #555;
}

.contact-info i {
    margin-right: 10px;
    color: #007bff;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-group i {
    font-size: 1.2em;
    color: #21456b;
    margin-right: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0056b3;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    display: block;
    text-align: center;
    background-color: #0056b3;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #004494;
}

@media (min-width: 375px) and (max-width: 1024px) {

    #header-contact p {
        font-size: 12px;
    }

    #header-contact .phone {
        font-size: 12px;
    }

    #header-contact i {
        font-size: 12px;
    }
.logo {
    max-width: 120px;
   
}
    .header-top {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        background-color: #1a1a1a;
    }

    .header-text {
        font-size: 1.1em;
        margin-bottom: 12px;
        text-align: start;
        color: #f5f5f5;
    }

    .social-icons {
        gap: 12px;
    }

    .menu-icon {
        display: block;
        color: #f5f5f5;
    }

    ul.navbar-menu {
        position: relative;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #003366;
        max-height: 0;
        height: 100%;
        opacity: 0;
        overflow: hidden;
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
        border-radius: 0 0 10px 10px;
        transition: all 0.6s ease-out;
    }

    ul.navbar-menu li {
        text-align: center;
        margin: 8px 0;
    }

    ul.navbar-menu li a {
        width: 100%;
        display: block;
        padding: 15px 0;
        color: #ffffff;
    }

    ul.navbar-menu li a:hover {
        color: #7c620c;
          background:none;
    }

    .navbar-menu.show {
        display: flex;
        max-height: 500px;
        opacity: 1;
        z-index: 1;
        transition: max-height 0.6s ease-out, opacity 0.6s ease-out;
    }


    /*Footer*/
    #footer {
        padding: 20px 10px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .footer-about,
    .footer-hours {
        min-width: 100%;
        padding: 20px 10px;
    }

    .footer-about h3,
    .footer-hours h3 {
        font-size: 1.2em;
    }

    .footer-about p,
    .footer-hours ul {
        font-size: 0.9em;
    }

    .footer-bottom {
        background-color: transparent;
    }

    /*Contact Details*/
    #contact-details {
        flex-direction: column;
        height: auto;
        margin: 0 auto;

    }

    .map-container {
        height: 50vh;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border: 2px solid yellow;

    }

    .contact-form {
        position: static;
        width: 100%;
        max-height: none;
        margin: 20px auto;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border: 2px solid yellow;
    }

    .contact-form h2 {
        font-size: 1.5em;
    }

    .contact-info p {
        font-size: 0.9em;
    }

    .form-group {
        margin-bottom: 10px;
    }

    .form-group i {
        font-size: 1em;
    }

    input,
    textarea {
        padding: 8px;
    }

    .contact-form button {
        padding: 8px;

    }
}