/*
 * Dr. Silky Mittal — About Page
 * Standalone final stylesheet (MOBILE-FIXED VERSION)
 * Palette: Mediluxe Green theme (color6)
 * Primary   #2F855A
 * Secondary #68D391
 * Dark      #1C4532
 * Light     #F0FFF4
 *
 * This stylesheet is written specifically for about(2).html.
 * It includes the page layout, responsive grid utilities used by the
 * existing HTML, header/offcanvas, hero mosaic, content cards, FAQ,
 * footer and appointment modal styling.
 *
 * FIX NOTE: the original file's .row used `flex-wrap: nowrap`, which is
 * what was breaking mobile — every multi-column row (hero, story,
 * values, "why choose us", expertise hub, stats, footer, modal, etc.)
 * was forced to stay on one line instead of stacking on small screens,
 * causing columns to be squeezed and the page to overflow horizontally.
 * That's changed to `flex-wrap: wrap` below (Section 4), plus a couple
 * of small safety additions to stop long content from forcing overflow
 * on narrow screens (min-width: 0 on row children, wrapped long words).
 */

/* =========================================================
   1. DESIGN TOKENS
========================================================= */
:root {
    --primary-color: #2F855A;
    --primary-color-rgb: 47, 133, 90;

    --secondary-color: #68D391;
    --secondary-color-rgb: 104, 211, 145;

    --dark-color: #1C4532;
    --dark-color-rgb: 28, 69, 50;

    --light-color: #F0FFF4;
    --light-color-rgb: 240, 255, 244;

    --white: #ffffff;
    --white-rgb: 255, 255, 255;

    --gray-cus-50: #F7FAFC;
    --gray-cus-100: #EDF2F7;
    --gray-cus-200: #E2E8F0;
    --gray-cus-400: #A0AEC0;
    --gray-cus-600: #4A5568;
    --gray-cus-900: #1A202C;

    --font-head: "Plus Jakarta Sans", Arial, sans-serif;
    --font-body: "Inter", Arial, sans-serif;

    --border-radius-sm: 10px;
    --border-radius: 16px;
    --border-radius-lg: 28px;

    --box-shadow: 0 15px 40px rgba(28, 69, 50, .08);
    --box-shadow-lg: 0 25px 70px rgba(28, 69, 50, .13);

    --tr-speed: .3s ease;
    --tr-smooth: .45s cubic-bezier(.22, 1, .36, 1);
}

