/* Navbar */

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #003366;
    padding: 10px 20px;
}

.navbar .logo img {
    height: 40px;
}

.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    margin-left: 15px;
}

.navbar ul li a,
.navbar ul li form button {
    color: #fff;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #003366;
    }

    .navbar ul.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}


/*Footer settings*/
/*========================================================================*/
.site-footer {
    background: #00274c;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
}

.footer-col p,
.footer-col ul {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

/* Logo */
.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

/* Social links stacked vertically */
.social-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-list i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

/* Newsletter column */
.newsletter p {
    font-size: 13px;
    margin-bottom: 10px;
    color: #ccc;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-form button {
    background: #ffcb05;
    border: none;
    color: #00274c;
    padding: 10px 16px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #e0b700;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #ccc;
}

/* Mobile and tablet responsiveness */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on medium screens */
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        /* stack all columns on small screens */
        gap: 15px;
    }
}

/*==========================================================================*/
/* Modal form */
/* Modal base */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Modal content */
.modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Close button */
.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* Form styles */
.form-group {
    margin-bottom: 15px;
}

input,
button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
}

.success-msg {
    color: green;
    margin-top: 15px;
    font-weight: bold;
}

/*=======================================================================*/