section.hero {
    height: calc(100vh - 2rem);
    background: url('../images/hero-bg-d.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    overflow: hidden;
    position: relative;
    padding-top: 0.5rem;
}

.shape {
    position: absolute;
    z-index: 10;
    bottom: -2px;
}


section.hero .chat-bubble {
    position: absolute;
    top: -1px;
    background-color: #fdf2f4;
    color: #5c1d2e;
    padding: 14px 28px;
    font-size: 20px;
    width: max-content;
    font-weight: 600;
    border: 3px solid #d45d79;
    border-radius: 30px 30px 4px 30px;
    -webkit-box-shadow: 4px 6px 0px rgba(212, 93, 121, 0.2);
    box-shadow: 4px 6px 0px rgba(212, 93, 121, 0.2);
    /* white-space: nowrap; */
    z-index: 3;
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

/* Class added by JavaScript to trigger the pop bounce animation */
section.hero .pop-animation {
    -webkit-animation: popBounce 4.5s ease-in-out infinite;
    animation: popBounce 4.5s ease-in-out infinite;
}

/* Comic/Pop Accent Lines */
section.hero .pop-lines {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 30px;
    height: 30px;
    opacity: 0.7;
}

section.hero .pop-lines span {
    position: absolute;
    background-color: #fff;
    border-radius: 2px;
}

section.hero .pop-lines span:nth-child(1) {
    width: 4px;
    height: 15px;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
    top: 0;
    left: 0;
}

section.hero .pop-lines span:nth-child(2) {
    width: 4px;
    height: 15px;
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
    top: -5px;
    left: 15px;
}

section.hero .pop-lines span:nth-child(3) {
    width: 4px;
    height: 15px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 10px;
    left: 25px;
}


/* Wave Graphic Bottom Border styling */
section.hero .wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #fff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    -webkit-transform: scaleX(1.1);
    -ms-transform: scaleX(1.1);
    transform: scaleX(1.1);
}

/* --- Quick Pop & Fade Keyframes --- */
@-webkit-keyframes popBounce {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    8% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }

    12% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    15%,
    80% {
        -webkit-transform: scale(1) translateY(0px);
        transform: scale(1) translateY(0px);
        opacity: 1;
    }

    45% {
        -webkit-transform: scale(1) translateY(-6px);
        transform: scale(1) translateY(-6px);
        /* Floating drift feel */
    }

    88% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 1;
    }

    95%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
}

@keyframes popBounce {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    8% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }

    12% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    15%,
    80% {
        -webkit-transform: scale(1) translateY(0px);
        transform: scale(1) translateY(0px);
        opacity: 1;
    }

    45% {
        -webkit-transform: scale(1) translateY(-6px);
        transform: scale(1) translateY(-6px);
        /* Floating drift feel */
    }

    88% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 1;
    }

    95%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
}


section.hero .avatar-wrapper {
    position: absolute;
    left: -110px;
    width: 100%;
    display: flex;
    justify-content: center;
    top: 25%;
    pointer-events: none;
}

section.overview {
    padding: 0px 0 80px 0;
}

/* --- Left Quote Styling --- */
section.overview .quote-container {
    position: relative;
    padding-left: 25px;
}


section.overview .quote-text {
    font-size: 26px;
    line-height: 1.5;
    position: relative;
    /* font-weight: 400; */
}

section.overview .quote-text svg {
    position: absolute;
    left: -85px;
    top: -67px;
}

section.overview .quote-text strong {
    font-weight: 600;
    color: #2b1d1a;
}