/* =========================================================
   2. FONT
========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");

/* =========================================================
   3. RESET / BASE
========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--dark-color);
    background: var(--white);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
}

img,
svg,
iframe {
    max-width: 100%;
}

img {
    vertical-align: middle;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
    max-width: 100%;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .75rem;
    font-family: var(--font-head);
    color: var(--dark-color);
    line-height: 1.18;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

p {
    margin-top: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

ul,
ol {
    margin-top: 0;
}

.text-cus-primary {
    color: var(--primary-color) !important;
}

.text-cus-secondary {
    color: var(--secondary-color) !important;
}

.text-cus-dark {
    color: var(--dark-color) !important;
}

.text-cus-white {
    color: var(--white) !important;
}

.text-info {
    color: var(--secondary-color) !important;
}

.text-white {
    color: #fff !important;
}

.text-white-50 {
    color: rgba(255,255,255,.5) !important;
}

.opacity-75 {
    opacity: .75 !important;
}

.opacity-50 {
    opacity: .5 !important;
}

.opacity-25 {
    opacity: .25 !important;
}

.opacity-10 {
    opacity: .10 !important;
}

.text-opacity-75 {
    --text-opacity: .75;
}

.fw-bold { font-weight: 700 !important; }
.fw-bolder { font-weight: 800 !important; }
.fw-extrabold { font-weight: 800 !important; }

.small { font-size: .875rem !important; }

.fs-3 { font-size: 1.75rem !important; }
.fs-4 { font-size: 1.5rem !important; }
.fs-5 { font-size: 1.15rem !important; }
.fs-6 { font-size: 1rem !important; }

.display-5 {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.12;
}

.display-6 {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 800;
    line-height: 1.12;
}

.h5 {
    font-size: 1.25rem;
}

.lead {
    font-size: 1.08rem;
    line-height: 1.8;
}

.text-center { text-align: center !important; }
.text-end { text-align: right !important; }
.text-start { text-align: left !important; }
.text-uppercase { text-transform: uppercase !important; }

.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.top-0 { top: 0 !important; }
.end-0 { right: 0 !important; }

.overflow-hidden { overflow: hidden !important; }

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

.d-flex { display: flex !important; }
.d-block { display: block !important; }
.d-none { display: none !important; }

.align-items-center { align-items: center !important; }
.align-items-end { align-items: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-end { justify-content: flex-end !important; }

.flex-column { flex-direction: column !important; }

.g-0 { gap: 0 !important; }
.g-3 { gap: 1rem !important; }
.g-4 { gap: 1.5rem !important; }
.g-5 { gap: 3rem !important; }
.gy-5 { row-gap: 3rem !important; }

.gap-2 { gap: .5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }

.m-0 { margin: 0 !important; }
.mt-2 { margin-top: .5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: .25rem !important; }
.mb-2 { margin-bottom: .5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.me-2 { margin-right: .5rem !important; }
.me-3 { margin-right: 1rem !important; }

.p-0 { padding: 0 !important; }
.p-2 { padding: .5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pe-lg-5 { padding-right: 3rem !important; }

.rounded-circle { border-radius: 50% !important; }
.rounded-pill { border-radius: 999px !important; }

.border-0 { border: 0 !important; }
.border-top { border-top: 1px solid var(--gray-cus-200) !important; }

.bg-transparent { background: transparent !important; }
.bg-success { background: var(--primary-color) !important; }
.bg-warning { background: #d69e2e !important; }

.relative-z {
    position: relative;
    z-index: 2;
}

/* =========================================================
   4. CONTAINER / GRID
   FIX: flex-wrap changed from nowrap -> wrap so columns stack
   on narrow viewports instead of squashing/overflowing.
========================================================= */
.container {
    width: min(1140px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}

.row {
    display: flex;
    flex-wrap: wrap; /* mobile/tablet default: columns stack */
    margin-left: -12px;
    margin-right: -12px;
    flex-direction: row;
}

.row > * {
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
    min-width: 0;
}

.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-md-6 { width: 100%; }
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9 {
    width: 100%;
}

.col-xl-3 { width: 100%; }

.section-padding {
    padding: 110px 0;
}

.section-padding-lg {
    padding: 80px 0 110px;
}

.section-padding-top {
    padding-top: 110px;
}

/* =========================================================
   5. TOP BAR
========================================================= */
.top-bar {
    background: var(--dark-color);
    color: #fff;
    padding: 8px 0;
    font-size: .82rem;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    transition: opacity .3s ease;
}

.top-bar a:hover {
    opacity: .8;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =========================================================
   6. ICON FALLBACK
   If bootstrap-icons CSS is removed, icons remain visually
   consistent as simple medical-style glyphs.
========================================================= */
i[class^="bi-"],
i[class*=" bi-"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    line-height: 1;
}

i.bi-envelope-fill::before { content: "✉"; }
i.bi-geo-alt-fill::before { content: "⌖"; }
i.bi-facebook::before { content: "f"; font-weight: 800; }
i.bi-instagram::before { content: "◎"; font-weight: 800; }
i.bi-youtube::before { content: "▶"; font-size: .8em; }
i.bi-telephone-fill::before { content: "☎"; }
i.bi-grid-3x3-gap-fill::before { content: "▦"; }
i.bi-chevron-down::before { content: "⌄"; }
i.bi-arrow-right::before { content: "→"; }
i.bi-eye::before { content: "◉"; }
i.bi-heart-pulse::before { content: "♡"; }
i.bi-stars::before { content: "✦"; }
i.bi-check2-circle::before { content: "✓"; }
i.bi-award::before,
i.bi-award-fill::before { content: "★"; }
i.bi-shield-check::before { content: "✓"; }
i.bi-shield-plus::before { content: "+"; }
i.bi-people-fill::before { content: "♙"; }
i.bi-virus::before { content: "✣"; }
i.bi-mic-fill::before { content: "●"; }
i.bi-journal-medical::before,
i.bi-journal-richtext::before { content: "▤"; }
i.bi-calendar-check::before { content: "□"; }
i.bi-heart-fill::before { content: "♥"; }
i.bi-clock-history::before { content: "◷"; }
i.bi-x-lg::before { content: "×"; }

/* =========================================================
   7. HEADER
========================================================= */
.header-page4 {
    padding: 15px 0;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(47,133,90,.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all .3s ease;
}

.header-page4 .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-page4 .navbar-brand {
    display: flex;
    align-items: center;
    min-width: 0;
}

.header-page4 .navbar-brand img {
    height: 48px;
    width: auto;
}

.header-page4 .menu-trigger {
    background: var(--light-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all .3s ease;
    flex: 0 0 auto;
}

.header-page4 .menu-trigger:hover {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(90deg);
}

.header-page4.scrolled {
    padding: 5px 0;
    box-shadow: 0 10px 30px rgba(28,69,50,.06);
}

/* =========================================================
   8. OFFCANVAS NAVIGATION
========================================================= */
.offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    max-width: 92vw;
    visibility: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: #fff;
    z-index: 1060;
    transform: translateX(100%);
    transition: transform .35s ease, visibility .35s ease;
}

.offcanvas.show {
    visibility: visible;
    transform: translateX(0);
}

.offcanvas-header {
    padding: 2.2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.btn-close {
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    position: relative;
}

.btn-close::before,
.btn-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background: currentColor;
}

.btn-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.btn-close::after { transform: translate(-50%,-50%) rotate(-45deg); }

.btn-close-white {
    color: #fff !important;
}

.offcanvas-body {
    padding: 0 2.2rem 2.2rem;
    height: calc(100% - 90px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.nav-item {
    margin-bottom: 1rem;
}

.nav-link-custom {
    font-family: var(--font-head);
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color .3s;
    cursor: pointer;
}

.nav-link-custom:hover {
    color: var(--secondary-color);
}

.dropdown-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(255,255,255,.1);
}

.nav-item.active .dropdown-panel {
    max-height: 1000px;
}

.sub-link {
    display: block;
    color: rgba(255,255,255,.7);
    padding: .5rem 0;
    font-size: 1rem;
    transition: .3s;
}

.sub-link:hover {
    color: #fff;
    padding-left: 10px;
}

.menu-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.1);
}

.contact-mini {
    color: rgba(255,255,255,.6);
    margin-bottom: .5rem;
}

/* =========================================================
   9. SEARCH OVERLAY
========================================================= */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28,69,50,.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay .search-form {
    width: min(600px, calc(100% - 40px));
    position: relative;
}

.search-overlay .search-form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: clamp(22px, 4vw, 30px);
    outline: none;
    padding: 12px 0;
}

/* =========================================================
   10. HERO
========================================================= */
.about-hero {
    background:
        radial-gradient(circle at 5% 15%, rgba(104,211,145,.12), transparent 32%),
        radial-gradient(circle at 95% 80%, rgba(47,133,90,.07), transparent 30%),
        #fff;
}

.about-hero .content-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.title-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 17px;
    border-radius: 999px;
    background: rgba(104,211,145,.13);
    color: var(--primary-color);
    border: 1px solid rgba(104,211,145,.28);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 20px;
}

