/* Footer Header */
.footer-header {
    background-color: #ffa500;
    display: flex;
    height: 100px;
    position: relative;
    overflow: hidden;
}
.footer-header-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}
.footer-logo-wrapper {
    background-color: #ffffff;
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-logo-wrapper img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Orange Section */
.footer-nav-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.footer-nav-wrapper2 {
    padding: 0 50px;
}

.footer-nav ul {
    display: flex;
    gap: 100px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
}

.footer-nav ul li a:hover {
    color: #e0e0e0;
}

/* Footer Top Section */
.footer-top {
    padding: 40px 0;
    background-color: #ffffff;
}

.footer-top h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #9a562a;
}
.footer-top p {
    color: #626361;
    font-size: 14px;
    line-height: 1.6;
}
.footer-top ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links li a {
    text-decoration: none;
    color: #9a562a;
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-links li a:hover {
    color: #ffa500;
}

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

.footer-top ul li a {
    color: #626361;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-top ul li a:hover {
    color: #ffa500;
}

.footer-subscribe {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-subscribe input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
}
.footer-subscribe button {
    background-color: #9a562a;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

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

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #e0e0e0; /* Optional border for separation */
    padding: 10px 0; /* Adjust padding */
    background-color: transparent;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #9a562a;
}

.footer-bottom a {
    text-decoration: none;
    color: #9a562a;
    margin: 0 10px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffa500;
}

.footer-bottom-links {
    display: flex;
    gap: 10px;
    font-size: 14px;
    align-items: center;
}

.footer-bottom span {
    color: #9a562a;
}

/* Icon Circle for Contact Section */
.icon-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #9a562a; /* Circle background color */
    color: #ffffff; /* Icon color */
    border-radius: 50%; /* Makes it a perfect circle */
    margin-right: 10px; /* Adds space between the icon and text */
    font-size: 18px; /* Adjust icon size */
}

.footer-contact {
    display: flex;
    align-items: center;
    font-size: 14px; /* Adjust text size */
    line-height: 1.6;
    color: #626361;
    margin-bottom: 10px;
}

.footer-contact i {
    font-size: 16px; /* Adjust icon size inside the circle */
}

/********************** Responsive Adjustments ***********************/

/* For Tablets and Medium Screens */
@media screen and (max-width: 1024px) {
    .footer-header-inner {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .footer-logo-wrapper {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        padding: 10px 0;
    }

    .footer-nav-wrapper {
        justify-content: center;
        padding: 10px 0;
    }

    .footer-nav ul {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .footer-bottom {
        padding: 15px 0;
    }
}

/* For Mobile Screens */
@media screen and (max-width: 768px) {
    .footer-header {
        height: auto;
        padding: 10px 0;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .footer-nav ul li a {
        font-size: 14px;
    }
}

/* For Very Small Mobile Screens */
@media screen and (max-width: 480px) {
    .footer-logo-wrapper img {
        max-height: 60%;
    }

    .footer-nav ul {
        gap: 8px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}
