.custom-logo {
	max-width: 100px;
}


/* --- HERO SECTION - PSYCHARE STYLE --- */

/* 1. Full Height and Vertical Centering */
.threshold-full-hero {
    min-height: 100vh; /* Full screen height */
    display: flex ;
    align-items: center ; 
    position: relative;
}

/* 2. The Left-Side Fade (Psychare Style) */
/* This ensures text is readable on the left while image shows on the right */
.threshold-full-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle white fade from left to right */
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

/* 3. Ensure your Column content sits above the fade */
.threshold-full-hero .wp-block-cover__inner-container {
    z-index: 10;
    position: relative;
    width: 100% !important;
}

/* 4. Typography (Your Brand Colors) */
.threshold-full-hero h5 {
    color: #435c46 !important; /* Green */
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.threshold-full-hero h1 {
    color: #2e3d57 !important; /* Dark Blue */
    font-size: clamp(36px, 5vw, 60px) !important; /* Responsive size */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.threshold-full-hero p {
    color: #565852 !important; /* Gray */
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* 5. Button Styling (hero_btn) */
.hero_btn .wp-block-button__link {
    background-color: #435c46 !important; /* Green */
    color: #ffffff !important;
    border-radius: 4px !important;
    padding: 16px 32px !important;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.hero_btn .wp-block-button__link:hover {
    background-color: #2e3d57 !important; /* Dark Blue hover */
    transform: translateY(-3px);
}

/* Cleanup: Hide empty paragraphs from WordPress */
.threshold-full-hero p:empty {
    display: none !important;
}

/* 1. Main Container & Overlap */
.threshold-full-hero + .wp-block-group {
    margin-top: -80px !important; /* Pulls the section up into the Hero */
    position: relative;
    z-index: 99;
}

/* 2. Left White Box (cta-info-box) */
.cta-info-box {
    background: #ffffff !important;
    padding: 50px !important;
    border-radius: 10px 0 0 10px !important; /* Round only left corners */
    box-shadow: -15px 15px 40px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
}

.cta-info-box h4 {
    color: #2e3d57 !important; /* Dark Blue */
    font-size: 30px !important;
    margin-bottom: 15px !important;
    font-family: 'Libre Baskerville', serif;
}

/* Fix Icon List Colors (Green) */
.wp-block-themeisle-blocks-icon-list-item-icon {
    color: #435c46 !important;
    font-size: 1.2em;
}

/* 3. Right Dark Box (cta-call-box) */
.cta-call-box {
    background-color: #2e3d57 !important; /* Your Dark Blue */
    color: #ffffff !important;
    padding: 50px !important;
    border-radius: 0 10px 10px 0 !important; /* Round only right corners */
    box-shadow: 15px 15px 40px rgba(46, 61, 87, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-call-box h4 {
    color: #ffffff !important;
    font-size: 28px !important;
    margin-bottom: 10px !important;
}

/* 4. Phone Icon & Number Styling */
/* Targets Essential Blocks phone icon */
.cta-call-box .eb-feature-list-icon {
    background-color: #1a2433 !important; /* Darker Blue Circle */
    color: #ffffff !important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cta-call-box .eb-feature-list-title a {
    color: #fff !important; /* Make "DIAL NOW" Green or White */
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
}

.cta-call-box .eb-feature-list-content {
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 700;
}

/* 5. Button inside white box */
.cta-info-box .eb-button-anchor {
    background-color: #2e3d57 !important; /* Dark Blue Button */
    border-radius: 5px !important;
    padding: 12px 25px !important;
}

.cta-info-box .eb-button-anchor:hover {
    background-color: #435c46 !important; /* Turn Green on hover */
}

/* --- ABOUT SECTION: FULL REFIX --- */

.home_about_sec {
    padding: 100px 0 !important;

}

/* Container for Image + Quote */
.about-image-column {
    position: relative;
    display: inline-block;
}

.about-image-column figure {
    margin: 0 !important;
}

.about-image-column img {
    border-radius: 15px;
    display: block;
    width: 100%;
    height: auto;
    box-shadow: 15px 15px 0px #f4f7f6; /* Decorative back-box */
}

/* Move Quote to Bottom Right */
.about-image-column .wp-block-quote {
    position: absolute !important;
    bottom: -30px; /* Pushes it slightly past the bottom of the image */
    right: -20px;  /* Pushes it slightly past the right of the image */
    background: #ffffff !important;
    padding: 25px 30px !important;
    width: 280px !important; /* Fixed width for the box */
    border: none !important;
    border-left: 5px solid #435c46 !important; /* Your Green Accent */
    box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
    border-radius: 8px;
    z-index: 10;
    margin: 0 !important;
}

.about-image-column .wp-block-quote p {
    color: #435c46 !important; /* Your Green */
    font-size: 17px !important;
    font-style: italic;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
    text-align: left !important;
}

.about-image-column .wp-block-quote cite {
    color: #565852 !important; /* Gray */
    font-size: 12px !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: left !important;
    display: block;
}

/* --- TEXT CONTENT COLUMN --- */
.about-text-column {
    padding-left: 60px !important; /* Space between image and text */
}

.about-text-column h5 {
    color: #435c46 !important;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.about-text-column h5::before {
    content: "";
    width: 35px;
    height: 2px;
    background-color: #435c46;
    margin-right: 15px;
}

.about-text-column h3 {
    color: #2e3d57 !important; /* Dark Blue */
    font-size: 42px !important;
    font-family: 'Libre Baskerville', serif !important;
    line-height: 1.2 !important;
    margin-bottom: 30px !important;
}
.about-text-column p {
    color: #565852 !important; /* Gray */
    font-size: 18px;
    line-height: 1.8;
	margin-bottom: 15px;
}
/* Contact Button */


.about-text-column .wp-block-buttons.hero_btn {
	margin-top: 20px;
}

/* --- CLINIC LOCATIONS SECTION --- */
/* --- CLINIC LOCATIONS: PRICING CARD STYLE --- */

/* 1. Main Section Container */
#home_locations {
    background-color: #f6f7fa !important; /* Soft light background */
    padding: 100px 0 !important;
}

/* 2. The Card Container */
.home_locationsBox {
    background: #ffffff !important;
    padding: 0 !important; /* Removes padding so header hits the edges */
    border-radius: 12px !important;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06) !important;
    overflow: hidden; /* Clips the colored header to the rounded corners */
    border: none !important;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

/* 3. The Colored Header (Psychare Pricing Style) */
.home_locationsBox .title {
    background-color: #435c46 !important; /* Your Green Header */
    padding: 30px 25px !important;
    display: flex !important;
    align-items: center;
    margin-bottom: 0 !important;
}

/* White Icon & Title inside the Green Header */
.home_locationsBox .eb-icon-container i, 
.home_locationsBox .title h3 {
    color: #ffffff !important;
}

.home_locationsBox h3 {
    font-size: 20px !important;
    margin-left: 15px !important;
    font-weight: 700 !important;
}

/* 4. The White Body Content */
.home_locationsBox p {
    padding: 0 30px !important; /* Keeps text away from edges */
    color: #565852 !important;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px !important;
}

/* Spacing for the first and last items in the body */
.home_locationsBox .title + p {
    padding-top: 30px !important;
}

.home_locationsBox p:last-child {
    padding-bottom: 35px !important;
}

/* 5. Address Labels (Dark Blue) */
.home_locationsBox p strong {
    color: #2e3d57 !important;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home_locationsBox .wp-block-buttons {
    padding: 0 30px !important; /* Keeps text away from edges */
     margin-top: 20px !important;
}

/* 6. Google Maps Link (Green) */
.home_locationsBox a {
    color: #435c46 !important;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-block;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.home_locationsBox a:hover {
    border-bottom: 2px solid #435c46;
}

/* 7. Hover Effect */
.home_locationsBox:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(46, 61, 87, 0.12) !important;
}


/* --- THE ASSESSMENT PROCESS: REFIXED --- */

/* 1. Main Section Container */
.how_work_section {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    background-color: #ffffff !important;
    display: block !important;
}

/* 2. Top Heading "THE PROCESS" */
.how_work_section h6 {
    color: #435c46 !important; /* Your Green */
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
}

.how_work_section h6::before {
    content: "" !important;
    width: 30px !important;
    height: 2px !important;
    background-color: #435c46 !important;
    margin-right: 15px !important;
}

/* 3. Icons (The Circular Backgrounds) */
.how_work_section .eb-feature-list-icon {
    background-color: #435c46 !important; /* Green */
    color: #ffffff !important; /* White Icon */
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
}

/* 4. The Vertical Dashed Line */
/* This targets the line between the icons */
.how_work_section .eb-feature-list-items::after {
    content: "" !important;
    border-left: 2px dashed #435c46 !important;
    opacity: 0.3 !important;
    left: 25px !important; /* Centers exactly under the 50px icon */
}

/* 5. Step Titles & Text */
.how_work_section .eb-feature-list-title {
    color: #2e3d57 !important; /* Dark Blue */
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
}

.how_work_section .eb-feature-list-content {
    color: #565852 !important; /* Gray Body Text */
    font-size: 16px !important;
}

/* 6. Image Column (Right Side) Decor */
.process-image-wrap {
    position: relative !important;
    padding: 40px !important;
}

.process-image-wrap img {
    border-radius: 15px !important;
    position: relative !important;
    z-index: 5 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

/* Decorative Light Green Square behind Image */
.process-image-wrap::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 80% !important;
    height: 80% !important;
    background-color: #f4f7f6 !important;
    border-radius: 15px !important;
    z-index: 1 !important;
}

/* --- PSYCHARE PREMIUM INNER BANNER --- */
.threshold-inner-banner {
    background-color: #2d221b !important; /* Warm Dark Brown Base like Demo */
    background-size: cover !important;
    background-position: center center !important;
    position: relative;
    padding: 160px 0 100px 0 !important;
    z-index: 1;
    overflow: hidden;
}

/* The Warm Sepia Overlay from the Demo */
.threshold-inner-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(45, 46, 43, 0.81);
    z-index: 0;
}

.threshold-inner-banner .container {
    position: relative;
    z-index: 2;
}

/* Title Styling (Serif) */
.threshold-inner-banner h1.banner-main-title {
    color: #ffffff !important;
    font-size: 62px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    letter-spacing: -1px;
    line-height: 1.1;
}

/* Italicized Subtext like the Demo */
.threshold-inner-banner p.banner-subtext {
    color: rgba(255, 255, 255, 0.85) !important;
    font-style: italic;
    font-family: "Georgia", serif;
    font-size: 19px;
    max-width: 650px;
    margin: 0 auto 40px auto !important;
    line-height: 1.6;
}

/* --- BANNER BUTTONS --- */
.banner-btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.btn-banner {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 16px 35px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    transition: all 0.4s ease;
}

.btn-banner-primary {
    background-color: #435c46 !important; /* Your Green */
    border: 2px solid #435c46 !important;
    color: #ffffff !important;
}

.btn-banner-outline {
    background-color: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    color: #ffffff !important;
}

.btn-banner:hover {
    background-color: #ffffff !important;
    color: #2d221b !important;
    border-color: #ffffff !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* --- PILL BREADCRUMB AT BOTTOM --- */
.banner-breadcrumb-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.banner-breadcrumb-pill a {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-decoration: none;
    opacity: 0.9;
}

.banner-breadcrumb-pill .sep {
    color: rgba(255,255,255,0.4);
    margin: 0 12px;
    font-size: 12px;
}

.banner-breadcrumb-pill .current-page {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

/*******about us page ************/


/* --- HERO SECTION - PSYCHARE STYLE --- */

/* 1. Full Height and Vertical Centering */
.aboutus-hero {
    min-height: 100vh; /* Full screen height */
    display: flex ;
    align-items: center ; 
    position: relative;
}

/* 2. The Left-Side Fade (Psychare Style) */
/* This ensures text is readable on the left while image shows on the right */
.aboutus-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle white fade from left to right */
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

/* 3. Ensure your Column content sits above the fade */
.aboutus-hero .wp-block-cover__inner-container {
    z-index: 10;
    position: relative;
    width: 100% !important;
}

/* 4. Typography (Your Brand Colors) */
.aboutus-hero h5 {
    color: #435c46 !important; /* Green */
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.aboutus-hero h1 {
    color: #2e3d57 !important; /* Dark Blue */
    font-size: clamp(36px, 5vw, 60px) !important; /* Responsive size */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.aboutus-hero p {
    color: #565852 !important; /* Gray */
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 35px;
}



/* Cleanup: Hide empty paragraphs from WordPress */
.aboutus-hero p:empty {
    display: none !important;
}


/* --- 3RD SECTION: REFINED VISIBILITY & CLEAN CODE --- */

/* Wrapper & Overlay Control */
.focus_section .wp-block-cover {
    min-height: 550px;
    padding: 120px 0;
    position: relative;
}

/* Linear Gradient Overlay - Deep Blue to Transparent */
.focus_section .wp-block-cover__background {
    background: linear-gradient(to right, 
        rgba(46, 61, 87, 0.98) 0%,   /* Near solid at far left */
        rgba(46, 61, 87, 0.85) 30%,  /* Strong coverage behind text */
        rgba(46, 61, 87, 0.4) 65%,   /* Fading out */
        rgba(46, 61, 87, 0) 100%     /* Clear on the right face */
    );
    opacity: 1;
}

/* Text Container Alignment */
.focus_section .threshold-left-content-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* The White Label with Green Line */
.focus_section .threshold-left-content-section h5.wp-block-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff; /* Changed to White as requested */
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* The Green Line remains Green for branding */
.focus_section .threshold-left-content-section h5.wp-block-heading::before {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #435c46; 
}

/* Headline Visibility */
.focus_section .threshold-left-content-section h2.wp-block-heading {
    color: #ffffff;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* Body Text Visibility */
.focus_section .threshold-left-content-section p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.7;
    max-width: 500px;
    margin-left: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* --- ELITE TEAM GRID STYLING --- */

.team_section {
    padding: 100px 0;
    background-color: #f9fbf9; /* Very light brand tint */
}

.team_header {
    text-align: center;
    margin-bottom: 60px;
}

.team_header h6 {
    color: #435c46;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.team_header h2 {
    color: #2e3d57;
    font-size: 44px;
    font-weight: 800;
}

/* --- BOOKING FORM TITLE STYLING --- */

/* Targets the H3 specifically within the form column */
.booking_section .wp-block-column:last-child h3 {
    color: #2e3d57; /* Your Brand Dark Blue */
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-align: left;
}

/* Adds a small green accent line under the title if you want it (Optional) */
.booking_section .wp-block-column:last-child h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #435c46; /* Your Brand Green */
    margin-top: 15px;
}

/* Ensure the form container doesn't have extra top margin now */
.booking_section .wpforms-container {
    margin-top: 0;
}

/* Responsive adjustment */
@media (max-width: 767px) {
    .booking_section .wp-block-column:last-child h3 {
        font-size: 24px;
        text-align: center;
    }
    .booking_section .wp-block-column:last-child h3::after {
        margin: 15px auto 0 auto; /* Center the line on mobile */
    }
}


/* Mobile Adjustments */
@media (max-width: 767px) {
    .focus_section .wp-block-cover__background {
        background: rgba(46, 61, 87, 0.9); /* Solid dark on mobile */
    }
    .focus_section .threshold-left-content-section h2.wp-block-heading {
        font-size: 34px;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .threshold-inner-banner { padding: 100px 0 60px 0 !important; }
    .threshold-inner-banner h1.banner-main-title { font-size: 42px !important; }
    .banner-btn-group { flex-direction: column; align-items: center; }
    .btn-banner { width: 100%; max-width: 280px; }
}