.main-title {
    color: var(--dark-color);
    margin-bottom: 22px;
}

.main-title span {
    color: var(--primary-color);
}

.about-hero .lead {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gray-cus-600);
}

/* =========================================================
   11. HERO IMAGE MOSAIC
========================================================= */
.image-gallery-mosaic {
    position: relative;
    width: min(900px, 100%);
    height: 590px;
    margin: 55px auto 0;
}

.image-gallery-mosaic .mosaic-item {
    position: absolute;
    overflow: hidden;
    border-radius: 30px;
    background: var(--light-color);
    box-shadow: 0 25px 60px rgba(28,69,50,.13);
    border: 5px solid rgba(255,255,255,.9);
    transition: transform .6s cubic-bezier(.22,1,.36,1), box-shadow .6s ease;
}

.image-gallery-mosaic .mosaic-item:hover {
    box-shadow: 0 35px 75px rgba(28,69,50,.18);
}

.image-gallery-mosaic .mosaic-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.image-gallery-mosaic .item-sm-left {
    width: 260px;
    height: 320px;
    left: 0;
    top: 130px;
    z-index: 2;
    transform: rotate(-3deg);
}

.image-gallery-mosaic .item-sm-left:hover {
    transform: rotate(0) translateY(-8px);
}

.image-gallery-mosaic .item-lg {
    width: 400px;
    height: 480px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 4;
}

