:root {
    --bg: #f6f8fb;
    --text: #222;
    --primary: #1b74e4;
    --white: #fff;
    --dark: #070c17;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    padding-top: 0;
}

.container {
    width: min(1000px, 92%);
    margin: 0 auto;
}

/* About page: all sections full width with small side gap */
.about-page .container {
    width: min(1240px, calc(100% - 24px));
    max-width: 1240px;
    margin: 0 auto;
}

/* About page: keep deep-dive aligned with same page width */
.about-page .deep-dive-container {
    width: min(1240px, calc(100% - 24px));
    max-width: 1240px;
    margin: 0 auto;
}

/* About page: justify all paragraph content */
.about-page p {
    text-align: justify;
    text-justify: inter-word;
}

/* Contact page hero + map + message */
.contact-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #06121b;
}

.contact-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 14, 23, 0.60) 0%, rgba(8, 14, 23, 0.60) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 0 44px;
}

.contact-hero-title {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
}

.contact-hero-highlight {
    display: inline-block;
    transition: color 180ms ease, text-shadow 180ms ease;
}

.contact-hero:hover .contact-hero-highlight {
    color: #88cb4e;
    text-shadow: 0 12px 30px rgba(136, 203, 78, 0.22);
}

.contact-message-section {
    padding: 18px 0 8px;
}

.contact-message-box {
    background: #fff;
    border-radius: 16px;
    padding: 22px 22px;
    box-shadow: 0 18px 46px rgba(17, 26, 46, 0.10);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-message-box h2 {
    margin: 0 0 8px;
    font-size: 1.6rem;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    color: #0f172a;
}

.contact-message-box p {
    margin: 0 0 16px;
    color: #475569;
    line-height: 1.7;
}

.contact-message-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    color: #334155;
    font-weight: 600;
}

.contact-message-grid div strong {
    color: #0f172a;
    font-weight: 800;
}

.contact-map-section {
    padding: 24px 0 56px;
}

.contact-map-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 46px rgba(17, 26, 46, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: #fff;
}

.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 430px;
}

/* Facilities hero */
.facilities-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #06121b;
}

.facilities-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facilities-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 14, 23, 0.60) 0%, rgba(8, 14, 23, 0.60) 100%);
}

.facilities-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 0 44px;
}

.facilities-hero-title {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
}

.facilities-hero-highlight {
    display: inline-block;
    transition: color 180ms ease, text-shadow 180ms ease;
}

.facilities-hero:hover .facilities-hero-highlight {
    color: #88cb4e;
    text-shadow: 0 12px 30px rgba(136, 203, 78, 0.22);
}

.facilities-sections {
    padding-top: 48px;
    padding-bottom: 64px;
}

.facilities-layout {
    display: grid;
    gap: 24px;
}

.facility-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(136, 203, 78, 0.28);
    box-shadow: 0 16px 36px rgba(136, 203, 78, 0.14);
    display: grid;
    gap: 18px;
    }

.facility-card-text {
    padding-top: 2px;
}

.facility-card h2 {
    margin: 0 0 14px;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    color: #2f6e1f;
    font-family: Georgia, "Times New Roman", serif;
    position: relative;
    padding-bottom: 8px;
}

.facility-card h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    background: #88cb4e;
}

.facility-points {
    margin: 0 0 20px;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: #334155;
}

.facility-points li {
    line-height: 1.65;
}

.facility-points li::marker {
    color: #67ad35;
}

.facility-images-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.facility-image-item {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fafc;
}

.facility-image-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 220ms ease;
}

.facility-image-item:hover img {
    transform: scale(1.03);
}

.facility-no-image {
    margin: 2px 0 0;
    color: #64748b;
    font-size: 0.96rem;
}

@media (max-width: 900px) {
    .contact-message-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-wrap iframe {
        height: 340px;
    }

    .facility-images-grid {
        grid-template-columns: 1fr;
    }

    .facility-image-item img {
        height: 240px;
    }
}

.top-info-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    background: #121a25;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.75rem;
}

.top-info-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 34px;
    gap: 10px;
}

.top-info-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-info-left a,
.top-info-left span {
    color: inherit;
    text-decoration: none;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-social a {
    color: inherit;
    text-decoration: none;
    opacity: 0.9;
}

.site-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 70;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    backdrop-filter: none;
}

.nav-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 72px;
    gap: 18px;
}

.brand {
    min-width: 180px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.brand img {
    display: block;
    height: 150px;
    width: 250px;
    max-width: 100%;
    object-fit: cover;
    filter: none;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 36px;
    margin: 0;
    padding: 0;
}

.desktop-links {
    justify-self: center;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-links a:hover {
    color: #b5ea86;
}

.services-nav-label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}

.services-nav-trigger {
    border: 0;
    background: transparent;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.services-nav-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -2px;
    transition: transform 180ms ease;
}

.services-nav-item {
    position: relative;
}

.services-dropdown {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    width: 100vw;
    background: #121a25;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 26px rgba(10, 20, 30, 0.16);
    border-radius: 0;
    padding: 24px 0 28px;
    min-height: 230px;
    display: none;
    z-index: 200;
}

.services-dropdown-grid {
    width: min(1240px, calc(100% - 28px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 34px;
    align-content: start;
}

.services-dropdown a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.45;
    white-space: nowrap;
}

.services-dropdown a::before {
    content: "▸";
    color: #88cb4e;
    font-size: 0.78rem;
}

.services-dropdown a:hover {
    color: #88cb4e;
}

.services-nav-item.is-open .services-dropdown {
    display: block;
}

.services-nav-item.is-open .services-nav-arrow {
    transform: rotate(-135deg);
    margin-top: 2px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #88cb4e;
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.86rem;
    font-weight: 700;
}

.desktop-only {
    display: inline-flex;
}

.mobile-toggle {
    display: none;
    border: 1px solid #d5dbe5;
    background: #fff;
    border-radius: 10px;
    padding: 0;
    width: 44px;
    height: 44px;
    cursor: pointer;
    justify-self: end;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
}

.mobile-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #2b394d;
    border-radius: 1px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-toggle.is-open .mobile-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.is-open .mobile-toggle-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-open .mobile-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    padding: 8px 0 14px;
    border-top: 1px solid #edf1f6;
    background: #121a25;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.mobile-nav a {
    display: block;
    padding: 10px 4%;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.98rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mobile-nav-label {
    display: block;
    padding: 10px 4%;
    color: #88cb4e;
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mobile-nav a:hover {
    background: rgba(136, 203, 78, 0.16);
}

.mobile-services-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.98rem;
    font-weight: 800;
    padding: 10px 4%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-services-links {
    display: none;
}

.mobile-services-links a {
    padding-left: 10%;
}

.mobile-services-toggle.is-open .services-nav-arrow {
    transform: rotate(-135deg);
    margin-top: 2px;
}

.mobile-services-links.is-open {
    display: block;
}

.mobile-nav.is-open {
    display: block;
}

.mobile-contact {
    margin: 6px 4% 0;
    width: calc(100% - 8%);
}

main.container {
    padding: 30px 0;
    min-height: 65vh;
}

.footer {
    border-top: 1px solid #e6eaf0;
    background: var(--white);
    padding: 16px 0;
}

/* Deep Dive (About page) - screenshot matched card grid */
.deep-dive-section {
    background: transparent;
    padding: 78px 0 64px;
}

.deep-dive-container {
    max-width: 1160px;
    margin: 0 auto;
}

.deep-dive-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
    align-items: start;
}

.deep-dive-text {
    padding-right: 12px;
}

.deep-dive-kicker {
    margin: 0 0 10px;
    color: #88cb4e;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.deep-dive-title {
    margin: 0 0 16px;
    color: #0f172a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.6rem, 3.8vw, 2.5rem);
    font-style: italic;
    line-height: 1.15;
}

.deep-dive-desc {
    margin: 0;
    color: #5b6778;
    line-height: 1.75;
    font-size: 1.02rem;
}

.deep-dive-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 1fr 1fr;
    gap: 0;
    height: 520px;
    justify-self: start;
    margin-right: 0;
}

/* Tiles for the mosaic card layout (3 columns x 2 rows) */
.deep-dive-tile {
    overflow: hidden;
    background: transparent;
    min-height: 0;
}

.deep-dive-image-tile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deep-dive-text-tile {
    background: rgba(217, 238, 205, 0.96);
    padding: 26px 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
}

.deep-dive-text-tile h4 {
    margin: 0 0 14px;
    color: #0b1a12;
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.25;
}

.deep-dive-text-tile p {
    margin: 0;
    color: rgba(10, 22, 16, 0.78);
    line-height: 1.65;
    font-weight: 600;
    font-size: 0.96rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    overflow: hidden;
}

@media (max-width: 992px) {
    .deep-dive-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .deep-dive-cards {
        grid-template-columns: 1fr;
        height: auto;
        grid-template-rows: auto;
        margin-right: 0;
    }

    .deep-dive-text {
        padding-right: 0;
    }

    .deep-dive-text-tile {
        text-align: left;
    }
}

/* Testimonials Section (About Page) - screenshot matched */
.about-testimonials-section {
    background: linear-gradient(180deg, #043428 0%, #052e27 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.about-testimonials-section::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(900px 420px at 20% 30%, rgba(136, 203, 78, 0.18), rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
}

.about-testimonials-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 46px;
    align-items: start;
}

.about-testimonials-right {
    justify-self: start;
}

.about-testimonials-left {
    padding-top: 10px;
}

.about-testimonials-kicker {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 12px;
}

.about-testimonials-title {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.about-testimonials-title::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 3px;
    width: 80px;
    background: #88cb4e;
    border-radius: 999px;
}

.about-testimonials-stars {
    color: #f59e0b;
    margin: 22px 0 18px;
    font-size: 1.05rem;
    display: flex;
    gap: 4px;
}

.about-testimonials-carousel {
    position: relative;
    min-height: 260px;
}

.about-testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 420ms ease, transform 420ms ease;
    pointer-events: none;
    text-align: center;
}

