/* Footer */

.footer {
    background-color: #11467A;
    color: white;
    padding: 15px 65px;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.company-info h4,
.subscribe h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.company-info p {
    line-height: 1.6;
    margin: 3px 0;
    font-size: 14px;
}

.links {
    display: flex;
    gap: 50px;
    margin-top: 55px;
    padding-left: 50px;
}

.link-group-left {
    display: flex;
    flex-direction: column;
    padding-right: 45px;
}

.link-group-right {
    display: flex;
    flex-direction: column;
    
}

.link-group-left a,
.link-group-right a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    padding-bottom: 15px;
}

.link-group-left a:hover,
.link-group-right a:hover {
    text-decoration: underline;
}

.subscribe {
    padding-left: 10px;
}
.subscribe h4 {
    font-size: 16px;
    font-weight: bold;
}

.subscribe p {
    margin-top: 25px;
    margin-bottom: 15px;
}

.subscribe-form {
    display: flex;
    flex-wrap: wrap; /* Allow inputs and button to stack if needed */
    margin-top: 10px;
}

.subscribe-form input[type="email"] {
    padding: 8px;
    border: none;
    border-radius: 4px 0 0 4px;
    width: 70%;
    height: 20px; /* Set a fixed height */
}

.subscribe-form button {
    padding: 8px 12px;
    border: none;
    background-color: #003366;
    color: white;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    font-size: 16px;
    height: 36px; /* Match the height of the input */
}

.subscribe-form button:hover {
    background-color: #002244;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icons a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a img {
    width: 24px;
    height: auto;
}

.social-icons a:hover {
    color: rgb(255 255 255 / 50%);
}


/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .links {
        flex-direction: column;
        gap: 20px;
    }

}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .links {
        flex-direction: row;
        gap: 20px;
        margin-top: 20px;
        padding-left: 0px;
        justify-content: center;
    }

    .subscribe {
        margin: 0px;
        padding: 0px;
    }

    .subscribe h4{
        margin-bottom: 0px;
    }

    .subscribe p {
        margin-top: 10px;
    }

    .subscribe-form {
        flex-direction: row;
    }

    .subscribe-form input[type="email"]{
        width: 240px; /* Stack elements with full width */
    }

    .subscribe-form button{
        width: 45px;
    }

    .footer {
        padding: 15px 10px; /* Further reduced padding for small screens */
    }

    .footer-section {
        min-width: 100%;
        gap: 60px;
    }
}




/* Footer End */