.image-gallery-mosaic .item-lg:hover {
    transform: translateX(-50%) translateY(-8px);
}

.image-gallery-mosaic .item-sm-right {
    width: 260px;
    height: 320px;
    right: 0;
    top: 130px;
    z-index: 2;
    transform: rotate(3deg);
}

.image-gallery-mosaic .item-sm-right:hover {
    transform: rotate(0) translateY(-8px);
}

.btn-booking-circle {
    position: absolute;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
    z-index: 10;
    width: 126px;
    height: 126px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.35;
    box-shadow: 0 15px 35px rgba(47,133,90,.32);
    border: 8px solid rgba(255,255,255,.9);
    transition: all .35s ease;
}

.btn-booking-circle:hover {
    background: var(--dark-color);
    transform: translateX(-50%) scale(1.07);
}

.glass-info {
    position: absolute;
    right: 25px;
    bottom: 25px;
    z-index: 8;
    width: 280px;
    padding: 20px 22px;
    border-radius: 20px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 15px 40px rgba(28,69,50,.09);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.glass-info strong {
    display: block;
    color: var(--primary-color);
    font-family: var(--font-head);
    font-size: 1rem;
    margin-bottom: 6px;
}

/* =========================================================
   12. BUTTONS
========================================================= */
.btn-cus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
    transition: all .3s ease;
    cursor: pointer;
}

.btn-cus-primary {
    background: var(--primary-color);
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(47,133,90,.18);
}

.btn-cus-primary:hover {
    background: var(--dark-color);
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-cus-outline-primary {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}

.btn-cus-outline-primary:hover {
    background: var(--primary-color);
    color: #fff !important;
}

/* =========================================================
   13. STORY / TIMELINE
========================================================= */
.about-story {
    background: var(--gray-cus-50);
}

.about-story-wrapper {
    position: sticky;
    top: 120px;
}

.stats-item p {
    color: var(--primary-color);
}

.vr {
    width: 1px;
    min-height: 55px;
    background: var(--gray-cus-200);
}

.timeline {
    list-style: none;
    padding: 0 0 0 35px;
    margin: 0;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 10px;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary-color), rgba(104,211,145,.12));
}

.milestone-card {
    position: relative;
    padding: 25px 28px;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid var(--gray-cus-100);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(28,69,50,.04);
    transition: all .35s ease;
}

.milestone-card:hover {
    transform: translateX(6px);
    border-color: rgba(104,211,145,.6);
    box-shadow: 0 20px 40px rgba(28,69,50,.08);
}

.milestone-card__dot {
    position: absolute;
    left: -33px;
    top: 30px;
    width: 18px;
    height: 18px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(104,211,145,.25);
}

.milestone-card__year {
    display: inline-block;
    margin-bottom: 8px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--light-color);
    color: var(--primary-color);
    font-size: .76rem;
    font-weight: 800;
}

/* =========================================================
   14. VALUES
========================================================= */
.about-value {
    background: #fff;
}

.value-card {
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 35px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--gray-cus-100);
    box-shadow: 0 15px 35px rgba(28,69,50,.05);
    transition: all .4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(104,211,145,.65);
    box-shadow: 0 25px 55px rgba(28,69,50,.10);
}

.value-card.featured-card {
    background: linear-gradient(145deg, var(--primary-color), var(--dark-color));
    color: #fff;
    border-color: transparent;
}

.value-card.featured-card h3,
.value-card.featured-card p {
    color: #fff;
}

.icon-wrapper,
.glass-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    color: var(--primary-color);
    font-size: 1.7rem;
    margin-bottom: 25px;
}

.featured-card .icon-wrapper {
    background: rgba(255,255,255,.13);
    color: #fff;
}

.value-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray-cus-600);
}

.list-values {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.list-values li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-weight: 600;
}

.list-values i {
    color: var(--secondary-color);
    flex: 0 0 auto;
    margin-top: 4px;
}

.deco-shape {
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    bottom: -75px;
    border-radius: 50%;
    background: rgba(104,211,145,.08);
}