.about-testimonial-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.about-testimonials-text {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.75;
    margin: 0;
    max-width: 560px;
    font-weight: 600;
    font-size: 0.98rem;
}

.about-testimonials-avatar {
    width: 72px;
    height: 72px;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    background: rgba(255, 255, 255, 0.12);
}

.about-testimonials-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-testimonials-author {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    font-style: italic;
    display: block;
    width: 100%;
    clear: both;
}

.about-testimonials-image-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
    background: #fff;
    padding: 0;
    aspect-ratio: 634 / 557;
}

.about-testimonials-image-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .about-testimonials-wrap {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .about-testimonials-carousel {
        min-height: 300px;
    }

    .about-testimonials-image-card img {
        object-fit: cover;
    }
}

/* Text Scrolling Section (About page) */
.scrolling-text-section {
    padding: 20px 0 36px;
    background: transparent;
    overflow: hidden;
}

.scrolling-text {
    background: #0a3b31;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(10, 20, 16, 0.12);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.scroll-container {
    display: flex;
    align-items: center;
    gap: 72px;
    width: max-content;
    padding: 42px 34px;
    animation: aboutTextScroll 24s linear infinite;
}

.scroll-content {
    display: inline-flex;
    align-items: center;
    gap: 44px;
    white-space: nowrap;
}

.scroll-content span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.scroll-content span.highlight {
    color: #b5ea86;
}

.star {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-left: 16px;
    border-radius: 50%;
    background: #88cb4e;
    vertical-align: middle;
}

@keyframes aboutTextScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

@media (max-width: 768px) {
    .scroll-container {
        gap: 28px;
        padding: 16px 16px;
        animation-duration: 18s;
    }

    .scroll-content {
        gap: 20px;
    }

    .scroll-content span {
        font-size: 1rem;
    }
}

.site-footer {
    background: #121a25;
    color: rgba(255, 255, 255, 0.75);
    padding: 72px 0 28px;
}

.site-footer .container {
    width: min(1320px, calc(100% - 24px));
    max-width: 1320px;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) repeat(4, minmax(0, 1fr));
    gap: 34px;
    margin-bottom: 40px;
    align-items: start;
}

.site-footer-intro {
    text-align: left;
    justify-self: start;
}

.site-footer-brand {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.site-footer-logo {
    display: inline-flex;
    justify-content: flex-start;
    margin-bottom: 5px;
}

.site-footer-logo img {
    display: block;
    height: 132px;
    width: 300px;

    object-fit: contain;
    margin-top: 5px;
}

.site-footer-copy {
    margin: 0;
    line-height: 1.75;
    font-size: 0.92rem;
    max-width: 280px;
}

.site-footer-heading {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1rem;
}

.site-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer-list li {
    margin-bottom: 10px;
    font-size: 0.92rem;
}

.site-footer-list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-list a:hover {
    color: #88cb4e;
}

.site-footer-list-muted li {
    color: rgba(255, 255, 255, 0.75);
}

.site-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.55;
}

.site-footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.site-footer-contact a:hover {
    color: #88cb4e;
}

.site-footer-icon {
    width: 18px;
    flex: 0 0 18px;
    opacity: 0.9;
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-footer-bottom p {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.site-footer-designed {
    display: inline-block;
    margin-left: 10px;
    color: #88cb4e;
    font-weight: 600;
}

.site-footer-social-top {
    margin-top: 16px;
}

.site-footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    text-decoration: none;
    display: grid;
    place-items: center;
    overflow: hidden;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.site-footer-social a:hover {
    background: #88cb4e;
    color: #fff;
    transform: translateY(-2px) scale(1.06);
}

.site-footer-social a img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.section-padding {
    padding: 86px 0;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-color: #06121b;
}

/* About page: shorter hero height */
.about-page .hero {
    min-height: 62vh;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    filter: brightness(1.07) saturate(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.58) 0%,
        rgba(0, 0, 0, 0.48) 30%,
        rgba(136, 203, 78, 0.40) 100%
    );
}

.hero-shape {
    display: none;
}

.hero-shape-left {
    width: 290px;
    height: 290px;
    top: 20%;
    left: 3%;
    animation: floatLeft 8s ease-in-out infinite;
}

.hero-shape-right {
    width: 380px;
    height: 380px;
    right: 2%;
    bottom: 16%;
    animation: floatRight 10s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding-top: 180px;
    padding-bottom: 36px;
}

.hero-content h1 {
    font-size: clamp(1.5rem, 4vw, 3.2rem);
    line-height: 1.22;
    margin: 0 0 20px;
    font-style: italic;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
}

.hero-content h1 span {
    color: #88cb4e;
}

.hero-content p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    max-width: 740px;
    margin: 0 auto 30px;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);
}

.hero-row {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.patients {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(126, 177, 58, 0.88);
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.patients-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.patients-text strong {
    font-size: 1.2rem;
}

.patients-text span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.hero-cta {
    display: inline-block;
    background: #88cb4e;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(136, 203, 78, 0.38);
}

.stats-wrap {
    position: relative;
    z-index: 2;
    padding-bottom: 22px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(20, 27, 35, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    color: #fff;
}

.stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(136, 203, 78, 0.2);
}

.stat-label {
    margin: 0;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
}

.stat-value {
    margin: 4px 0 0;
    font-size: 1rem;
    font-weight: 700;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .top-info-wrap {
        min-height: 30px;
    }

    .top-info-left {
        gap: 10px;
    }

    .hide-sm {
        display: none;
    }

    .site-navbar {
        top: 0;
    }

    .nav-wrap {
        min-height: 66px;
    }

    .brand {
        min-width: 150px;
    }

    .brand img {
        height: 72px;
        width: 150px;
    }

    .desktop-links,
    .desktop-only {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding-top: 150px;
    }

    .hero-row {
        gap: 14px;
    }

    .hero-cta {
        padding: 11px 18px;
    }
}

@media (max-width: 900px) {
    .desktop-links,
    .desktop-only {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .services-dropdown {
        display: none !important;
    }

    .hide-md {
        display: none;
    }
}

@media (max-width: 1200px) {
    .services-dropdown-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.service-detail-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.service-detail-main .container {
    width: min(1320px, calc(100% - 26px));
    max-width: 1320px;
}

.service-detail-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 14, 23, 0.52) 0%, rgba(8, 14, 23, 0.52) 100%);
}

.service-detail-hero--medal:hover .service-detail-hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(8, 14, 23, 0.52) 0%,
        rgba(8, 14, 23, 0.50) 30%,
        rgba(244, 196, 43, 0.40) 100%
    );
}

.service-detail-hero--medal {
    min-height: 540px;
}

