/*
Theme Name: Doccure Child
Theme URI: https://medicaltourismworld.com/
Description: Child theme for Doccure Theme
Author: Your Name
Author URI: https://medicaltourismworld.com/
Template: doccure
Version: 1.0.0
Text Domain: doccure-child
*/

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600&display=swap');

/* NEW: Full-width background wrapper (Frame 92) */
.footer-wrapper-section {
    background-image: url('https://medicaltourismworld.com/wp-content/uploads/2025/10/Frame-92.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
	padding: 0 100px;
    box-sizing: border-box;
}

/* MODIFIED: The main footer container, now boxed (Frame 88) */
.new-site-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    background: #09243C;
border-radius: 48px 48px 0 0;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    width: 100%;
    margin: 0 auto; 
    box-sizing: border-box;
    /* Internal padding for the content inside the blue box */
    padding: 100px 60px 48px 60px;
}

h6.footer-title {
    color: #FFFFFF;
}

.copyright-text p.mb-0 {
    display: block;
}

.new-site-footer .container {
    width: 100%;
    max-width: 1228px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* --- Top Links Section --- */
.footer-links-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    justify-content: space-between;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex-grow: 1;
    flex-basis: 0;
}

/* Styling the widgets from WordPress */
.footer-column .widget {
    padding: 0;
    margin: 0;
}
.footer-column .widget-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column ul li a {
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #FFFFFF !important;
    text-decoration: none;
    transition: opacity 0.3s;
}
.footer-column ul li a:hover {
    opacity: 0.8;
}

/* --- Dividers --- */
.footer-divider {
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    opacity: 0.1;
}

.footer-branding-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    position: relative;
}
.main-logo-center {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accreditation-logo-right {
    position: absolute;
    right: 0;
}


.featured-logos-left,
.accreditation-logo-right,
.main-logo-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.featured-logos-left {
    justify-content: flex-start;
    gap: 10px;
}
.accreditation-logo-right {
    justify-content: flex-end;
}

.logo-circle {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border: 1px solid #FDB614;
    border-radius: 999px;
    font-size: 12px;
    line-height: 120%;
    text-align: center;
}

.main-logo-center {
    flex-direction: column;
    gap: 16px;
}
.main-logo-center .main-logo-circle {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Bottom Copyright Section --- */
.footer-bottom-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 18px;
}
.copyright-text p {
    margin: 0;
}
.policy-menu-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.policy-menu-list li a {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s;
}
.policy-menu-list li a:hover {
    opacity: 0.8;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
	    .footer-branding-section {
        position: relative;
    }

    .accreditation-logo-right {
        position: static;
        margin-top: 20px;
    }

    .main-logo-center {
        position: static;
        transform: none;
    }
    .footer-wrapper-section {
        padding: 50px 15px 30px 15px; /* Less padding on mobile */
    }
    .new-site-footer {
        padding: 50px 20px 30px 20px;
    }
    .footer-links-section,
    .footer-branding-section,
    .footer-bottom-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    .footer-column {
        align-items: center;
    }
    .accreditation-logo-right,
    .featured-logos-left {
        justify-content: center;
    }
    .policy-menu-list {
        flex-direction: column;
        gap: 15px;
    }
}