/* =========================================================
   15. WHY CHOOSE US
========================================================= */
.about-wcu {
    background:
        radial-gradient(circle at 0 50%, rgba(104,211,145,.09), transparent 35%),
        #fff;
}

.image-stack {
    position: relative;
    max-width: 540px;
    margin: auto;
    padding: 20px;
}

.image-stack::before {
    content: "";
    position: absolute;
    inset: 0 10% 5% 0;
    border-radius: 38px;
    background: var(--light-color);
    transform: rotate(-4deg);
}

.image-stack .img-main {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 35px;
    box-shadow: var(--box-shadow-lg);
}

.glass-badge {
    position: absolute;
    right: -5px;
    bottom: 15px;
    z-index: 5;
    max-width: 330px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 20px 45px rgba(28,69,50,.10);
}

.icon-circle {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    color: var(--primary-color);
    font-size: 1.25rem;
}

.bg-cus-secondary {
    background: var(--secondary-color) !important;
    color: var(--dark-color) !important;
}

.wcu-main-card {
    position: relative;
    padding: 45px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--gray-cus-100);
    box-shadow: 0 18px 45px rgba(28,69,50,.06);
}

.highlight-text {
    position: absolute;
    top: 15px;
    right: 28px;
    font-family: var(--font-head);
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 800;
    color: rgba(47,133,90,.06);
}

.list-feature {
    margin-top: 30px;
}

.feature-item-inline {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px dashed var(--gray-cus-200);
}

.feature-item-inline:last-child {
    border-bottom: 0;
}

.feature-item-inline h3 {
    color: var(--dark-color);
}

/* =========================================================
   16. EXPERTISE HUB
========================================================= */
.about-hub {
    background: var(--gray-cus-50);
}

.hub-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 35px;
    align-items: center;
}

.side-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tech-float-card {
    position: relative;
    padding: 28px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--gray-cus-100);
    box-shadow: 0 15px 35px rgba(28,69,50,.06);
    transition: all .4s ease;
}

.tech-float-card:hover {
    transform: translateY(-7px);
    border-color: rgba(104,211,145,.55);
    box-shadow: 0 25px 50px rgba(28,69,50,.10);
}

.floating-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.tech-float-card .icon-box {
    width: 55px;
    height: 55px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    color: var(--primary-color);
    font-size: 1.35rem;
    margin-bottom: 17px;
}

.tech-img-preview {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 18px;
    margin-top: 20px;
}

.hub-center {
    text-align: center;
}

.main-circle-visual {
    position: relative;
    width: min(360px, 80vw);
    aspect-ratio: 1;
    margin: 0 auto 30px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, #fff 0 34%, transparent 35%),
        radial-gradient(circle, rgba(104,211,145,.3), rgba(47,133,90,.07) 60%, transparent 61%);
    box-shadow: inset 0 0 0 1px rgba(104,211,145,.18), 0 25px 60px rgba(28,69,50,.08);
    animation: hubPulse 5s ease-in-out infinite;
}

.main-circle-visual::before,
.main-circle-visual::after {
    content: "";
    position: absolute;
    inset: 12%;
    border: 1px dashed rgba(47,133,90,.25);
    border-radius: 50%;
}

.main-circle-visual::after {
    inset: 25%;
    border-style: solid;
    border-color: rgba(104,211,145,.22);
}

.main-circle-visual .dot {
    position: absolute;
    width: 18px;
    height: 18px;
    top: 17%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(104,211,145,.12);
}

@keyframes hubPulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.025); }
}

.center-content {
    max-width: 470px;
    margin: auto;
}

/* =========================================================
   17. ACHIEVEMENTS
========================================================= */
.about-cert {
    position: relative;
    background: #fff;
}

.floating-circle {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(104,211,145,.12);
    filter: blur(70px);
    pointer-events: none;
}

.achievement-card {
    height: 100%;
    position: relative;
    padding: 34px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--gray-cus-100);
    box-shadow: 0 15px 35px rgba(28,69,50,.05);
    transition: all .4s ease;
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(28,69,50,.10);
    border-color: rgba(104,211,145,.6);
}

.cert-year {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--light-color);
    color: var(--primary-color);
    font-size: .72rem;
    font-weight: 800;
}

.cert-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.cert-divider {
    width: 45px;
    height: 3px;
    border-radius: 10px;
    background: var(--secondary-color);
    margin-bottom: 16px;
}