/* --- Right Stats & Features Styling --- */
section.overview .stat-item {
    border-bottom: 1px solid #eadecc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

section.overview .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

section.overview .stat-number {
    font-size: 35px;
    font-weight: 600;
    color: #3b2824;
    /* min-width: 110px; */
    display: inline-block;
}

section.overview .stat-label {
    font-size: 29px;
    font-weight: 500;
    color: #4a3631;
}

/* Icon Lists */
section.overview .feature-icon-wrapper {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

section.overview .feature-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #3b2824;
    margin-bottom: 2px;
}

section.overview .feature-desc {
    font-size: 17px;
    color: #6e5853;
}


section.service {
    background-color: #F7F0E6;
    padding: 25vh 0;
    position: relative;
    overflow: hidden;
}


section.service .card_1 {
    background-color: #fff;
    border-radius: 40px;
    height: 100%;
}

section.service .card_1 img {
    border-radius: 40px 40px 0px 0px;
}

section.service .top_1 {
    position: absolute;
    top: -70px;
    z-index: 0;
}

section.service .bottom_1 {
    position: absolute;
    bottom: -50px;
}


/* Temporary spacer sections so you can scroll down to see the effect */
/* .spacer {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px dashed #e2dad0;
    color: #8c7671;
} */

.map-section {
    padding: 100px 0;
    /* background-color: #fbf9f6; */
    text-align: center;
}

/* --- Typography & Badges --- */


.section-title {
    color: #4a3631;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 60px;
}

/* --- Map Canvas --- */
.map-wrapper {
    position: relative;
    width: 100%;
    /* max-width: 1000px; */
    margin: 0 auto;
}

/* Clean placeholder base SVG map vector representation */
.base-map {
    width: 100%;
    height: auto;
    display: block;
    /* opacity: 0.25; */
    /* Soft earthy brown tint match */
    -webkit-filter: sepia(0.4) saturate(0.8);
    filter: sepia(0.4) saturate(0.8);
}




/* --- Map Pin Markers --- */
.map-marker {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: absolute;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    opacity: 0;
    /* Managed by GSAP */
    z-index: 5;
    cursor: pointer;
}

/* Marker pin styling */
.marker-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.marker-pin svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.15));
}

.map-marker:hover .marker-pin {
    -webkit-transform: scale(1.15) translateY(-2px);
    -ms-transform: scale(1.15) translateY(-2px);
    transform: scale(1.15) translateY(-2px);
}

/* Tooltip styling */
.marker-tooltip {
    position: absolute;
    left: 100%;
    margin-left: 10px;
    background-color: #ffffff;
    border: 2px solid #df6283;
    color: #df6283;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    padding: 6px 28px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(223, 98, 131, 0.15);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateX(-10px) scale(0.95);
    -ms-transform: translateX(-10px) scale(0.95);
    transform: translateX(-10px) scale(0.95);
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: opacity 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

/* Position tooltip to the left for markers on the right edge to avoid screen overflow */
.map-marker.tooltip-left .marker-tooltip {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 10px;
    -webkit-transform: translateX(10px) scale(0.95);
    -ms-transform: translateX(10px) scale(0.95);
    transform: translateX(10px) scale(0.95);
}

/* Hover state to show tooltip */
.map-marker:hover {
    z-index: 100;
}

.map-marker:hover .marker-tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateX(0) scale(1);
    -ms-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
}

/* SVG Flag inside tooltip if wanted, or hidden */
.flag-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    border: 1px solid #eee;
    margin-right: 6px;
    vertical-align: middle;
}

/* Responsive Positioning Matrix: 
   Using exact % ensures indicators scale naturally with the image sizing layout framework
*/
.pin-usa {
    top: 42%;
    left: 20%;
}

.pin-canada {
    top: 29%;
    left: 15%;
}

.pin-uk {
    top: 30%;
    left: 45%;
}

.pin-france {
    top: 40%;
    left: 45%;
}

.pin-amsterdam {
    top: 29%;
    left: 51%;
}

.pin-belgium {
    top: 40%;
    left: 54%;
}

.pin-italy {
    top: 38%;
    left: 49%;
}

.pin-poland {
    top: 33%;
    left: 50%;
}

.pin-dubai {
    top: 47%;
    left: 52%;
}

.pin-russia {
    top: 40%;
    left: 66%;
}

.pin-india {
    top: 56%;
    left: 66.5%;
}