.service-detail-hero--medal:hover img {
    transform: scale(1.05);
}

.service-detail-hero--medal:hover .service-hero-highlight {
    color: #f4c430;
}

.service-detail-hero--medal:hover .service-detail-hero-content h1 {
    color: #f4c430;
    text-shadow: 0 12px 30px rgba(244, 196, 48, 0.22);
}

.service-detail-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 0 34px;
}

.service-detail-hero-content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    font-style: italic;
    max-width: 780px;
}

.service-detail-hero-content h1 .service-hero-highlight {
    color: #88cb4e;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.service-detail-layout--single {
    grid-template-columns: minmax(0, 1fr);
}

.service-side-menu {
    background: #0f3c2f;
    border-radius: 10px;
    border: 1px solid #1c5f4b;
    padding: 18px 16px;
    position: sticky;
    top: 108px;
}

.service-side-menu h2 {
    margin: 0;
    font-size: 1.6rem;
    color: #0af460;
    font-weight: 800;
}

.service-side-menu h2::after {
    content: "";
    display: block;
    width: 92px;
    height: 2px;
    border-radius: 999px;
    background: #7edaa9;
    margin-top: 8px;
}

.service-side-menu ul {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 11px;
}

.service-side-menu a {
    color: #9be9be;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    line-height: 1.45;
}

.service-side-menu a::before {
    content: "▸";
    color: #9be9be;
    font-size: 0.8rem;
}

.service-side-menu a.active {
    color: #9be9be;
    font-weight: 800;
}

.service-article {
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 14px 30px rgba(12, 18, 28, 0.07);
    border-radius: 12px;
    padding: 24px 26px;
}

.service-kicker {
    margin: 0 0 10px;
    color: #131a2a;
    font-size: clamp(1.1rem, 2vw, 1.9rem);
    font-style: italic;
    font-weight: 700;
}

.service-article h2 {
    margin: 0 0 16px;
    color: #2f6f2a;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    line-height: 1.25;
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
}

.service-article h2.service-heading-green {
    color: #88cb4e;
}

.service-article h1 {
    margin: 4px 0 14px;
    color: #88cb4e;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    line-height: 1.25;
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
}

.service-article h3 {
    margin: 24px 0 10px;
    color: #2f6f2a;
    font-size: clamp(1.2rem, 2.1vw, 1.75rem);
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
}

.service-article h4 {
    margin: 18px 0 8px;
    color: #3b7f37;
    font-size: 1.02rem;
    font-weight: 800;
}

.service-article p {
    margin: 0 0 15px;
    color: #3d495c;
    line-height: 1.8;
    text-align: justify;
}

.service-article p:last-child {
    margin-bottom: 0;
}

/* Joint replacement: keep two hero images side-by-side */
.service-joint-images {
    display: flex;
    gap: 14px;
    align-items: stretch;
}

.service-joint-image {
    flex: 1 1 0;
    min-width: 0;
}

.service-joint-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Madel page: image cards inside the content */
.madel-image-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 16px;
}

.madel-image-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(17, 26, 46, 0.08);
    box-shadow: 0 12px 26px rgba(17, 26, 46, 0.06);
}

.madel-image-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .madel-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .madel-image-card img {
        height: 320px;
    }
}

@media (max-width: 680px) {
    .madel-image-grid {
        grid-template-columns: 1fr;
    }

    .madel-image-card img {
        height: 320px;
    }
}

.service-article ul {
    margin: 0 0 16px;
    padding-left: 22px;
    color: #3d495c;
    line-height: 1.8;
}

.service-table-wrap {
    overflow-x: auto;
    margin: 8px 0 16px;
}

.service-info-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e6eaf1;
}

.service-info-table th,
.service-info-table td {
    border: 1px solid #e6eaf1;
    text-align: left;
    vertical-align: top;
    padding: 12px;
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.6;
}

.service-info-table th {
    background: #ecf7e9;
    color: #245d21;
    font-weight: 800;
}

.service-faq {
    margin-top: 16px;
}

.service-faq-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
    margin-bottom: 8px;
}

.service-faq-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 12px 26px rgba(17, 26, 46, 0.08);
    background: #fff;
}

.service-faq-image img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

@media (max-width: 680px) {
    .service-faq-images {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-faq-image img {
        height: 200px;
    }
}

.service-faq details {
    border: 1px solid #d8ebd3;
    border-radius: 10px;
    background: #f6fbf4;
    padding: 12px 14px;
    margin-bottom: 10px;
}

.service-faq summary {
    cursor: pointer;
    color: #1e293b;
    font-weight: 700;
}

.service-faq details p {
    margin-top: 10px;
}

.service-detail-page .service-info-table th {
    background: #ecf8e0;
    color: #2f5d1e;
}

.service-detail-page .service-faq details {
    border-color: #d7ebc8;
    background: #f7fdf2;
}

.service-detail-page .service-faq summary {
    color: #2f5d1e;
}

@media (max-width: 1024px) {
    .service-route-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-side-menu {
        position: static;
    }
}

@media (max-width: 680px) {
    .service-route-list {
        padding-top: 130px;
    }

    .service-route-grid {
        grid-template-columns: 1fr;
    }
}

.about-section {
    background: #f7f9fc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-image-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(17, 26, 46, 0.2);
}

.about-image-wrap img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    right: -14px;
    bottom: -14px;
    background: #88cb4e;
    color: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 10px 28px rgba(136, 203, 78, 0.38);
}

.about-badge p {
    margin: 0 0 2px;
    font-weight: 800;
    font-size: 1.5rem;
}

.about-badge span {
    font-size: 0.9rem;
    opacity: 0.92;
}

.about-kicker {
    color: #88cb4e;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.about-content h2 {
    margin: 0 0 16px;
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    line-height: 1.15;
    font-style: italic;
    color: #1b2433;
}

.about-content h2 span {
    color: #88cb4e;
}

.about-content p {
    color: #5b6778;
    line-height: 1.75;
    margin: 0 0 14px;
    text-align: justify;
}

.about-awards-wrap {
    margin-top: 22px;
    width: 100%;
    max-width: 100%;
}

.awards-shell {
    background: white;
    border: 2px solid #c8dde8;
    border-radius: 12px;
    padding: 16px 16px 14px;
    box-sizing: border-box;
    width: 100%;
}

.awards-title {
    margin: 0 0 14px;
    text-align: center;
    color: #111827;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.2;
}

.awards-carousel {
    width: 100%;
    overflow: hidden;
    min-height: 132px;
}

.awards-track {
    display: flex;
    align-items: center;
    gap: 36px;
    transition: transform 600ms ease;
    will-change: transform;
}

.awards-slide {
    flex: 0 0 calc((100% - 72px) / 3);
    max-width: calc((100% - 72px) / 3);
    height: 108px;
    padding: 12px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.awards-slide img {
    width: 100%;
    height: 86px;
    max-width: 100%;
    max-height: 86px;
    object-fit: contain;
    object-position: center;
    display: block;
}

@media (max-width: 900px) {
    .about-awards-wrap {
        width: 100%;
    }

    .awards-title {
        font-size: 1.5rem;
    }

    .awards-track {
        gap: 24px;
    }

    .awards-slide {
        flex: 0 0 calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
        height: 98px;
        padding: 10px;
    }
}

@media (max-width: 560px) {
    .awards-shell {
        padding: 14px 12px 12px;
    }

    .awards-title {
        font-size: 1.18rem;
        margin-bottom: 10px;
    }

    .awards-slide {
        flex: 0 0 100%;
        max-width: 100%;
        height: 88px;
        padding: 8px;
    }
}

.about-stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    margin-top: 10px;
}

.about-points {
    display: grid;
    gap: 12px;
    margin: 18px 0 18px;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-point-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: rgba(136, 203, 78, 0.14);
    color: #88cb4e;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1.1rem;
    flex: 0 0 28px;
    margin-top: 2px;
}

.about-point-text {
    margin: 0;
    color: #5b6778;
    line-height: 1.7;
    font-size: 1.02rem;
    font-weight: 600;
}

.about-consult-cta {
    margin-top: 8px;
}