.cert-org {
    display: block;
    color: var(--secondary-color);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* =========================================================
   18. STATS
========================================================= */
.about-stats {
    background:
        radial-gradient(circle at 20% 20%, rgba(104,211,145,.1), transparent 30%),
        var(--gray-cus-50);
}

.depth-card {
    position: relative;
    min-height: 280px;
    padding: 35px 25px;
    border-radius: 30px;
    background: linear-gradient(145deg, #fff, #f9fffb);
    border: 1px solid rgba(104,211,145,.18);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(28,69,50,.06);
    transition: all .4s ease;
}

.depth-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(28,69,50,.10);
}

.depth-backdrop {
    position: absolute;
    right: -10px;
    top: -35px;
    font-family: var(--font-head);
    font-size: 9rem;
    line-height: 1;
    font-weight: 800;
    color: rgba(47,133,90,.055);
}

.depth-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.depth-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--light-color);
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.counter-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
}

.counter {
    color: var(--primary-color);
    font-family: var(--font-head);
    font-size: 3.4rem;
    line-height: 1;
    font-weight: 800;
}

.unit {
    color: var(--secondary-color);
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
}

.stat-label {
    margin: 15px 0 0;
    color: var(--gray-cus-600);
    font-weight: 700;
    font-size: .9rem;
}

.mt-custom {
    margin-top: 35px;
}

/* =========================================================
   19. FAQ
========================================================= */
.about-faq {
    background: #fff;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.accordion-item {
    border: 1px solid var(--gray-cus-100);
    border-radius: 20px !important;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(28,69,50,.035);
}

.accordion-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 25px;
    border: 0;
    background: #fff;
    color: var(--dark-color);
    font-family: var(--font-head);
    font-weight: 700;
    text-align: left;
}

.accordion-button::after {
    content: "+";
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
    transition: transform .25s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: var(--light-color);
}

.accordion-button:not(.collapsed)::after {
    content: "−";
}

.accordion-body {
    padding: 0 25px 23px;
    color: var(--gray-cus-600);
    line-height: 1.75;
    background: var(--light-color);
}

.collapse {
    display: none;
}

.collapse.show {
    display: block;
}

/* =========================================================
   20. FOOTER
========================================================= */
.footer-page4 {
    position: relative;
    background: #fff;
}

.footer-page4 .newsletter-floating {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius-lg);
    margin-top: -100px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(47,133,90,.18);
}

.footer-page4 .newsletter-floating h3 {
    color: #fff;
    font-weight: 800;
}

.footer-page4 .newsletter-floating p,
.footer-page4 .newsletter-floating a {
    color: #fff;
}

.footer-page4 .newsletter-floating iframe {
    display: block;
    width: 100%;
    min-height: 350px;
    border: 0;
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-logo-text {
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
}

.footer-logo-text span {
    color: var(--secondary-color);
}

.footer-links-title {
    font-family: var(--font-head);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    position: relative;
}

.footer-links-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 10px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    text-decoration: none;
    color: var(--gray-cus-600);
    display: inline-block;
    transition: all .3s ease;
}

.footer-links-list a:hover {
    color: var(--secondary-color);
    transform: translateX(7px);
}

.social-box {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--light-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: all .3s ease;
    font-size: 1.15rem;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.schedule-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px dashed var(--secondary-color);
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
    font-size: .95rem;
    flex-wrap: wrap;
}

.schedule-row span:first-child {
    color: var(--dark-color) !important;
}

.schedule-row .text-cus-primary {
    color: var(--primary-color) !important;
}

.footer-bottom {
    border-top: 1px solid var(--gray-cus-200);
    padding: 1.5rem 0;
}

/* =========================================================
   21. MODAL / APPOINTMENT POPUP
========================================================= */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1055;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background: rgba(28,69,50,.58);
}

.modal.show {
    display: block;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 1.75rem auto;
    pointer-events: none;
    max-width: 960px;
}

.modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
    display: flex;
    align-items: center;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background: #fff;
    border-radius: 30px;
    border: 0;
    outline: 0;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(28,69,50,.25);
}

.modal-body {
    padding: 0;
}

