/* Footer Styling */
.mfn-footer {
    /* background: rgb(190, 232, 246) !important; */
    background: white !important;
    background-image: url('/image3.jpg') !important;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    color: #000;
    padding: 15px 0;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Widgets Wrapper */
.widgets_wrapper {
    padding: 20px 0;
    border-bottom: 1px solid #dee2e6;
    margin: 0;
}

/* Footer Copy Section Styling */
.footer_copy {
    padding: 10px 0;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    color: #000;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    border: none;
}

/* Copyright Text Styling */
.footer_copy .copyright-text {
    color: white;
    font-size: 15px;
    margin-bottom: 0;
}

/* Footer Links */
.footer_copy .footerlinks {
    list-style: none;
    padding: 0;
    margin-top: 5px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer_copy .footerlinks li {
    margin: 0;
}

.footer_copy .footerlinks a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    position: relative;
    /* Added for positioning the arrow */
}

/* Hover Effect for Footer Links */
.footer_copy .footerlinks a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: white;
}

/* Underline Animation Effect */
.footer_copy .footerlinks a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    /* Thickness of the underline */
    background-color: blue;
    transition: width 0.3s ease;
}

/* When hovering over the link */
.footer_copy .footerlinks a:hover::after {
    width: 100%;
}

/* Adding Arrow Icons (Quick Links Section) */
.footer_copy .footerlinks a::before {
    content: ">";
    font-size: 15px;
    margin-right: 5px;
}


/* Styling for the Address Link (Contact Section) */
.address-link {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.address-link:hover {
    text-decoration: underline;
    color: blue;
}

.address-link::before {
    content: "📍";
    margin-right: 5px;
}

/* Column adjustments for smaller footer */
.widgets_wrapper .col-md-3 {
    padding: 10px 15px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Adjustments for medium-sized screens (tablets, etc.) */
@media (max-width: 992px) {
    .footer_copy {
        text-align: center;
    }
}

/* Adjustments for small screens (mobile, etc.) */
@media (max-width: 768px) {
    .footer_copy {
        text-align: center;
    }
}

/* Adjustments for very small screens (extra small mobile devices) */
@media (max-width: 480px) {
    .footer_copy {
        padding: 5px 0;
        text-align: center;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* Apply a 3D effect to the footer */
@keyframes footer3DAnimation {
    0% {
        transform: translateY(100px) rotateX(30deg);
        opacity: 0;
    }

    100% {
        transform: translateY(0) rotateX(0);
        opacity: 1;
    }
}

/* Target the footer element */
#Footer {
    transform-origin: center center;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Only animate the footer when the page is fully scrolled to the bottom */
.animate-footer {
    animation: footer3DAnimation 1s ease-in-out forwards;
    opacity: 1;
}





/* Broucher Button css */

.download-btn {
    background-color: #166696;
    color: white;
    padding: 12px 24px;
    border: none;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #144d6c;
}


/* Page Scroll to Top Button */
.page-scroll {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.page-scroll a {
    font-size: 22px;
    color: #fff;
    background: pink;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 35px;
    display: inline-block;
    border-radius: 6px;
    border: 1px solid #fff;
}

.page-scroll a:hover {
    color: #166696;
}