/* Footer Section */
footer {
    background-color: #16243D;
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    /* max-width: 1100px; */
    margin: 0 auto;
    padding: 40px 100px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Footer Logo Section */
.footer-logo {
    flex: 1;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px; /* Adjusting logo size */
    margin-bottom: 10px;
}

.footer-logo p {
    width: 80%;
    font-size: 0.9rem;
}

/* Footer Links Section */
.footer-links {
    flex: 1;
    margin-bottom: 20px;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

/* Footer Contact Section */
.footer-contact {
    flex: 1;
    margin-bottom: 20px;
}

.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-contact p {
    font-size: 0.9rem;
}

/* Footer Subscribe Section */
.footer-subscribe {
    flex: 1;
    margin-bottom: 20px;
}

.footer-subscribe h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-subscribe form {
    /* display: flex; */
    flex-wrap: wrap;
}

.footer-subscribe input[type="email"] {
    padding: 10px;
    width: 100%;
    flex: 1;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.footer-subscribe button {
    padding: 10px 20px;
    background-color: #ff9800;
    border: none;
    color: white;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-subscribe button:hover {
    background-color: #f57c00;
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    border-top: 1px solid gray;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-top: 40px;
    color: #fff;
}

.social-icons{
    display: flex;
    gap: 20px;

}


/* Responsive Styles */
/* Tablet View */
@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        padding-left: 40px;
        padding-right: 40px;
    }

    .footer-logo,
    .footer-links,
    .footer-contact,
    .footer-subscribe {
        width: 100%;
    }

    .footer-logo p,
    .footer-contact p,
    .footer-links ul li a {
        font-size: 17px;
    }

    .footer-subscribe button {
        flex: 1;
        width: 100%;
        /* margin-left: 10px; */
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .footer-container {
        padding: 20px;
    }

    .footer-logo img {
        max-width: 120px;
    }

    .footer-logo p,
    .footer-contact p,
    .footer-links ul li a {
        font-size: 17px;
    }

    .footer-subscribe input[type="email"] {
        flex: 1 100%; 
        width: 100%;
        margin-bottom: 10px;
    }

    .footer-subscribe button {
        width: 100%;
    }
}