.about-stat {
    position: relative;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(136, 203, 78, 0.65);
    box-shadow:
        0 10px 28px rgba(136, 203, 78, 0.34),
        inset 0 0 0 8px rgba(136, 203, 78, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    overflow: hidden;
}

.about-stat::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 2px solid rgba(136, 203, 78, 0.35);
    animation: aboutCirclePulse 2.8s ease-in-out infinite;
    pointer-events: none;
}

.about-stat-num {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1d2d43;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.about-stat-label {
    color: #667487;
    font-size: 0.72rem;
    margin-top: 6px;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

@keyframes aboutCirclePulse {
    0% {
        transform: scale(0.96);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.55;
    }
    100% {
        transform: scale(0.96);
        opacity: 0.9;
    }
}

.reveal-left,
.reveal-right,
.reveal-up,
.reveal-pop {
    opacity: 0;
}

.reveal-left {
    transform: translateX(-36px);
}

.reveal-right {
    transform: translateX(36px);
}

.reveal-up {
    transform: translateY(24px);
}

.reveal-pop {
    transform: scale(0.86);
}

.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-badge {
        right: 10px;
        bottom: 10px;
    }
}

/* Services Section - Auto-scrolling carousel */
.services-section {
    background: #f0f2f5;
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-kicker {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a962;
    margin-bottom: 8px;
}

.services-title {
    margin: 0 0 14px;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a2332;
    font-style: italic;
}

.services-divider {
    width: 60px;
    height: 2px;
    background: #1a2332;
    margin: 0 auto;
}

.services-carousel-wrap {
    overflow: hidden;
    margin: 0 -16px;
}

.services-track {
    display: flex;
    gap: 20px;
    animation: servicesScroll 30s linear infinite;
    width: max-content;
}

.services-track:hover {
    animation-play-state: paused;
}

.services-card {
    flex-shrink: 0;
    width: 280px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.services-card-img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.services-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-card-label {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #1a2332;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
}

.services-card {
    position: relative;
}

@keyframes servicesScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Services Offering Grid (screenshot-matched) */
.services-section.section-padding {
    padding: 70px 0 60px;
    overflow: visible;
}

.services-offering-header {
    text-align: center;
    width: 100%;
    margin: 0 auto 34px;
}

.services-offering-header {
    max-width: 1100px;
}

.services-offering-title {
    margin: 0;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-family: Georgia, "Times New Roman", serif;
    font-style: normal;
    color: #111827;
}

.services-offering-underline {
    width: 86px;
    height: 4px;
    background: #111827;
    border-radius: 999px;
    margin: 10px auto 0;
}

.services-offering-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px 24px;
    align-items: start;
    padding: 0 8px;
    max-width: 1180px;
    margin: 0 auto;
}

.services-offering-carousel {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    padding: 0;
}

.services-offering-track {
    display: flex;
    width: 100%;
    align-items: flex-start;
    column-gap: 24px;
    row-gap: 0;
    transition: transform 650ms ease;
    will-change: transform;
}

.services-offering-slide {
    flex: 0 0 210px;
    max-width: 210px;
    position: relative;
    border-radius: 2px;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.services-offering-grid-layout {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px 18px;
    align-items: start;
}

/* In grid layout, cards should fill their column */
.services-offering-grid-layout .services-offering-slide {
    flex: initial;
    max-width: none;
    width: 100%;
}

.services-offering-tile {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 3 / 4;
}

.services-offering-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-card-media {
    border: 8px solid #88cb4e;
    border-radius: 2px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 24px rgba(17, 26, 46, 0.12);
    width: 100%;
    aspect-ratio: 3 / 4;
}

.services-offering-label {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #88cb4e;
    text-align: center;
    margin-top: 14px;
    padding: 0 10px;
    line-height: 1.3;
}

/* Up/down alignment like screenshot: odd cards higher, even cards lower */
.services-offering-slide:nth-child(odd) {
    margin-top: 0;
}

.services-offering-slide:nth-child(even) {
    margin-top: 56px;
}

@media (max-width: 1100px) {
    .services-offering-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 26px 26px;
        max-width: 900px;
    }

    .services-offering-grid-layout {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px 14px;
    }
}

@media (max-width: 900px) {
    .services-offering-track {
        column-gap: 16px;
    }

    .services-offering-slide {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .services-offering-slide:nth-child(even),
    .services-offering-slide:nth-child(odd) {
        margin-top: 0;
    }

    .services-offering-grid-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
    }
}

@media (max-width: 520px) {
    .services-offering-track {
        column-gap: 12px;
    }

    .services-offering-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .services-offering-slide:nth-child(even),
    .services-offering-slide:nth-child(odd) {
        margin-top: 0;
    }

    .services-offering-grid-layout {
        grid-template-columns: 1fr;
        gap: 14px 0;
    }
}

@media (max-width: 768px) {
    .services-offering-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 18px;
    }

    .services-offering-label {
        font-size: 1.05rem;
        bottom: 12px;
    }
}

@media (max-width: 440px) {
    .services-offering-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
}

/* Services carousel - below About */
.services-section {
    background: #f0f2f5;
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-kicker {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #88cb4e;
    margin-bottom: 8px;
}

.services-title {
    margin: 0 0 12px;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #1b2433;
}

.services-divider {
    width: 60px;
    height: 3px;
    background: #1b2433;
    margin: 0 auto;
}

.services-carousel-wrap {
    overflow: hidden;
    width: 100%;
}

.services-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: servicesScroll 30s linear infinite;
}

.services-track:hover {
    animation-play-state: paused;
}

.services-card {
    flex: 0 0 280px;
    width: 280px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.services-card-img {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.services-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 14px 16px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #1b2433;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

@keyframes servicesScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Expertise Section - Numbers That Speak */
.expertise-section {
    background: #fff;
    padding: 72px 0 80px;
}

.expertise-header {
    text-align: center;
    margin-bottom: 48px;
}

.expertise-kicker {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #88cb4e;
    margin-bottom: 10px;
}

.expertise-title {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #1b2433;
    font-style: italic;
}

.expertise-title span {
    color: #88cb4e;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.expertise-stat {
    text-align: center;
}

.expertise-counter {
    display: block;
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 800;
    font-style: italic;
    color: #1b2433;
}

.expertise-label {
    margin: 10px 0 0;
    font-size: 1rem;
    font-weight: 500;
    color: #667487;
}

/* Services section - auto-scroll carousel */
.services-section {
    background: #eef1f6;
    padding: 72px 0 80px;
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 44px;
}

.services-kicker {
    display: block;
    color: #c17d4a;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.services-title {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #1b2433;
    font-family: Georgia, "Times New Roman", serif;
}

.services-title span {
    color: #88cb4e;
}

.services-subtitle {
    margin: 0 auto 16px;
    max-width: 860px;
    color: #5f6c7f;
    font-size: 1rem;
    line-height: 1.7;
}

.services-divider {
    width: 56px;
    height: 2px;
    background: #1b2433;
    margin: 0 auto;
}

.services-carousel-wrap {
    overflow: hidden;
    width: 100%;
    margin: 0 -10px;
}

.services-track {
    display: flex;
    gap: 20px;
    align-items: center;
    width: max-content;
    animation: servicesScroll 35s linear infinite;
    will-change: transform;
}

.services-card {
    flex: 0 0 210px;
    width: 210px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    position: relative;
}

.services-card-img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 10px 24px rgba(17, 26, 46, 0.2);
}

.services-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-card::before,
.services-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid rgba(136, 203, 78, 0.7);
    pointer-events: none;
}

.services-card::before {
    animation: serviceWave 2.8s ease-out infinite;
}

.services-card::after {
    border-color: rgba(27, 36, 51, 0.32);
    animation: serviceWave 2.8s ease-out 1.4s infinite;
}

@keyframes serviceWave {
    0% {
        transform: scale(0.94);
        opacity: 0.9;
    }
    70% {
        transform: scale(1.08);
        opacity: 0.25;
    }
    100% {
        transform: scale(1.14);
        opacity: 0;
    }
}

@keyframes servicesScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Expertise Section */
.expertise-section {
    background: #fff;
    padding: 72px 0 80px;
}

.expertise-header {
    text-align: center;
    margin-bottom: 48px;
}

.expertise-kicker {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #88cb4e;
    margin-bottom: 10px;
}

.expertise-title {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #1b2433;
    font-style: italic;
}

.expertise-title span {
    color: #88cb4e;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.expertise-stat {
    text-align: center;
}

.expertise-counter {
    display: block;
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    font-style: italic;
    color: #1b2433;
    margin-bottom: 8px;
}

.expertise-label {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #5b6778;
}

@media (min-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

/* Expertise Section - Numbers That Speak */
.expertise-section {
    background: #fff;
    padding: 80px 0;
}

.expertise-header {
    text-align: center;
    margin-bottom: 48px;
}

.expertise-kicker {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #88cb4e;
    margin-bottom: 10px;
}

.expertise-title {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    font-style: italic;
    color: #1b2433;
}

.expertise-title span {
    color: #88cb4e;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.expertise-stat {
    text-align: center;
}

.expertise-counter {
    display: block;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    font-style: italic;
    color: #1b2433;
    margin-bottom: 8px;
}

.expertise-label {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #5b6778;
}

/* Expertise Section */
.expertise-section {
    background: #fff;
    padding: 72px 0 80px;
}

.expertise-header {
    text-align: center;
    margin-bottom: 48px;
}

.expertise-kicker {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #88cb4e;
    margin-bottom: 10px;
}

.expertise-title {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #1b2433;
    font-style: italic;
}

.expertise-title span {
    color: #88cb4e;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.expertise-stat {
    text-align: center;
}

.expertise-counter {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    font-style: italic;
    color: #1b2433;
    font-family: Georgia, "Times New Roman", serif;
    margin-bottom: 8px;
}

.expertise-label {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #5b6778;
}

/* Expertise Section - Numbers That Speak */
.expertise-section {
    background: #fff;
    padding: 80px 0;
}

.expertise-header {
    text-align: center;
    margin-bottom: 48px;
}

.expertise-kicker {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #88cb4e;
    margin-bottom: 10px;
}

.expertise-title {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #1b2433;
    font-style: italic;
}

.expertise-title span {
    color: #88cb4e;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.expertise-stat {
    text-align: center;
}

.expertise-counter {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1b2433;
    font-style: italic;
    margin-bottom: 8px;
}

.expertise-label {
    margin: 0;
    font-size: 0.95rem;
    color: #5b6778;
    font-weight: 500;
}

/* Expertise Section - Numbers That Speak */
.expertise-section {
    background: #fff;
    padding: 80px 0;
}

.expertise-header {
    text-align: center;
    margin-bottom: 56px;
}

.expertise-kicker {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #88cb4e;
    margin-bottom: 10px;
}

.expertise-title {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    font-style: italic;
    color: #1b2433;
}

.expertise-title span {
    color: #88cb4e;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.expertise-stat {
    text-align: center;
}

.expertise-counter {
    display: block;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    font-style: italic;
    color: #1b2433;
    line-height: 1.2;
}

.expertise-label {
    margin: 10px 0 0;
    font-size: 1rem;
    font-weight: 500;
    color: #5b6778;
}

@media (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 600px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Chennai Ortho */
.why-choose-section {
    background: #f6f6f6;
}

.why-choose-header {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.why-choose-title {
    margin: 0;
    color: #111827;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.why-choose-title span {
    color: #88cb4e;
    font-style: italic;
}

.why-choose-subtitle {
    margin: 16px auto 0;
    max-width: 700px;
    color: #5f6b7d;
    line-height: 1.6;
    font-size: 1.03rem;
}

.why-choose-read-more {
    color: #7cb448;
    display: inline-flex;
    margin-top: 8px;
    background: none;
    border: none;
    padding: 0;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.why-choose-more-content {
    margin-top: 14px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
}

.why-choose-card {
    background: linear-gradient(180deg, #9fcb47 0%, #7fae2e 100%);
    border-radius: 8px;
    min-height: 220px;
    padding: 24px 18px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 8px 22px rgba(112, 152, 34, 0.25);
}

.why-choose-icon {
    margin-bottom: 18px;
    width: 68px;
    height: 68px;
}

.why-choose-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-choose-card h3 {
    margin: 0;
    color: #fff;
    font-size: 1.16rem;
    font-weight: 500;
    line-height: 1.32;
}

@media (max-width: 900px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-card {
        min-height: 168px;
    }
}

/* Achievements section */
.achievements-section {
    background: #edf3f1;
}

.achievements-header {
    text-align: center;
    max-width: 1240px;
    margin: 0 auto 30px;
}

.achievements-header h2 {
    margin: 0;
    color: #2f6e1f;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 600;
    font-family: Georgia, "Times New Roman", serif;
}

.achievements-header p {
    margin: 14px auto 0;
    max-width: 100%;
    color: #3d4d34;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
    background: #f5faee;
    border-left: 4px solid #88cb4e;
    border-radius: 10px;
    padding: 16px 18px;
}

.achievements-carousel {
    overflow: hidden;
    width: 100%;
    padding: 4px 0;
}

.achievements-track {
    display: flex;
    gap: 22px;
    align-items: stretch;
    transition: transform 650ms ease;
    will-change: transform;
}

.achievement-card {
    flex: 0 0 206px;
    max-width: 206px;
    min-height: 252px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(17, 24, 38, 0.08);
    box-shadow: 0 6px 16px rgba(17, 24, 38, 0.08);
    padding: 14px 12px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.achievement-logo-wrap {
    width: 100%;
    height: 132px;
    display: grid;
    place-items: center;
    margin-bottom: 8px;
}

.achievement-logo-wrap img {
    max-width: 78%;
    max-height: 78%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.achievement-logo-wrap img.achievement-logo-compact {
    max-width: 58%;
    max-height: 58%;
}

.about-section>.container,
.why-choose-section>.container,
.achievements-section>.container {
    width: min(1240px, 94%);
}

.achievement-card p {
    margin: 0;
    min-height: 56px;
    width: 100%;
    text-align: center;
    color: #2f3b4f;
    line-height: 1.28;
    font-size: 0.97rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2px 4px 0;
}

.achievements-dots {
    margin: 14px 0 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.achievements-dots span {
    width: 18px;
    height: 6px;
    border-radius: 999px;
    background: #c8cfd8;
    display: inline-block;
}

.achievements-dots span.is-active {
    background: #88cb4e;
}

.achievements-cta-wrap {
    margin-top: 18px;
    text-align: center;
}

.achievements-cta {
    display: inline-block;
    background: #88cb4e;
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
}

/* Patient video stories section */
.video-stories-section {
    background: linear-gradient(180deg, #4f850f 0%, #8fc63f 100%);
    color: #fff;
}

.video-stories-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.video-stories-content {
    max-width: 620px;
}

.video-stories-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
}

.video-stories-title span {
    display: inline-block;
    color: #d5efaa;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
}

.video-stories-text {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    max-width: 600px;
}

.video-stories-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    background: #fff;
    color: #243525;
    font-weight: 700;
}

.video-stories-media {
    position: relative;
    min-height: 420px;
}

.video-stories-carousel {
    position: relative;
    max-width: 560px;
    margin-left: auto;
    margin-right: 0;
    filter: drop-shadow(0 22px 40px rgba(12, 28, 6, 0.35));
}

.video-stories-stage {
    position: relative;
    height: min(420px, 72vw);
    perspective: 1200px;
    perspective-origin: 50% 45%;
    transform-style: preserve-3d;
}

.video-story-card {
    --video-card-w: clamp(200px, 32vw, 280px);
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--video-card-w);
    margin: 0;
    padding: 7px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 36px rgba(22, 44, 4, 0.28);
    transform: translate(-50%, -50%);
    transform-origin: center center;
    transition:
        transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1),
        opacity 0.45s ease,
        filter 0.45s ease,
        box-shadow 0.45s ease;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
}

.video-story-card.is-active {
    z-index: 20;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) translateZ(72px) scale(1) rotateY(0deg);
    box-shadow: 0 28px 50px rgba(12, 28, 6, 0.4);
}

.video-story-card.is-left-1 {
    z-index: 8;
    opacity: 0.95;
    pointer-events: auto;
    cursor: pointer;
    transform: translate(-50%, -50%) translateX(calc(var(--video-card-w) * -0.42))
        translateZ(-28px) scale(0.86) rotateY(32deg);
}

.video-story-card.is-right-1 {
    z-index: 8;
    opacity: 0.95;
    pointer-events: auto;
    cursor: pointer;
    transform: translate(-50%, -50%) translateX(calc(var(--video-card-w) * 0.42))
        translateZ(-28px) scale(0.86) rotateY(-32deg);
}

.video-story-card.is-left-2 {
    z-index: 4;
    opacity: 0.55;
    pointer-events: auto;
    cursor: pointer;
    transform: translate(-50%, -50%) translateX(calc(var(--video-card-w) * -0.78))
        translateZ(-55px) scale(0.72) rotateY(42deg);
    filter: brightness(0.92);
}

.video-story-card.is-right-2 {
    z-index: 4;
    opacity: 0.55;
    pointer-events: auto;
    cursor: pointer;
    transform: translate(-50%, -50%) translateX(calc(var(--video-card-w) * 0.78))
        translateZ(-55px) scale(0.72) rotateY(-42deg);
    filter: brightness(0.92);
}

.video-story-card.is-hidden {
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) translateZ(-120px) scale(0.5);
}

.video-story-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #0a0a0a;
}

.video-story-video {
    width: 100%;
    height: 320px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    background: #111;
}

.video-story-card:not(.is-active) .video-story-video {
    pointer-events: none;
}

.video-story-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 68px;
    height: 68px;
    border: none;
    border-radius: 50%;
    padding: 0;
    background: rgba(220, 38, 38, 0.92);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 2;
}

.video-story-play:hover {
    transform: scale(1.06);
    background: #dc2626;
}

.video-story-card:not(.is-active) .video-story-play {
    transform: scale(0.85);
    opacity: 0.9;
}

.video-story-card.is-playing .video-story-play {
    display: none;
}

.video-story-play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 22px;
    border-color: transparent transparent transparent #fff;
    margin-left: 6px;
}

.video-story-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.96);
    color: #1a1a1a;
    font-size: 0.8125rem;
    line-height: 1.35;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 1;
}