.pin-bangladesh {
    top: 50.5%;
    left: 69.5%;
}

.pin-newzealand {
    top: 83%;
    left: 91%;
}


.languages-banner {
    background-color: #f5efe6;
    /* Light organic off-white wrapper backdrop */
    border-radius: 32px;
    padding: 34px 40px;
    color: #4a3631;
    /* Earthy charcoal/brown text tint */
    position: relative;
    overflow: hidden;
}

/* Title Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #3b2824;
    margin-bottom: 20px;
}

/* Core Body Paragraph Description */
.section-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6e5853;
    max-width: 480px;
    margin-bottom: 40px;
}

/* Language Pillar Footer row */
.language-tags {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #3b2824;
    text-transform: uppercase;
}

/* --- Right-Side Content Panel Layout --- */
.illustration-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    min-height: 250px;
}

/* Dynamic Pink Status Accent Message Banner */
.dynamic-accent-text {
    color: #df6283;
    /* Matching your core brand pink profile palette tint */
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: -10px;
    min-height: 48px;
    /* Prevents layout layout shifting while changing strings */
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    -o-transition: opacity 0.4s ease, transform 0.4s ease;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/* Class handled via scripts to animate content swap transitions safely */
.text-hidden {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

/* Responsive Illustration Image container configuration */
.vector-art {
    max-width: 70%;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    mix-blend-mode: multiply;
    position: relative;

}


section.spoken .bottom_1 {
    position: absolute;
    bottom: -50px;
}


/* --- Header Elements --- */
.category-badge {
    background-color: #df6283;
    /* Brand Pink accent */
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: capitalize;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 500;
    color: #3b2824;
    margin-bottom: 45px;
}


/* Dynamic Heights to create the staggered masonry rhythm look on desktop */
@media (min-width: 992px) {
    .tall-card {
        min-height: 250px;
    }
}

.card-meta-wrap {
    /* max-width: 75%; */
    /* Leaves distinct room on the right side for line art graphics */
    z-index: 2;
}

.approach-name {
    font-size: 18px;
    font-weight: 500;
    color: #3b2824;
    /* margin-bottom: 12px; */
    line-height: 1.3;
}

.approach-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6e5853;
    margin-bottom: 0;
}

/* --- Vector Artwork Asset Overlays --- */
.illustration-overlay {
    position: absolute;

    opacity: 1;
    /* Subdued watermark aesthetic matching original mockup */
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
}

.illustration-overlay.one {
    bottom: 10px;
    right: 0px;
    width: 140px;
    height: 140px;
}

.illustration-overlay.two {
    bottom: 0px;
    right: 15px;
    width: 150px;
    height: 150px;
}

.illustration-overlay.three {
    bottom: -27px;
    right: 0px;
    width: 148px;
    height: 140px;
}

.illustration-overlay.four {
    bottom: -15px;
    right: 15px;
    width: 150px;
    height: 150px;
}

.illustration-overlay.five {
    bottom: -10px;
    right: 0px;
    width: 160px;
    height: 160px;
}

.illustration-overlay.six {
    bottom: 0px;
    right: 15px;
    width: 130px;
    height: 130px;
}

/* Base generic line art icon styles to simulate the custom icons */
.icon-art {
    width: 100%;
    height: 100%;
    stroke: #4a3631;
    stroke-width: 1.5;
    fill: none;
}

section.approach {
    padding: 100px 0 100px 0;
}


.support-section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 100px;
}



/* --- Left Side Illustration Box --- */
.illustration-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

/* Responsive vector asset scaling metrics container */
.main-vector {
    max-width: 100%;
    height: auto;
    max-height: 460px;
    -o-object-fit: contain;
    object-fit: contain;
}

/* --- Right Side Content Custom Styling --- */
.expert-badge {
    background-color: #df6283;
    /* Brand signature pink theme tint */
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.section-heading {
    font-size: 2.8rem;
    font-weight: 500;
    color: #3b2824;
    margin-bottom: 24px;
}

.section-paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6e5853;
    margin-bottom: 20px;
    /* max-width: 580px; */
}