.booking-sidebar {
    min-height: 620px;
    padding: 55px;
    background:
        radial-gradient(circle at 85% 15%, rgba(104,211,145,.35), transparent 30%),
        linear-gradient(145deg, var(--primary-color), var(--dark-color));
    color: #fff;
    flex-direction: column;
    justify-content: space-between;
}

.booking-sidebar h2,
.booking-sidebar p,
.booking-sidebar .text-cus-white {
    color: #fff !important;
}

.booking-sidebar .glass-badge {
    position: static;
    display: inline-block;
    width: auto;
    max-width: none;
    padding: 8px 14px;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: none;
}

.trust-indicators .icon-box {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    margin-right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255,255,255,.12);
    color: var(--secondary-color);
}

.form-area {
    padding: 55px;
    background: #fff;
}

.form-cus-label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-size: .82rem;
    font-weight: 800;
}

.form-cus-control,
.form-cus-select {
    width: 100%;
    min-height: 50px;
    padding: 12px 15px;
    border: 1px solid var(--gray-cus-200);
    border-radius: 12px;
    background: #fff;
    color: var(--dark-color);
    outline: none;
    transition: border-color .25s ease, box-shadow .25s ease;
}

textarea.form-cus-control {
    min-height: 105px;
    resize: vertical;
}

.form-cus-control:focus,
.form-cus-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(104,211,145,.14);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "⌄";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary-color);
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
}

/* =========================================================
   22. MODAL BACKDROP
========================================================= */
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(28,69,50,.58);
}

.modal-backdrop.show {
    opacity: 1;
}

/* =========================================================
   23. BASIC FORM GRID
========================================================= */
form.row {
    display: flex;
    flex-wrap: wrap;
}

form.row > .col-12,
form.row > .col-md-6,
form.row > .col-md-12 {
    width: 100%;
}

form.row > [class*="col-"] {
    margin-bottom: 0;
}

/* =========================================================
   24. RESPONSIVE — TABLET
========================================================= */
@media (min-width: 768px) {
    .col-md-6 {
        width: 50%;
    }

    .col-md-6.mt-custom {
        margin-top: 35px;
    }

    .modal-dialog.modal-xl {
        max-width: 960px;
    }

    .modal-dialog.modal-xl .modal-content {
        min-height: 620px;
    }

    .d-md-flex {
        display: flex !important;
    }

    .d-md-block {
        display: block !important;
    }

    .text-md-start {
        text-align: left !important;
    }

    .text-md-end {
        text-align: right !important;
    }
}

/* =========================================================
   25. RESPONSIVE — DESKTOP
========================================================= */
@media (min-width: 992px) {
    .row {
        flex-wrap: nowrap; /* desktop only: columns stay side-by-side */
    }

    .col-lg-2 { width: 16.6666667%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.3333333%; }
    .col-lg-5 { width: 41.6666667%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.3333333%; }
    .col-lg-8 { width: 66.6666667%; }
    .col-lg-9 { width: 75%; }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-flex {
        display: flex !important;
    }

    .d-lg-none {
        display: none !important;
    }

    .text-lg-end {
        text-align: right !important;
    }

    .col-lg-5 .about-story-wrapper {
        padding-right: 15px;
    }

    .about-story .row {
        align-items: flex-start;
    }

    .modal-dialog.modal-xl {
        max-width: 1000px;
    }
}

/* =========================================================
   26. RESPONSIVE — HERO / CONTENT
========================================================= */
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }

    .section-padding-lg {
        padding: 65px 0 80px;
    }

    .section-padding-top {
        padding-top: 80px;
    }

    .hub-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: auto;
    }

    .hub-center {
        order: -1;
    }

    .side-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .side-column .tech-float-card[style*="margin-left"],
    .side-column .tech-float-card[style*="margin-right"] {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .image-stack {
        max-width: 620px;
        margin-bottom: 25px;
    }

    .image-stack .img-main {
        height: 520px;
    }

    .about-story-wrapper {
        position: relative;
        top: auto;
    }

    .glass-info {
        right: 15px;
    }

    .booking-sidebar {
        min-height: 100%;
    }
}