.video-story-caption strong {
    font-weight: 700;
    font-size: 0.9375rem;
}

.video-story-caption span {
    color: #444;
    font-size: 0.8125rem;
}

.video-stories-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    padding: 0 8px;
}

.video-stories-dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: width 0.3s ease, background 0.2s ease;
}

.video-stories-dots button.is-active {
    width: 36px;
    background: #fff;
}

.video-stories-dots button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

@media (max-width: 980px) {
    .video-stories-layout {
        grid-template-columns: 1fr;
        gap: clamp(24px, 5vw, 36px);
        align-items: stretch;
    }

    .video-stories-content {
        max-width: none;
        text-align: center;
    }

    .video-stories-text {
        max-width: 40rem;
        margin-left: auto;
        margin-right: auto;
    }

    .video-stories-carousel {
        max-width: min(560px, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .video-stories-media {
        min-height: 0;
        width: 100%;
        max-width: 100%;
    }

    .video-story-card.is-left-1,
    .video-story-card.is-right-1 {
        transform: translate(-50%, -50%) translateX(calc(var(--video-card-w) * -0.36))
            translateZ(-24px) scale(0.82) rotateY(26deg);
    }

    .video-story-card.is-right-1 {
        transform: translate(-50%, -50%) translateX(calc(var(--video-card-w) * 0.36))
            translateZ(-24px) scale(0.82) rotateY(-26deg);
    }
}

@media (max-width: 640px) {
    .video-stories-section {
        overflow-x: hidden;
    }

    .video-stories-carousel {
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        padding-inline: 0;
    }

    .video-stories-stage {
        /* Explicit height: children are position:absolute so auto height would collapse */
        height: min(400px, 128vw);
        min-height: 280px;
        perspective: 900px;
        margin-inline: auto;
        max-width: 100%;
    }

    .video-story-card {
        --video-card-w: min(300px, calc(100vw - 48px));
    }

    .video-story-card.is-left-1,
    .video-story-card.is-right-1,
    .video-story-card.is-left-2,
    .video-story-card.is-right-2 {
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, -50%) translateZ(-80px) scale(0.4);
    }

    .video-story-card.is-active {
        transform: translate(-50%, -50%) translateZ(0) scale(1) rotateY(0deg);
    }

    .video-story-video {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        max-height: min(280px, 52vw);
        object-fit: cover;
    }

    .video-stories-dots {
        margin-top: 18px;
        flex-wrap: wrap;
        row-gap: 6px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: #f4f5f7;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.testimonials-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #1b2433;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
}

.testimonials-title span {
    color: #88cb4e;
}

.testimonials-subtitle {
    margin: 16px auto 0;
    color: #697487;
    line-height: 1.65;
    max-width: 670px;
    font-size: 1.05rem;
}

.testimonials-divider {
    width: 60px;
    height: 6px;
    border-radius: 999px;
    background: #88cb4e;
    margin: 20px auto 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Testimonials Carousel */
.testimonials-carousel {
    overflow: hidden;
}

.testimonials-carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonials-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 650ms ease;
    will-change: transform;
}

.testimonials-carousel-slide {
    flex: 0 0 420px;
    max-width: 420px;
}

@media (max-width: 992px) {
    .testimonials-carousel-slide {
        flex: 0 0 340px;
        max-width: 340px;
    }
}

@media (max-width: 680px) {
    .testimonials-carousel-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.testimonial-card {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #ebedf1;
    box-shadow: 0 3px 18px rgba(17, 26, 46, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(17, 26, 46, 0.14);
}

.testimonial-quote {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 74px;
    line-height: 1;
    color: #88cb4e;
    opacity: 0.12;
    font-family: Georgia, "Times New Roman", serif;
    pointer-events: none;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.testimonial-star-empty {
    opacity: 0.35;
}

.testimonial-text {
    margin: 0 0 26px;
    color: #4f5969;
    line-height: 1.6;
    font-style: italic;
    font-size: 1.02rem;
    min-height: 102px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f0f2f6;
    color: #8a93a2;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1.1rem;
    transition: background 0.22s ease, color 0.22s ease;
}

.testimonial-card:hover .testimonial-avatar {
    background: #88cb4e;
    color: #fff;
}

.testimonial-author h4 {
    margin: 0;
    color: #1b2433;
    font-size: 1rem;
    font-family: Georgia, "Times New Roman", serif;
}

.testimonial-author p {
    margin: 2px 0 0;
    color: #9ba4b2;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    font-weight: 700;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 24px;
    }
}

/* Visiting Hospitals */
.visiting-hospitals-section {
    background: #fff;
    padding: 72px 0 58px;
}

.visiting-hospitals-header {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 26px;
}

.visiting-hospitals-title {
    margin: 0;
    color: #121826;
    font-size: clamp(2rem, 4.4vw, 3.05rem);
    font-weight: 500;
}

.visiting-hospitals-title span {
    color: #98be48;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
}

.visiting-hospitals-subtitle {
    margin: 12px auto 0;
    max-width: 760px;
    color: #5f6978;
    line-height: 1.7;
    font-size: 1.06rem;
}

.visiting-hospitals-list {
    background: #eceff3;
    border-radius: 16px;
    padding: 24px 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
}

.visiting-hospital-pill {
    min-height: 48px;
    min-width: 250px;
    border-radius: 999px;
    border: 1px solid #b6c47f;
    background: #f9faf7;
    color: #202735;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 16px;
}

.visiting-hospital-pill:hover {
    background: #fff;
    border-color: #88cb4e;
    color: #88cb4e;
}

.reveal-top-jump {
    opacity: 0;
    transform: translateY(-28px) scale(0.98);
}

.reveal-top-jump.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 980px) {
    .visiting-hospitals-list {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .visiting-hospitals-section {
        padding: 56px 0 46px;
    }

    .visiting-hospitals-list {
        justify-content: stretch;
        padding: 16px;
        gap: 10px;
    }

    .visiting-hospital-pill {
        min-height: 44px;
        min-width: 100%;
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding-top: 56px;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 28px;
    }

    .site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .site-footer-social {
        margin-left: 0;
    }
}

/* Specialized Services Section */
.special-services {
    background: #f4f5f7;
}

.special-services .container {
    width: min(1240px, 94%);
}

.special-services-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.special-services-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1b2433;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
}

.special-services-title span {
    color: #88cb4e;
}

.special-services-subtitle {
    margin: 16px auto 0;
    color: #667487;
    font-size: 1.03rem;
    line-height: 1.7;
    max-width: 680px;
}

.special-services-divider {
    width: 58px;
    height: 5px;
    border-radius: 999px;
    background: #88cb4e;
    margin: 20px auto 0;
}

.special-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.special-service-card {
    background-image:
        linear-gradient(165deg, rgba(9, 17, 30, 0.48), rgba(9, 17, 30, 0.78)),
        var(--card-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 34px 28px;
    box-shadow: 0 6px 18px rgba(17, 26, 46, 0.18);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.special-service-content {
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 8px 22px rgba(16, 30, 52, 0.14);
}

.special-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 34px rgba(17, 26, 46, 0.14);
}

.special-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #eef4fb;
    color: #1b2433;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    margin-bottom: 24px;
    box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.8);
    transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.special-service-card:hover .special-service-icon {
    background: #88cb4e;
    color: #fff;
    transform: rotate(6deg) scale(1.06);
}

.special-service-card h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    color: #1b2433;
    font-weight: 800;
}

.special-service-card p {
    margin: 0;
    color: #5b6779;
    line-height: 1.7;
    font-size: 0.97rem;
}

.special-service-footer {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #e7edf5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.special-service-footer span {
    color: #5f6b7d;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
}

.special-service-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #edf3fa;
    display: grid;
    place-items: center;
    color: #1b2433;
    font-size: 1.1rem;
    transition: background 0.22s ease, color 0.22s ease;
}

.special-service-card:hover .special-service-arrow {
    background: #88cb4e;
    color: #fff;
}

.special-service-card.reveal-up {
    transform: translateY(-44px) scale(0.96);
}

.special-service-card.reveal-up.is-visible {
    animation: specialCardDrop 0.78s cubic-bezier(0.2, 0.85, 0.22, 1) both;
}

.special-services-grid .special-service-card:nth-child(2).is-visible {
    animation-delay: 0.08s;
}

.special-services-grid .special-service-card:nth-child(3).is-visible {
    animation-delay: 0.16s;
}

.special-services-grid .special-service-card:nth-child(4).is-visible {
    animation-delay: 0.24s;
}

@keyframes specialCardDrop {
    0% {
        opacity: 0;
        transform: translateY(-52px) scale(0.95);
    }
    65% {
        opacity: 1;
        transform: translateY(10px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1100px) {
    .special-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .special-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Success stories before/after section */
.success-section {
    background: #fff;
    padding-top: 88px;
}

.success-header {
    text-align: center;
    margin-bottom: 34px;
}

.success-title {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #111827;
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
}

.success-title span {
    color: #88cb4e;
}

.success-subtitle {
    margin: 12px auto 14px;
    max-width: 700px;
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
}

.success-divider {
    width: 52px;
    height: 4px;
    border-radius: 999px;
    background: #8ed351;
    margin: 0 auto;
}

.before-after-wrap {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 34px;
}

.before-after-slider {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    border: 8px solid #f3f4f6;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.2);
    aspect-ratio: 16 / 9;
    background: #111827;
}

.ba-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    pointer-events: none;
}

.ba-after {
    position: absolute;
    inset: 0;
}

.ba-before-layer {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    border-right: 2px solid rgba(255, 255, 255, 0.9);
}

.ba-before {
    position: absolute;
    inset: 0;
}

.ba-tag {
    position: absolute;
    top: 10px;
    z-index: 3;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.85);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
}

.ba-tag-left {
    left: 10px;
}

.ba-tag-right {
    right: 10px;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35);
    z-index: 4;
    pointer-events: none;
}

.ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    appearance: none;
    background: transparent;
    z-index: 5;
    cursor: ew-resize;
}