/* --- Pill Layout Config Matrix --- */
.pill-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /* Two balanced columns on desktop screens */
    gap: 16px;
    /* max-width: 560px; */
}

/* Fallback breakpoint adjustment to go full width on small interfaces cleanly */
@media (max-width: 576px) {
    .pill-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.support-pill {
    background-color: #f5efe6;
    /* Soft cream pill backdrops matching mockups */
    border-radius: 50px;
    padding: 14px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #3b2824;
    -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    transition: background-color 0.2s ease, -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    -o-transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.1), background-color 0.2s ease;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.1), background-color 0.2s ease;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.1), background-color 0.2s ease, -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    cursor: default;
}

/* Elegant minimal elevation interaction loop state */
.support-pill:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    background-color: #ede5da;
}

/* Icons line art accent wrapper colors configuration */
.pill-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #6e5853;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}


.testimonials-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0 100px 0;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 500;
    color: #3b2824;
    margin-bottom: 40px;
    line-height: 1.3;
}

/* --- Swiper Card Container Adjustments --- */
.swiper {
    padding: 20px 4px 60px 4px !important;
    /* Space at bottom for bullets */
}

/* --- Testimonial Card Styling --- */
.testimonial-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: none;
    border: 1px solid #ededed;
    /* box-shadow: 0 8px 24px rgba(74, 54, 49, 0.03); */
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.testimonial-card:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 12px 30px rgba(74, 54, 49, 0.06);
    box-shadow: 0 12px 30px rgba(74, 54, 49, 0.06);
}

/* Quote Marks Styling */
.quote-icon {
    font-size: 2.5rem;
    line-height: 1;
    color: #e6dfd7;
    /* Soft grey/cream quote mark color */
    font-family: serif;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #6e5853;
    /* Soft body text tone */
    margin-bottom: 30px;
    font-weight: 400;
}

/* Divider line inside card */
.card-divider {
    border-top: 1px solid #f0eae1;
    margin-bottom: 20px;
}

/* User Profile Row styling */
.user-profile-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

/* Custom Initial Badge Placeholder Look mimicking the vector avatars */
.avatar-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #fdf2f4;
    border: 1.5px dashed #df6283;
    /* Signature pink accented badge border */
    color: #df6283;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.user-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #df6283;
    /* Main pink tone for name highlights */
    margin-bottom: 2px;
    line-height: 1;
}

.user-location {
    font-size: 0.9rem;
    color: #9c8580;
    margin-bottom: 0;
    line-height: 1;
}

/* --- Custom Swiper Pagination Dot Customizations --- */
.swiper-pagination-bullets {
    bottom: 10px !important;
}

.swiper-pagination-bullet {
    width: 32px !important;
    height: 6px !important;
    border-radius: 4px !important;
    background: #e2dad0 !important;
    opacity: 1 !important;
    -webkit-transition: width 0.3s ease, background-color 0.3s ease !important;
    -o-transition: width 0.3s ease, background-color 0.3s ease !important;
    transition: width 0.3s ease, background-color 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    width: 48px !important;
    background: #3b2824 !important;
    /* Earthy deep brown focus dot */
}

/* --- About Me Content Styling --- */

.section-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.section-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

/* --- Custom Button Styling --- */
.btn-learn-more {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 24px;
    background-color: var(--btn-dark);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: none;
    -webkit-transition: background-color 0.2s ease,
        -webkit-transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        -webkit-box-shadow 0.2s ease;
    transition: background-color 0.2s ease,
        -webkit-transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        -webkit-box-shadow 0.2s ease;
    -o-transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background-color 0.2s ease,
        box-shadow 0.2s ease;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background-color 0.2s ease,
        box-shadow 0.2s ease;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        -webkit-transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        -webkit-box-shadow 0.2s ease;
    -webkit-box-shadow: 0 4px 14px rgba(59, 40, 36, 0.15);
    box-shadow: 0 4px 14px rgba(59, 40, 36, 0.15);
}