/* =========================================================
   27. RESPONSIVE — MOBILE
========================================================= */
@media (max-width: 767px) {
    .container {
        width: min(100% - 28px, 1140px);
    }

    .top-bar {
        display: none;
    }

    .header-page4 {
        padding: 10px 0;
    }

    .header-page4 .navbar-brand img {
        height: 42px;
    }

    .header-page4 .navbar-brand h3 {
        font-size: 1rem !important;
    }

    .header-page4 .menu-trigger {
        width: 44px;
        height: 44px;
        border-radius: 13px;
        font-size: 1.2rem;
    }

    .section-padding {
        padding: 65px 0;
    }

    .section-padding-lg {
        padding: 55px 0 70px;
    }

    .display-5 {
        font-size: 2rem;
    }

    .lead {
        font-size: .98rem;
    }

    .image-gallery-mosaic {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: 35px;
        padding: 0 5px;
    }

    .image-gallery-mosaic .mosaic-item,
    .image-gallery-mosaic .item-sm-left,
    .image-gallery-mosaic .item-lg,
    .image-gallery-mosaic .item-sm-right {
        position: relative;
        width: 100%;
        height: auto;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
    }

    .image-gallery-mosaic .item-lg {
        order: 1;
        aspect-ratio: 4 / 5;
    }

    .image-gallery-mosaic .item-sm-left {
        order: 2;
        aspect-ratio: 4 / 5;
    }

    .image-gallery-mosaic .item-sm-right {
        order: 3;
        aspect-ratio: 4 / 5;
    }

    .image-gallery-mosaic .item-sm-left:hover,
    .image-gallery-mosaic .item-lg:hover,
    .image-gallery-mosaic .item-sm-right:hover {
        transform: translateY(-4px);
    }

    .btn-booking-circle {
        position: relative;
        order: 4;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 5px auto;
    }

    .btn-booking-circle:hover {
        transform: scale(1.05);
    }

    .glass-info {
        position: relative;
        order: 5;
        right: auto;
        bottom: auto;
        width: 100%;
    }

    .d-md-flex,
    .d-md-block {
        display: none !important;
    }

    .side-column {
        grid-template-columns: 1fr;
    }

    .image-stack {
        padding: 8px;
    }

    .image-stack .img-main {
        height: 420px;
        border-radius: 25px;
    }

    .glass-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -25px 15px 0;
        max-width: none;
    }

    .wcu-main-card {
        padding: 28px 22px;
    }

    .value-card,
    .achievement-card {
        padding: 28px 23px;
    }

    .mt-custom {
        margin-top: 0;
    }

    .depth-card {
        min-height: 240px;
    }

    .counter {
        font-size: 3rem;
    }

    .footer-page4 .newsletter-floating {
        margin-top: -55px;
        border-radius: 22px;
    }

    .footer-main {
        padding: 60px 0 40px;
    }

    .schedule-row {
        font-size: .86rem;
    }

    .modal-dialog {
        width: calc(100% - 24px);
        margin: 12px auto;
    }

    .modal-dialog-centered {
        min-height: calc(100% - 24px);
    }

    .form-area {
        padding: 35px 22px;
    }

    .booking-sidebar {
        padding: 35px 22px;
    }
}

/* =========================================================
   28. VERY SMALL PHONES
========================================================= */
@media (max-width: 480px) {
    .container {
        width: calc(100% - 24px);
    }

    .main-title {
        font-size: 1.85rem;
    }

    .title-badge {
        font-size: .67rem;
        padding: 7px 12px;
    }

    .milestone-card {
        padding: 22px 18px;
    }

    .timeline {
        padding-left: 28px;
    }

    .milestone-card__dot {
        left: -26px;
    }

    .timeline::before {
        left: 8px;
    }

    .image-stack .img-main {
        height: 360px;
    }

    .glass-info {
        padding: 17px;
    }

    .accordion-button {
        padding: 18px;
        font-size: .95rem;
    }

    .accordion-body {
        padding: 0 18px 18px;
    }

    .footer-page4 .newsletter-floating .p-5 {
        padding: 1.5rem !important;
    }

    .footer-page4 .newsletter-floating iframe {
        min-height: 280px;
    }

    .form-area {
        padding: 28px 17px;
    }

    .depth-backdrop {
        font-size: 6rem;
    }

    .highlight-text {
        font-size: 3rem;
    }
}

/* =========================================================
   29. ACCESSIBILITY / REDUCED MOTION
========================================================= */
:focus-visible {
    outline: 3px solid rgba(104,211,145,.55);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}