.ba-range::-webkit-slider-thumb {
    appearance: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: none;
}

.ba-range::-moz-range-thumb {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: none;
}

.ba-cta-pill {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    background: #111827;
    color: #fff;
    border-radius: 999px;
    padding: 11px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.28);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .before-after-slider {
        border-radius: 1.2rem;
        border-width: 5px;
    }

    .ba-cta-pill {
        font-size: 0.75rem;
        padding: 9px 14px;
    }
}

/* Appointment section */
.appointment-section {
    background: #fff;
}

.appointment-shell {
    position: relative;
    overflow: hidden;
    border-radius: 2.1rem;
    background: #111827;
    box-shadow: 0 26px 54px rgba(17, 24, 39, 0.24);
    display: grid;
    grid-template-columns: 2fr 3fr;
}

.appointment-glow {
    position: absolute;
    right: -60px;
    top: -40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(141, 198, 63, 0.45);
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
}

.appointment-left,
.appointment-right {
    position: relative;
    z-index: 2;
    padding: 42px;
}

.appointment-left {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.appointment-chip {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #8dc63f;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.appointment-left h3 {
    margin: 0 0 16px;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.appointment-left h3 span {
    color: #8dc63f;
}

.appointment-left p {
    margin: 0 0 28px;
    color: #9ca3af;
    line-height: 1.75;
    font-size: 1.02rem;
}

.appointment-contact-list {
    display: grid;
    gap: 20px;
}

.appointment-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.appointment-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: #8dc63f;
    font-size: 1.2rem;
}

.appointment-contact-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6b7280;
    font-weight: 700;
    margin-bottom: 3px;
}