.btn-learn-more:hover {
    background-color: #2b1d1a;
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-box-shadow: 0 6px 20px rgba(59, 40, 36, 0.25);
    box-shadow: 0 6px 20px rgba(59, 40, 36, 0.25);
    color: #ffffff;
}

.btn-learn-more:active {
    -webkit-transform: scale(0.98);
    -ms-transform: scale(0.98);
    transform: scale(0.98);
}

.btn-learn-more svg {
    width: 20px;
    height: 20px;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.btn-learn-more:hover svg {
    -webkit-transform: translateX(4px);
    -ms-transform: translateX(4px);
    transform: translateX(4px);
}




/* --- Liquid Morphing Blob Container --- */
.blob-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* The Outer Dotted/Dashed Animated Outline Ring */
.blob-outline {
    position: absolute;
    width: 103%;
    height: 103%;
    border: 2px dashed #d45d79;
    pointer-events: none;
    z-index: 1;
    -webkit-animation: blobMorph 40s ease-in-out infinite, rotateBlob 24s linear infinite;
    animation: blobMorph 40s ease-in-out infinite, rotateBlob 24s linear infinite;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;

    opacity: 0.6;
}

/* The Masked Image Container */
.blob-image-container {
    position: relative;
    width: 96%;
    height: 96%;
    overflow: hidden;
    z-index: 2;
    -webkit-animation: blobMorph 10s ease-in-out infinite;
    animation: blobMorph 10s ease-in-out infinite;
    /* box-shadow: 0 15px 35px rgba(74, 54, 49, 0.1); */
}

/* The Profile Image itself (covers entire morphing box) */
.blob-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

/* Subtle interactive zoom on hover */
.blob-wrapper:hover .blob-image {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/* --- Fluid Organic Blob Keyframes --- */
@-webkit-keyframes blobMorph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    25% {
        border-radius: 53% 47% 43% 57% / 45% 55% 45% 55%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    75% {
        border-radius: 45% 55% 52% 48% / 62% 40% 60% 38%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes blobMorph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    25% {
        border-radius: 53% 47% 43% 57% / 45% 55% 45% 55%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    75% {
        border-radius: 45% 55% 52% 48% / 62% 40% 60% 38%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Slow continuous rotation just for the dashed outer line to give it extra playfulness */
@-webkit-keyframes rotateBlob {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotateBlob {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Responsive Breakpoint fine-tuning */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2.4rem;
        margin-top: 10px;
    }

    .blob-wrapper {
        max-width: 380px;
        margin-top: 50px;
    }
}


section.about-section {
    position: relative;
    background-color: #F7F0E6;
    padding: 150px 0;
    overflow: hidden;
}

section.about-section .top_1 {
    position: absolute;
    top: -81px;
}

section.about-section .bottom_1 {
    position: absolute;
    bottom: -81px;
}


section.instgram {
    padding: 50px 0;
}

section.FAQ {
    padding: 80px 0 80px 0;
}


.accordion-button:not(.collapsed) {
    background-color: #2b1d1a;
    color: #fff;
}

.accordion-button {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.accordion-body {
    background: #fff3f9;
}





.testimonial-card_1 {
    padding: 0px;
    /* max-width: 89%; */
    background-color: #ffff;
}

.testimonial-card_1 .quote-icon {
    font-size: 18px;
    line-height: 1;
    color: #6c757d;
    font-family: serif;
}

.testimonial-card_1 .testimonial-text {
    font-style: italic;
    font-size: 12px;
    /* Smaller font */
    color: #333;
    margin-bottom: 8px;
}

/* .testimonial-card_1 .card-divider {
    height: 1px;
    background-color: #dee2e6;
    margin: 8px 0;
} */

/* .testimonial-card_1 .user-profile-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-card_1 .avatar-initials {
    width: 32px;
   height: 32px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.testimonial-card_1 .user-name {
    font-size: 0.85rem;
    margin: 0;
    font-weight: 600;
}

.testimonial-card_1 .user-location {
    font-size: 0.75rem;
    color: #6c757d;
    margin: 0;
} */


.support_pace .bg_2 {
    border-radius: 55px;
    background-color: #F7F0E6;

}



.support_pace .bg_2 img {
    mix-blend-mode: luminosity;
    opacity: 0.4;

}


section.approach .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* --- Grid & Card Design --- */
.approach-card {
    background: #f7f0e6;
    border-radius: 24px;
    padding: 6px 20px 6px 20px;
    height: 100%;
    border: 1px solid #b8aba4;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 10px;
    /* justify-content: space-between; */

    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-box-shadow 0.3s ease;
    -o-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-box-shadow 0.3s ease;
}

/* Interactive lift effect on hover */
/* .approach-card:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
   
} */


.box_1 {
    /* border: 1px solid #2b1d1a24; */
    /* border-radius: 100%; */
    display: flex;
    /* margin-bottom: 10px; */
    overflow: hidden;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 70px;
}

.box_1 img {
    width: 100%;
    opacity: 0.8;
    object-fit: contain;
    mix-blend-mode: darken;
    /* position: absolute;
    bottom: 0; */
}

.modal-body {
    max-height: 75vh;
    overflow-y: auto;
}

.modal-header {
    padding: 13px 30px;
}



.custom-modal {
    border: none;
    border-radius: 32px;
    background: #FFFCF6;
    overflow: hidden;
}

.modal-badge {
    display: inline-block;
    background: #DF5D83;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
}

.modal-title-custom {
    font-size: 34px;
    color: #3E2723;
    margin-bottom: 0;
}

.modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

.therapy-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    height: 100%;
    transition: .3s;
    border: 1px solid #f0e5d9;
}

.therapy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.therapy-card h5 {
    color: #3E2723;
    margin-bottom: 12px;
    font-size: 22px;
}

.therapy-card p {
    color: #6C5B57;
    line-height: 1.7;
    margin-bottom: 0;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #DF5D83;
    border-radius: 20px;
}

body.modal-open {
    padding-right: 0px !important;
}


/* Affirmative Reminders Section */
.reassure-section {
    /* background-color: #FAF6F2; */
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.reassure-card {
    background-color: #FFFFFF;
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid rgba(74, 54, 49, 0.05);
    -webkit-box-shadow: 0 10px 30px rgba(74, 54, 49, 0.02);
    box-shadow: 0 10px 30px rgba(74, 54, 49, 0.02);
}

.reassure-list li {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 30px;
    list-style: none;
}

.reassure-list li::before {
    content: "\f004";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #DF5D83;
    font-size: 0.95rem;
    top: 3px;
}

.reassure-list li:last-child {
    margin-bottom: 0;
}



/* High-Utility Accordion for Pre-Booking Doubts */
.quick-faq-section {
    /* background-color: #FFFFFF; */
    padding: 80px 0;
    /* border-top: 1px solid rgba(74, 54, 49, 0.05); */
}

.faq-item-card {
    background: #ffffff;
    border: 1px solid rgba(74, 54, 49, 0.06);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.faq-header-trigger {
    width: 100%;
    padding: 1.25rem 1.75rem;
    background: none;
    border: none;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    outline: none;
}

.faq-question-text {
    font-weight: 600;
    font-size: 1.05rem;
    color: #4A3631;
}

.faq-icon-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #4A3631;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.faq-header-trigger[aria-expanded="true"] .faq-icon-arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    background-color: #DF5D83;
    color: #FFFFFF;
}

.faq-header-trigger[aria-expanded="true"] .faq-question-text {
    color: #DF5D83;
}

.faq-collapse-body {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    -o-transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer-content {
    padding: 0 1.75rem 1.5rem 1.75rem;
    font-size: 0.95rem;
    color: #4A3631;
    opacity: 0.85;
}