.appointment-contact-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
}

.appointment-socials {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.appointment-socials a {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.06);
}

.appointment-socials a:hover {
    background: #8dc63f;
    border-color: #8dc63f;
}

.appointment-right {
    background: #fff;
}

.appointment-form {
    display: grid;
    gap: 20px;
}

.appointment-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #9ca3af;
}

.field input,
.field textarea {
    width: 100%;
    border: none;
    background: #f3f4f6;
    border-radius: 18px;
    padding: 16px 18px;
    font: inherit;
    color: #111827;
    outline: 2px solid transparent;
}

.field input:focus,
.field textarea:focus {
    outline-color: #8dc63f;
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.appointment-submit {
    border: none;
    border-radius: 20px;
    padding: 18px;
    background: #8dc63f;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(141, 198, 63, 0.32);
}

.appointment-submit:hover {
    filter: brightness(1.06);
}

/* FAQ section */
.faq-section {
    background: #f7f9fc;
}

.faq-header {
    text-align: center;
    margin-bottom: 28px;
}

.faq-kicker {
    display: inline-block;
    color: #88cb4e;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.faq-title {
    margin: 0;
    color: #1b2433;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
}

.faq-title span {
    color: #88cb4e;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5ebf2;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 8px 20px rgba(17, 26, 46, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(17, 26, 46, 0.1);
}

.faq-item h3 {
    margin: 0;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-question:focus-visible {
    outline: 2px solid #88cb4e;
    outline-offset: 4px;
    border-radius: 10px;
}

.faq-question-text {
    color: #88cb4e;
    font-size: 1.04rem;
    line-height: 1.5;
    font-weight: 700;
}

.faq-toggle-icon {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(136, 203, 78, 0.12);
    color: #88cb4e;
    font-weight: 900;
    transition: transform 0.22s ease;
    transform-origin: 50% 50%;
}

.faq-item.is-open .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-item p {
    margin: 0;
    color: #5b6778;
    line-height: 1.7;
    font-size: 0.95rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.35s ease, opacity 0.22s ease, margin-top 0.22s ease;
}

.faq-item.is-open p {
    max-height: 360px;
    opacity: 1;
    margin-top: 12px;
}

@media (prefers-reduced-motion: reduce) {
    .faq-item p,
    .faq-toggle-icon {
        transition: none;
    }
}

/* Blog section */
.blog-section {
    background: #fff;
}

.blog-section .container {
    width: min(1240px, 94%);
}

.blog-header {
    text-align: center;
    margin-bottom: 30px;
}

.blog-kicker {
    display: inline-block;
    color: #88cb4e;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-title {
    margin: 0;
    color: #1b2433;
    font-size: clamp(1.8rem, 4vw, 2.9rem);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
}

.blog-title span {
    color: #88cb4e;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.blog-card {
    background: transparent;
    border-radius: 14px;
    overflow: hidden;
}

.blog-card-content {
    background: transparent;
    color: #1b2433;
    padding: 14px 2px 0;
}

.blog-card-content h3 {
    margin: 0 0 14px;
    font-size: clamp(1.05rem, 2vw, 1.65rem);
    line-height: 1.5;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    color: #88cb4e;
}

.blog-card-content p {
    margin: 0 0 16px;
    color: #2e3541;
    line-height: 1.85;
    font-size: 0.96rem;
    text-align: justify;
}

.blog-read-more {
    align-self: flex-start;
    color: #1b2433;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.blog-read-more:hover {
    color: #88cb4e;
}

.blog-card-image {
    min-height: 180px;
    border-radius: 10px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 40%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-image {
        min-height: 165px;
    }
}

@media (max-width: 1024px) {
    .appointment-shell {
        grid-template-columns: 1fr;
    }

    .appointment-left,
    .appointment-right {
        padding: 34px;
    }
}

@media (max-width: 640px) {
    .appointment-grid-two {
        grid-template-columns: 1fr;
    }
}

/* Our Purpose (Vision / Our Mission / Value) - screenshot matched */
.purpose-section {
    position: relative;
    background: #fff;
    padding: 90px 0 96px;
    overflow: hidden;
}

.purpose-section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -560px;
    transform: translateX(-50%);
    width: 1600px;
    height: 980px;
    background: #88cb4e;
    border-radius: 50%; /* full ellipse; section clipping makes it a semi-circle */
    opacity: 1;
    pointer-events: none;
}

.purpose-container {
    position: relative;
    z-index: 1;
}

.purpose-header {
    text-align: center;
    margin-bottom: 46px;
}

.purpose-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(17, 26, 46, 0.35);
    margin-bottom: 8px;
}

.purpose-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 900;
    color: #0f172a;
    font-size: clamp(1.8rem, 4.2vw, 2.8rem);
    line-height: 1.1;
}

.purpose-title::after {
    content: "";
    display: block;
    width: 150px;
    height: 3px;
    background: rgba(136, 203, 78, 0.9);
    border-radius: 999px;
    margin: 12px auto 0;
}

.purpose-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.purpose-card {
    background: #fff;
    border-radius: 12px;
    padding: 26px 22px;
    box-shadow: 0 20px 44px rgba(17, 26, 46, 0.14);
    border: 1px solid rgba(0, 0, 0, 0.04);
    min-height: 250px;
}

.purpose-icon {
    color: #88cb4e;
    margin-bottom: 16px;
}

.purpose-card h3 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 900;
    font-size: 1.2rem;
    color: #0f172a;
}

.purpose-card p {
    margin: 0;
    color: #3f4b5f;
    line-height: 1.85;
    font-size: 0.98rem;
}

@media (max-width: 900px) {
    .purpose-section {
        padding: 72px 0 86px;
    }

    .purpose-section::before {
        width: 1180px;
        height: 740px;
        top: -410px;
    }

    .purpose-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Services section - reference screenshot layout */
#services.services-section {
    background: #f1f3f5;
    overflow: hidden;
}

#services .services-offering-layout {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(0, 1.05fr);
    align-items: start;
    gap: 30px;
}

#services .services-offering-header {
    text-align: left;
    margin: 0;
    padding-top: 8px;
}

#services .services-offering-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #111;
    line-height: 1.12;
}

#services .services-offering-subtitle {
    margin: 8px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #84bc45;
    line-height: 1.05;
}

#services .services-offering-underline {
    margin: 10px 0 0;
    width: 320px;
    max-width: 85%;
    height: 8px;
    border-radius: 999px;
    background: #84bc45;
}

#services .services-offering-carousel {
    width: 100%;
    overflow: hidden;
    height: 520px;
}

#services .services-offering-track {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    align-items: flex-start;
    width: 220px;
    margin-left: auto;
}

#services .services-offering-slide {
    flex: 0 0 auto;
    max-width: 145px;
    width: 145px;
}

#services .services-offering-slide:nth-child(odd) {
    margin-left: 0;
}

#services .services-offering-slide:nth-child(even) {
    margin-left: 54px;
}

#services .services-card-media {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    aspect-ratio: 3 / 4.2;
}

#services .services-offering-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#services .services-offering-label {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 12px;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.04;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
    text-transform: capitalize;
}

@media (max-width: 1024px) {
    #services .services-offering-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #services .services-offering-slide {
        max-width: 155px;
        width: 155px;
    }

    #services .services-offering-track {
        width: 228px;
    }

    #services .services-offering-carousel {
        height: 500px;
    }
}

@media (max-width: 768px) {
    #services .services-offering-label {
        font-size: 1.1rem;
    }

    #services .services-offering-track {
        width: 100%;
        margin-left: 0;
    }

    #services .services-offering-slide:nth-child(even),
    #services .services-offering-slide:nth-child(odd) {
        margin-left: 0;
    }

    #services .services-offering-carousel {
        height: 420px;
    }
}

/* Services section - React-style staggered card layout */
#services .services-offering-layout {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
    gap: 52px;
    align-items: start;
}

#services .services-offering-header {
    text-align: left;
}

#services .services-offering-subtitle {
    margin: 6px 0 0;
    font-size: clamp(2rem, 3.8vw, 2.9rem);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 700;
    color: #84bc45;
}

#services .services-offering-desc {
    margin: 26px 0 0;
    max-width: 460px;
    color: #475569;
    font-size: 1rem;
    line-height: 1.75;
}

#services .services-offering-grid-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

#services .services-offering-grid-cards .services-offering-slide {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
}

#services .services-offering-grid-cards .services-offering-slide:nth-child(even) {
    margin-top: 48px;
}

#services .services-offering-grid-cards .services-card-media {
    border: none;
    border-radius: 16px;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.14);
}

#services .services-offering-grid-cards .services-card-media.is-tall {
    aspect-ratio: 3 / 4;
}

#services .services-offering-grid-cards .services-card-media.is-square {
    aspect-ratio: 1 / 1;
}

#services .services-offering-grid-cards .services-offering-label {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

#services .services-offering-grid-cards .services-offering-img {
    transition: transform 700ms ease;
}

#services .services-offering-grid-cards .services-offering-slide:hover .services-offering-img {
    transform: scale(1.06);
}

@media (max-width: 1024px) {
    #services .services-offering-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

@media (max-width: 700px) {
    #services .services-offering-grid-cards {
        gap: 14px;
    }

    #services .services-offering-grid-cards .services-offering-slide:nth-child(even) {
        margin-top: 22px;
    }
}

/* Services section - sticky vertical scroll with GSAP */
#services.services-scroll-section {
    background: #f3f5f6;
}

#services .services-scroll-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
    gap: 52px;
    align-items: start;
}

#services .services-scroll-left {
    position: sticky;
    top: 96px;
    align-self: start;
}

#services .services-scroll-kicker {
    display: block;
    margin: 0;
    font-size: clamp(2rem, 2.2vw, 2.85rem);
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 600;
    color: #141414;
}

#services .services-scroll-title {
    margin: 6px 0 0;
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.05;
    color: #0f172a;
}

#services .services-scroll-title span {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 700;
    color: #89ad46;
}

#services .services-scroll-desc {
    margin: 20px 0 0;
    max-width: 460px;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.65;
    opacity: 0.75;
}

#services .services-scroll-left .services-offering-underline {
    margin: 14px 0 0;
    width: 320px;
    max-width: 92%;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(129, 175, 67, 0.9), rgba(129, 175, 67, 0.8));
    transform: rotate(-4deg);
    box-shadow: 0 2px 0 rgba(129, 175, 67, 0.28);
    position: relative;
}

#services .services-scroll-left .services-offering-underline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 12px;
    top: 7px;
    height: 4px;
    border-radius: 999px;
    background: rgba(243, 245, 246, 0.75);
}

#services .services-scroll-right {
    min-height: 72vh;
}

#services .services-scroll-viewport {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

#services .services-scroll-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

#services .services-scroll-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: clamp(220px, 22vw, 280px);
    box-shadow: 0 10px 22px rgba(12, 33, 26, 0.18);
    background-color: #0f172a;
}

#services .services-scroll-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

#services .services-scroll-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 50, 40, 0.06) 28%, rgba(7, 50, 40, 0.78) 100%);
}

#services .services-scroll-label {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.08rem, 1.6vw, 1.6rem);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 220ms ease;
}

#services .services-scroll-card:hover .services-scroll-label {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

#services .services-scroll-card:nth-child(odd) {
    margin-top: 72px;
}

@media (max-width: 1024px) {
    #services .services-scroll-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    #services .services-scroll-left {
        position: static;
    }

    #services .services-scroll-right {
        min-height: auto;
    }

    #services .services-scroll-track {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #services .services-scroll-card:nth-child(odd) {
        margin-top: 0;
    }
}
