       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background-color: #ffffff;
            color: #111111;
            line-height: 1.6;
        }

        h1, h2, h3 {
            font-family: 'Cormorant Garamond', serif;
        }
  
.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #ffffff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
        font-size: 26px;
    }
}
        /* ================= HERO ================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slides,
.hero-slide,
.hero-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ================= STATS ================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

/* ================= ABOUT ================= */

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mission-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .hero {
        min-height: 90vh;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content p {
        font-size: 0.9rem;
    }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-sub {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .value-item p,
    .mission-info p {
        font-size: 0.8rem;
    }
}

/* ================= EXTRA SMALL DEVICES ================= */

@media (max-width: 360px) {

    .hero-title {
        font-size: 1.4rem;
    }

    .hero-sub {
        font-size: 0.8rem;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}
        /* ============================================
           RESET & VARIABLES
        ============================================ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --blue-deep:     #0C2440;
            --blue-mid:     #1A5276;
            --blue-bright:  #2471A3;
            --blue-pale:    #D6EAF8;
            --teal:         #148F77;
            --warm-white:    #FAFBFD;
            --off-white:      #F2F4F8;
           --text-dark: #08192E;
            --text-mid : #1A2B3C; 
            --text-light: #3D5166;
            --white:        #FFFFFF;
            --border:       rgba(10,37,64,0.07);

            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body:    'DM Sans', system-ui, sans-serif;

            --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
            --shadow-sm:  0 1px 3px rgba(10,37,64,0.08);
            --shadow-md:  0 4px 16px rgba(10,37,64,0.1);
            --shadow-lg:  0 12px 40px rgba(10,37,64,0.15);
        }

        html { scroll-behavior: smooth; font-size: 15px; }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background: var(--white);
            line-height: 1.75;
            overflow-x: hidden;
        }

        h1,h2,h3,h4,h5 {
            font-family: var(--font-display);
            line-height: 1.15;
            color: var(--blue-deep);
        }

        a { color: var(--blue-bright); text-decoration: none; transition: var(--transition); }
        img { max-width: 100%; height: auto; display: block; }

        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 2rem;
        }

      /* ============================================
   TOP BAR
============================================ */
.top-bar {
    background: var(--blue-deep);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    padding: 0.55rem 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.top-bar svg {
    opacity: 0.6;
    flex-shrink: 0;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.2rem 0.75rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    white-space: nowrap;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}


/* ============================================
   TABLET RESPONSIVE
============================================ */
@media (max-width: 768px) {

    .top-bar {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }

    .top-bar .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }

    .top-bar-left {
        justify-content: center;
        gap: 0.75rem 1.25rem;
        width: 100%;
    }

    .lang-btn {
        font-size: 0.7rem;
        padding: 0.25rem 0.65rem;
    }
}


/* ============================================
   MOBILE RESPONSIVE
============================================ */
@media (max-width: 480px) {

    .top-bar {
        font-size: 0.7rem;
        padding: 0.45rem 0;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }

    .top-bar-left {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }

    .top-bar-left span {
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .lang-btn {
        font-size: 0.68rem;
        padding: 0.25rem 0.7rem;
    }
}


/* ============================================
   VERY SMALL PHONES
============================================ */
@media (max-width: 360px) {

    .top-bar {
        font-size: 0.65rem;
    }

    .top-bar-left {
        gap: 0.25rem;
    }

    .lang-btn {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }
}
        /* ============================================
           NAVIGATION
        ============================================ */
        .navbar {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow var(--transition);
        }
        .navbar.scrolled { box-shadow: var(--shadow-md); }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.85rem 0;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            color: var(--blue-deep);
        }
        .logo-mark {
            width: 90px; height: 90px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }
        .logo-mark svg { width: 24px; height: 24px; }
        .logo-title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            line-height: 1.1;
        }
        .logo-sub {
            font-size: 0.7rem;
            color: var(--text-light);
            letter-spacing: 0.04em;
            font-weight: 400;
        }

        .nav-menu { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
        .nav-menu > li > a {
            color: var(--text-mid);
            font-size: 0.82rem;
            font-weight: 400;
            padding: 0.5rem 0.75rem;
            letter-spacing: 0.02em;
            border-radius: 4px;
            transition: var(--transition);
            display: flex; align-items: center; gap: 0.25rem;
        }
        .nav-menu > li > a:hover { color: var(--blue-deep); background: var(--warm-white); }
        .nav-menu .arrow { font-size: 0.6rem; opacity: 0.5; transition: transform var(--transition); }
        .dropdown { position: relative; }
        .dropdown:hover .arrow { transform: rotate(180deg); }
        .dropdown-menu {
            position: absolute; top: calc(100% + 0.5rem); left: 0;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            padding: 0.5rem;
            min-width: 230px;
            list-style: none;
            opacity: 0; visibility: hidden;
            transform: translateY(-6px);
            transition: var(--transition);
        }
        .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-menu a {
            display: block;
            padding: 0.55rem 0.85rem;
            font-size: 0.85rem;
            color: var(--text-mid);
            border-radius: 5px;
            transition: var(--transition);
        }
        .dropdown-menu a:hover { background: var(--warm-white); color: var(--blue-deep); }
        .dropdown-menu .menu-section-label {
            display: block;
            padding: 0.6rem 0.85rem 0.3rem;
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-light);
            margin-top: 0.25rem;
        }
        .dropdown-menu .menu-divider {
            height: 1px;
            background: var(--border);
            margin: 0.4rem 0.5rem;
        }

        .btn-donate-nav {
            background: var(--blue-deep);
            color: var(--white) !important;
            padding: 0.55rem 1.35rem !important;
            border-radius: 5px;
            font-weight: 600 !important;
            letter-spacing: 0.02em;
            margin-left: 0.5rem;
        }
        .btn-donate-nav:hover { background: var(--blue-mid) !important; transform: none; }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.4rem;
        }
        .mobile-toggle span {
            width: 22px; height: 2px;
            background: var(--blue-deep);
            border-radius: 2px;
            transition: var(--transition);
        }

        /* ============================================
           HERO — IMAGE SLIDER
        ============================================ */
        .hero {
            position: relative;
            height: 92vh;
            min-height: 600px;
            max-height: 850px;
            overflow: hidden;
            background: var(--blue-deep);
        }

        .hero-slides { position: absolute; inset: 0; }
        .hero-slide {
            position: absolute; inset: 0;
            opacity: 0;
            transition: opacity 1.2s ease;
        }
        .hero-slide.active { opacity: 1; }

        .hero-slide img {
            width: 100%; height: 100%;
            object-fit: cover;
            object-position: center;
            filter: brightness(0.45) saturate(0.7);
            transform: scale(1);
            transition: transform 8s ease-out;
        }
        .hero-slide.active img { transform: scale(1.04); }

        .hero-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(
                to right,
                rgba(10,37,64,0.8) 0%,
                rgba(10,37,64,0.4) 60%,
                transparent 100%
            );
        }

        .hero-content {
            position: absolute; inset: 0;
            display: flex; flex-direction: column;
            justify-content: center;
            padding: 0 2rem;
            max-width: 1180px;
            margin: 0 auto;
            left: 50%; transform: translateX(-50%);
            width: 100%;
        }
        .hero-eyebrow {
            font-size: 0.75rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.6);
            margin-bottom: 1.25rem;
            font-family: var(--font-body);
            font-weight: 500;
            opacity: 0;
            animation: slideUp 0.8s 0.3s ease forwards;
        }
        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2.8rem, 5.5vw, 5rem);
            font-weight: 400;
            color: var(--white);
            line-height: 1.08;
            max-width: 680px;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: slideUp 0.8s 0.5s ease forwards;
        }
        .hero-title em { font-style: italic; color: rgba(255,255,255,0.7); }
        .hero-sub {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.75);
            max-width: 520px;
            line-height: 1.7;
            margin-bottom: 2.5rem;
            font-weight: 300;
            opacity: 0;
            animation: slideUp 0.8s 0.7s ease forwards;
        }
        .hero-actions {
            display: flex; gap: 1rem; flex-wrap: wrap;
            opacity: 0;
            animation: slideUp 0.8s 0.9s ease forwards;
        }
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .slider-controls {
            position: absolute;
            bottom: 2.5rem; right: 2.5rem;
            display: flex; gap: 0.5rem; z-index: 10;
        }
        .slider-dot {
            width: 28px; height: 3px;
            background: rgba(255,255,255,0.3);
            border: none; cursor: pointer;
            transition: var(--transition);
            border-radius: 2px;
        }
        .slider-dot.active { background: rgba(255,255,255,0.9); width: 48px; }

        .slider-arrows {
            position: absolute;
            bottom: 2.4rem; left: 50%; transform: translateX(-50%);
            display: flex; gap: 0.75rem; z-index: 10;
        }
        .slider-arrow {
            width: 42px; height: 42px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.25);
            color: rgba(255,255,255,0.85);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            backdrop-filter: blur(4px);
        }
        .slider-arrow:hover { background: rgba(255,255,255,0.25); color: #fff; }
        .slider-arrow svg { width: 16px; height: 16px; }

        /* ============================================
           STATS BAR
        ============================================ */
        .stats-bar {
            background: var(--white);
            border-bottom: 1px solid var(--border);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }
        .stat-item {
            padding: 1.75rem 1.5rem;
            text-align: center;
            border-right: 1px solid var(--border);
        }
        .stat-item:last-child { border-right: none; }
        .stat-value {
            font-family: var(--font-display);
            font-size: 2.6rem;
            font-weight: 500;
            color: var(--blue-deep);
            line-height: 1;
        }
        .stat-label {
            font-size: 0.75rem;
            color: var(--text-light);
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-top: 0.4rem;
        }

        /* ============================================
           BUTTONS
        ============================================ */
        .btn {
            display: inline-flex;
            align-items: center; gap: 0.4rem;
            padding: 0.8rem 1.85rem;
          border-radius: 6px;
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.01em;
            transition: var(--transition);
            border: none; cursor: pointer;
            font-family: var(--font-body);
        }
        .btn-primary { background: var(--blue-deep); color: var(--white); }
        .btn-primary:hover { background: var(--blue-mid); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,37,64,0.25); }
        .btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
        .btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.7); }
        .btn-outline-dark { background: transparent; color: var(--blue-deep); border: 1.5px solid var(--blue-deep); }
        .btn-outline-dark:hover { background: var(--blue-deep); color: var(--white); }
        .btn-lg { padding: 1rem 2.2rem; font-size: 0.95rem; }

        /* ============================================
           SECTION DEFAULTS
        ============================================ */
        .section { padding: 7rem 0; }
        .section-alt { background: #FAFBFD; }

        .section-tag {
            display: inline-block;
           font-size: 0.68rem;
            font-weight: 600;
          letter-spacing: 0.22em;
          opacity: 0.8;
            text-transform: uppercase;
            color: var(--blue-bright);
            margin-bottom: 1rem;
        }
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 400;
            color: var(--blue-deep);
            margin-bottom: 1rem;
        }
        .section-sub {
            font-size: 1rem;
            color: var(--text-light);
            max-width: 580px;
            line-height: 1.75;
        }
        .section-header-center { text-align: center; }
        .section-header-center .section-sub { margin: 0 auto; }

        /* ============================================
           ABOUT SECTION
        ============================================ */
        .about-grid {
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 5rem;
            align-items: start;
        }
        .about-content p {
            color: var(--text-mid);
            line-height: 1.85;
            margin-bottom: 1.25rem;
            font-size: 0.975rem;
        }
        .value-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
        .value-item {
            display: flex; gap: 1rem; align-items: flex-start;
            padding: 1rem 1.25rem;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            transition: var(--transition);
        }
        .value-item:hover { border-color: var(--blue-bright); box-shadow: var(--shadow-sm); }
        .value-dot {
            width: 8px; height: 8px;
            background: var(--blue-bright);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 0.35rem;
        }
        .value-item strong { display: block; font-size: 0.9rem; color: var(--blue-deep); margin-bottom: 0.2rem; }
        .value-item p { margin: 0; font-size: 0.83rem; color: var(--text-light); }

        .mission-card {
            background: var(--blue-deep);
            color: var(--white);
            border-radius: 12px;
            padding: 2.5rem;
            position: sticky;
            top: 90px;
        }
        .mission-card h4 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--white);
            margin-bottom: 2rem;
        }
        .mission-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
        .mission-list li {
            display: flex; gap: 1.25rem; align-items: flex-start;
            padding: 1.25rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mission-list li:last-child { border-bottom: none; }
        .mission-num {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 300;
            color: rgba(255,255,255,0.25);
            line-height: 1;
            flex-shrink: 0;
            min-width: 2rem;
        }
        .mission-info strong { display: block; font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.95); margin-bottom: 0.25rem; }
        .mission-info p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

        /* ============================================
           CONDITIONS SECTION
        ============================================ */
        .tab-buttons {
            display: flex; gap: 0; border-bottom: 2px solid var(--border);
            margin-bottom: 3rem;
        }
        .tab-button {
            padding: 0.9rem 2rem;
            background: none; border: none;
            font-family: var(--font-body);
            font-size: 0.875rem; font-weight: 500;
            color: var(--text-light);
            cursor: pointer;
            position: relative;
            transition: var(--transition);
            letter-spacing: 0.03em;
        }
        .tab-button::after {
            content: '';
            position: absolute; bottom: -2px; left: 0; right: 0;
            height: 2px; background: var(--blue-deep);
            transform: scaleX(0);
            transition: transform var(--transition);
        }
        .tab-button:hover { color: var(--blue-deep); }
        .tab-button.active { color: var(--blue-deep); font-weight: 600; }
        .tab-button.active::after { transform: scaleX(1); }

        .tab-pane { display: none; animation: fadeIn 0.4s ease; }
        .tab-pane.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        .condition-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: start;
        }
        .condition-text h3 {
            font-family: var(--font-display);
            font-size: 2rem; font-weight: 400;
            margin-bottom: 1rem;
        }
        .condition-text p {
            color: var(--text-mid); line-height: 1.85; font-size: 0.95rem;
            margin-bottom: 1rem;
        }
        .condition-text h4 {
            font-size: 0.85rem; font-weight: 600;
            letter-spacing: 0.08em; text-transform: uppercase;
            color: var(--text-light);
            margin: 1.5rem 0 0.75rem;
        }
        .symptom-list, .treatment-list {
            list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
        }
        .symptom-list li, .treatment-list li {
            display: flex; align-items: flex-start; gap: 0.75rem;
            font-size: 0.9rem; color: var(--text-mid); line-height: 1.6;
        }
        .symptom-list li::before {
            content: '';
            width: 5px; height: 5px; background: var(--blue-bright);
            border-radius: 50%; flex-shrink: 0; margin-top: 0.5rem;
        }
        .info-box {
            background: #FFF8E7;
            border-left: 3px solid #E6A817;
            padding: 1rem 1.25rem;
            border-radius: 0 6px 6px 0;
            margin-top: 1.5rem;
            font-size: 0.87rem;
            color: var(--text-mid);
        }
        .info-box.success { background: #EAF7F0; border-color: var(--teal); }
        .info-box strong { display: block; margin-bottom: 0.35rem; color: var(--text-dark); }

        .condition-visual { position: sticky; top: 90px; }
        .clinical-img-wrap {
            border-radius: 10px;
            overflow: hidden;
            aspect-ratio: 4/3;
            background: var(--off-white);
            box-shadow: var(--shadow-md);
        }
        .clinical-img-wrap img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .clinical-img-wrap:hover img { transform: scale(1.03); }
        .visual-caption {
            margin-top: 1rem;
            padding: 0.85rem 1rem;
            background: var(--warm-white);
            border-radius: 6px;
            font-size: 0.82rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ============================================
           RESOURCES SECTION
        ============================================ */
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            margin-top: 3rem;
        }
        .resource-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 2.25rem 2rem;
            transition: var(--transition);
            display: flex; flex-direction: column;
        }
        .resource-card:hover {
            border-color: var(--blue-bright);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .resource-icon {
            width: 44px; height: 44px;
            background: var(--blue-pale);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 1.25rem;
        }
        .resource-icon svg { width: 20px; height: 20px; color: var(--blue-mid); }
        .resource-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 0.6rem; }
        .resource-card p { font-size: 0.875rem; color: var(--text-light); flex-grow: 1; margin-bottom: 1.25rem; line-height: 1.65; }
        .card-link { font-size: 0.83rem; font-weight: 600; color: var(--blue-bright); letter-spacing: 0.02em; }
        .card-link:hover { color: var(--blue-deep); }

        /* ============================================
           RESEARCH SECTION
        ============================================ */
        .research-card-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1px;
            background: var(--border);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 3rem;
        }
        .research-card {
            background: var(--white);
            padding: 1.85rem 1.65rem;
            cursor: pointer;
            transition: background var(--transition);
            display: flex;
            flex-direction: column;
        }
        .research-card:hover { background: var(--warm-white); }
        .research-card-icon {
            width: 44px; height: 44px;
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 1.1rem; flex-shrink: 0;
        }
        .research-card-icon svg { width: 20px; height: 20px; }
        .research-card h3 {
            font-family: var(--font-display);
            font-size: 1.15rem; font-weight: 500;
            color: var(--blue-deep); margin-bottom: 0.5rem;
        }
        .research-card > p {
            font-size: 0.855rem; color: var(--text-light);
            line-height: 1.65; margin: 0 0 1rem; flex-grow: 1;
        }
        .learn-more-btn {
            display: inline-flex; align-items: center; gap: 0.3rem;
            font-size: 0.8rem; font-weight: 600;
            color: var(--blue-bright); background: none; border: none;
            cursor: pointer; font-family: var(--font-body);
            padding: 0; letter-spacing: 0.02em;
            transition: color var(--transition);
        }
        .learn-more-btn:hover { color: var(--blue-deep); }
        .learn-more-btn .chevron {
            font-size: 0.62rem;
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .learn-more-btn[aria-expanded="true"] .chevron { transform: rotate(180deg); }
        .research-expand {
            font-size: 0.83rem; color: var(--text-mid);
            line-height: 1.7; overflow: hidden;
            max-height: 0; opacity: 0;
            transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease;
            border-top: 1px solid transparent;
            padding-top: 0; margin-top: 0;
        }
        .research-expand.open {
            max-height: 280px; opacity: 1;
            padding-top: 0.85rem; margin-top: 0.85rem;
            border-top-color: var(--border);
        }
        .research-prog-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: start;
        }
        .research-panel {
            background: var(--warm-white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2.25rem;
            position: sticky; top: 90px;
        }
        .research-panel h3 {
            font-family: var(--font-display);
            font-size: 1.35rem; font-weight: 400;
            margin-bottom: 1.75rem;
        }
        .progress-item { margin-bottom: 1.5rem; }
        .progress-header {
            display: flex; justify-content: space-between;
            font-size: 0.83rem; margin-bottom: 0.5rem;
        }
        .progress-pct { font-weight: 600; color: var(--blue-deep); }
        .progress-bar { height: 5px; background: var(--off-white); border-radius: 10px; overflow: hidden; }
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright));
            border-radius: 10px;
        }
        .panel-note {
            font-size: 0.8rem; color: var(--text-light);
            font-style: italic; line-height: 1.6; margin: 0;
        }
        .research-cta-panel {
            background: var(--blue-deep);
            border-radius: 12px;
            padding: 2.25rem;
            display: flex; flex-direction: column;
        }
        .research-cta-block {
            padding-bottom: 1.5rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .research-cta-block:last-child {
            padding-bottom: 0; margin-bottom: 0; border-bottom: none;
        }
        .research-cta-block h4 {
            font-family: var(--font-display);
            font-size: 1.2rem; font-weight: 400;
            color: var(--white); margin-bottom: 0.5rem;
        }
        .research-cta-block p {
            font-size: 0.82rem; color: rgba(255,255,255,0.5);
            line-height: 1.65; margin: 0 0 1rem;
        }
        .btn-outline-white {
            display: inline-flex; align-items: center; gap: 0.4rem;
            padding: 0.55rem 1.2rem; border-radius: 5px;
            font-weight: 500; font-size: 0.82rem; letter-spacing: 0.01em;
            transition: var(--transition); cursor: pointer;
            font-family: var(--font-body);
            background: transparent; color: rgba(255,255,255,0.85);
            border: 1.5px solid rgba(255,255,255,0.25);
        }
        .btn-outline-white:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.55);
            color: var(--white);
        }
        .btn-teal-sm {
            display: inline-flex; align-items: center; gap: 0.4rem;
            padding: 0.55rem 1.2rem; border-radius: 5px;
            font-weight: 500; font-size: 0.82rem;
            transition: var(--transition); cursor: pointer;
            font-family: var(--font-body);
            background: var(--teal); color: var(--white); border: none;
        }
        .btn-teal-sm:hover { background: #0F7A66; transform: translateY(-1px); }

        /* ============================================
           PROJECTS SECTION (NEW)
        ============================================ */
        .projects-section { padding: 5.5rem 0; background: var(--white); }

        /* Sub-section anchors */
        .projects-subsection { margin-bottom: 4rem; }
        .projects-subsection:last-child { margin-bottom: 0; }

        .subsection-heading {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--border);
        }
        .subsection-heading h3 {
            font-family: var(--font-display);
            font-size: 1.65rem;
            font-weight: 400;
        }
        .subsection-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.3rem 0.85rem;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .badge-ongoing {
            background: #E8F8F0;
            color: #0D6B45;
            border: 1px solid #A8DFCA;
        }
        .badge-completed {
            background: #EDF2FB;
            color: #1A3A7A;
            border: 1px solid #AABDE8;
        }
        .badge-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: currentColor;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }
        .badge-ongoing .badge-dot { animation: pulse 2s infinite; }
        .badge-completed .badge-dot { animation: none; }

        /* Project cards grid */
        .project-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
        }
        .project-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.75rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .project-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright));
            border-radius: 12px 12px 0 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .project-card:hover::before { transform: scaleX(1); }
        .project-card:hover {
            border-color: rgba(36,113,163,0.3);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .project-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
            gap: 1rem;
        }
        .project-card h4 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--blue-deep);
            line-height: 1.3;
            flex: 1;
        }
        .project-year {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            color: var(--text-light);
            background: var(--off-white);
            padding: 0.25rem 0.65rem;
            border-radius: 4px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .project-card p {
            font-size: 0.855rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }
        .project-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: auto;
        }
        .project-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.72rem;
            font-weight: 500;
            color: var(--blue-mid);
            background: var(--blue-pale);
            padding: 0.25rem 0.7rem;
            border-radius: 4px;
        }
        .project-tag svg { width: 11px; height: 11px; }
        .project-collab {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border);
            font-size: 0.78rem;
            color: var(--text-light);
        }
        .project-collab strong { color: var(--text-mid); font-weight: 600; }
        .project-collab svg { width: 13px; height: 13px; opacity: 0.5; flex-shrink: 0; }

        /* Completed research card — publication style */
        .pub-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2rem;
            transition: var(--transition);
            position: relative;
        }
        .pub-card:hover {
            border-color: rgba(36,113,163,0.3);
            box-shadow: var(--shadow-md);
        }
        .pub-card-inner {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 1.5rem;
            align-items: flex-start;
        }
        .pub-icon {
            width: 48px; height: 48px;
            background: var(--blue-deep);
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .pub-icon svg { width: 22px; height: 22px; color: white; }
        .pub-status-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #0D6B45;
            background: #E8F8F0;
            border: 1px solid #A8DFCA;
            padding: 0.25rem 0.7rem;
            border-radius: 4px;
            margin-bottom: 0.65rem;
        }
        .pub-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--blue-deep);
            line-height: 1.3;
            margin-bottom: 0.6rem;
        }
        .pub-meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.25rem;
            margin-bottom: 1rem;
        }
        .pub-meta-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            color: var(--text-light);
        }
        .pub-meta-item svg { width: 12px; height: 12px; opacity: 0.5; }
        .pub-doi {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--blue-bright);
            background: var(--blue-pale);
            padding: 0.45rem 1rem;
            border-radius: 5px;
            margin-top: 0.5rem;
            transition: var(--transition);
        }
        .pub-doi:hover {
            background: var(--blue-deep);
            color: white;
        }
        .pub-doi svg { width: 13px; height: 13px; }

        /* ============================================
           CTA SECTION
        ============================================ */
        .cta-section {
            background: var(--blue-deep);
            padding: 6rem 0;
            text-align: center;
        }
        .cta-section h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 400;
            color: var(--white);
            margin-bottom: 1rem;
        }
        .cta-section p {
            font-size: 1rem; color: rgba(255,255,255,0.65);
            max-width: 540px; margin: 0 auto 2.5rem;
            line-height: 1.75;
        }
        .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

        /* ============================================
           FOOTER
        ============================================ */
        .footer { background: #060F1A; color: rgba(255,255,255,0.65); padding: 5rem 0 2.5rem; }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3.5rem;
            margin-bottom: 3.5rem;
        }
        .footer-brand { margin-bottom: 1.25rem; }
        .footer-logo-wrap {
            display: flex; align-items: center; gap: 0.75rem;
            margin-bottom: 1.25rem;
        }
        .footer-logo-mark {
            width: 38px; height: 38px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
        }
        .footer-logo-mark svg { width: 20px; height: 20px; }
        .footer-logo-name {
            font-family: var(--font-display);
            font-size: 1.1rem;
            color: rgba(255,255,255,0.9);
            line-height: 1.2;
        }
        .footer-brand p { font-size: 0.83rem; line-height: 1.8; }
        .social-links { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
        .social-links a {
            width: 36px; height: 36px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            transition: var(--transition); color: rgba(255,255,255,0.5);
        }
        .social-links a:hover { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
        .social-links svg { width: 15px; height: 15px; }

        .footer-col h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
        .footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
        .footer-col ul a:hover { color: rgba(255,255,255,0.9); }
        .contact-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; margin-bottom: 0.75rem; }
        .contact-item svg { width: 14px; height: 14px; opacity: 0.4; flex-shrink: 0; margin-top: 0.15rem; }
        .contact-item a { color: rgba(255,255,255,0.55); }
        .contact-item a:hover { color: rgba(255,255,255,0.9); }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.06);
            padding-top: 2rem;
            display: flex; justify-content: space-between; align-items: center;
            flex-wrap: wrap; gap: 0.75rem;
        }
        .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
        .footer-bottom a { color: rgba(255,255,255,0.3); }
        .footer-bottom a:hover { color: rgba(255,255,255,0.7); }

        /* ============================================
           PATIENT STORIES SLIDER
        ============================================ */
        #storiesSlider {
            position: relative;
            margin-top: 3.5rem;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(10,37,64,0.12);
        }
        .pstory-slide { display: none; }
        .pstory-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            height: 510px;
            align-items: stretch;
        }
        .pstory-img-wrap { position: relative; overflow: hidden; }
        .pstory-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
        .pstory-img-overlay { position: absolute; inset: 0; }
        .pstory-badge {
            position: absolute; top: 1.25rem; left: 1.25rem;
            font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
            text-transform: uppercase; color: white;
            padding: 0.3rem 0.85rem; border-radius: 20px; backdrop-filter: blur(4px);
        }
        .pstory-content { padding: 1.75rem 2rem; display: flex; flex-direction: column; justify-content: center; }
        .pstory-quote-mark { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.8rem; color: rgba(255,255,255,0.15); line-height: 0.8; margin-bottom: 0.75rem; }
        .pstory-quote { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 0.97rem; color: rgba(255,255,255,0.9); line-height: 1.75; font-style: italic; margin-bottom: 1rem; flex-grow: 1; }
        .pstory-author { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 0.85rem; }
        .pstory-author-name { font-weight: 600; font-size: 0.95rem; color: white; margin-bottom: 0.2rem; }
        .pstory-author-meta { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
        #psPrev, #psNext {
            position: absolute; top: 50%; transform: translateY(-50%);
            width: 40px; height: 40px; border-radius: 50%;
            background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
            color: white; display: flex; align-items: center; justify-content: center;
            cursor: pointer; backdrop-filter: blur(4px); transition: background 0.3s; z-index: 10;
        }
        #psPrev { left: 1rem; }
        #psNext { right: 1rem; }
        #psPrev:hover, #psNext:hover { background: rgba(255,255,255,0.28); }
        #psCounter { position: absolute; bottom: 1rem; right: 1.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; z-index: 10; }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 992px) {
            .nav-menu { display: none; }
            .nav-menu.open {
                display: flex; flex-direction: column;
                position: absolute; top: 100%; left: 0; right: 0;
                background: var(--white);
                border-top: 1px solid var(--border);
                padding: 1rem;
                box-shadow: var(--shadow-lg);
                gap: 0.25rem;
            }
            .mobile-toggle { display: flex; }
            .navbar { position: relative; }
            .nav-wrapper { position: relative; }
            .about-grid, .condition-content { grid-template-columns: 1fr; gap: 2.5rem; }
            .mission-card, .condition-visual { position: static; }
            .resources-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .stat-item:nth-child(2) { border-right: none; }
            .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
            .stat-item { border-top: 1px solid var(--border); }
            .stat-item:first-child, .stat-item:nth-child(2) { border-top: none; }
            .research-prog-grid { grid-template-columns: 1fr; }
            .research-panel { position: static; }
            .project-cards { grid-template-columns: 1fr; }
            .pub-card-inner { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .pstory-inner { grid-template-columns: 1fr !important; height: auto !important; }
            .pstory-img-wrap { height: 220px; }
            .pstory-img-wrap img { height: 220px !important; object-position: center 20% !important; }
            .pstory-content { padding: 1.25rem !important; }
            .pstory-quote { font-size: 0.9rem !important; margin-bottom: 1rem !important; }
            #psPrev { left: 0.4rem !important; width: 34px !important; height: 34px !important; top: 30% !important; }
            #psNext { right: 0.4rem !important; width: 34px !important; height: 34px !important; top: 30% !important; }
            .research-card-grid { grid-template-columns: 1fr; }
            .subsection-heading { flex-wrap: wrap; }
        }
        @media (max-width: 640px) {
            .hero { height: 100svh; max-height: none; }
            .resources-grid, .footer-grid, .stats-grid { grid-template-columns: 1fr; }
            .stat-item { border-right: none; border-top: 1px solid var(--border); }
            .tab-buttons { overflow-x: auto; }
            .top-bar-left { gap: 1rem; font-size: 0.73rem; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .pstory-img-wrap img { height: 180px !important; }
        }
  .pub-card p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-light);

    /* 🔑 FIXES */
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Tablet */
@media (max-width: 768px) {
    .pub-card p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
}

/*Mobile */
@media (max-width: 480px) {
    .pub-card p {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}
/* 📱 Extra Small Devices (phones < 360px) */
@media (max-width: 360px) {

    .pub-card-inner {
        padding: 0.75rem;
        gap: 0.6rem;
    }

    .pub-title {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .pub-card p {
        font-size: 0.7rem;
        line-height: 1.4;

        /* prevent overflow */
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .pub-meta-row {
        flex-direction: column;
        gap: 0.3rem;
    }

    .pub-meta-item {
        font-size: 0.65rem;
    }

    .pub-status-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
    }

    .pub-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .pub-icon svg {
        width: 18px;
        height: 18px;
    }

    .pub-doi {
        font-size: 0.65rem;
        word-break: break-all;
    }
}












/* ============================================
   GALLERY SLIDER
============================================ */
#gallerySlider {
    position: relative;
    margin-top: 3.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10,37,64,0.14);
    background: var(--blue-deep);
}
.gslide { display: none; }
.gslide.active { display: block; animation: fadeIn 0.5s ease; }
.gslide-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    min-height: 460px;
}
.gslide-img-wrap { position: relative; overflow: hidden; }
.gslide-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gslide-content {
    padding: 3.5rem 3rem;
    display: flex; flex-direction: column;
    justify-content: center;
}
.gslide-tag {
    display: inline-block;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 1rem;
}
.gslide-content h3 {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}
.gslide-content p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.gslide-date {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.03em;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.gslide-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: var(--transition);
    z-index: 10;
}
.gslide-nav:hover { background: rgba(255,255,255,0.28); }
.gslide-prev { left: 1.5rem; }
.gslide-next { right: 1.5rem; }

.gthumb-strip {
    display: flex;
    gap: 0.85rem;
    margin-top: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}
.gthumb {
    flex: 0 0 auto;
    width: 96px; height: 68px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: var(--transition);
}
.gthumb img { width: 100%; height: 100%; object-fit: cover; }
.gthumb:hover { opacity: 0.8; }
.gthumb.active { opacity: 1; border-color: var(--blue-bright); }

@media (max-width: 992px) {
    .gslide-inner { grid-template-columns: 1fr; min-height: auto; }
    .gslide-img-wrap { height: 260px; }
    .gslide-content { padding: 2rem 1.75rem; }
    .gslide-content h3 { font-size: 1.6rem; }
}
@media (max-width: 640px) {
    .gslide-nav { width: 36px; height: 36px; font-size: 1.3rem; }
    .gslide-prev { left: 0.6rem; }
    .gslide-next { right: 0.6rem; }
    .gthumb { width: 76px; height: 54px; }
}

/* ============================================
   TUTH IMAGE SLIDER
============================================ */
#tuthSlider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10,37,64,0.15);
    height: 460px;
}
.tuth-slide { display: none; height: 100%; }
.tuth-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.tuth-slide-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 2rem 2.25rem 1.5rem;
    background: linear-gradient(to top, rgba(10,37,64,0.85), transparent);
}
.tuth-slide-caption {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
}

#tuthPrev, #tuthNext {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.3s;
    z-index: 10;
}
#tuthPrev { left: 1.25rem; }
#tuthNext { right: 1.25rem; }
#tuthPrev:hover, #tuthNext:hover { background: rgba(255,255,255,0.3); }

#tuthCounter {
    position: absolute; top: 1.25rem; right: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.08em;
    background: rgba(10,37,64,0.4);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 10;
}

#tuthDots {
    position: absolute; bottom: 1.5rem; left: 2.25rem;
    display: flex; gap: 0.4rem;
    z-index: 10;
}

#tuthProgressBar {
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255,255,255,0.15);
    z-index: 10;
}
#tuthProgress {
    height: 100%;
    width: 0%;
    background: var(--blue-bright);
}

.tuth-thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}
.tuth-thumb {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
}
.tuth-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tuth-thumb:hover img { transform: scale(1.08); }

@media (max-width: 768px) {
    #tuthSlider { height: 320px; }
    .tuth-slide-overlay { padding: 1.5rem; }
    .tuth-slide-caption { font-size: 0.95rem; }
    #tuthPrev, #tuthNext { width: 36px; height: 36px; }
    #tuthPrev { left: 0.75rem; }
    #tuthNext { right: 0.75rem; }
    .tuth-thumb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    #tuthSlider { height: 240px; }
    #tuthDots { left: 1.25rem; }
}

/* ---- Neurology Faculty ---- */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.faculty-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem 1.85rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}
.faculty-card:hover {
    border-color: var(--blue-bright);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.faculty-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--blue-bright);
    opacity: 0.22;
    line-height: 1;
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
}
.faculty-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 0.25rem;
    padding-right: 2.5rem;
}
.faculty-role {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 1.25rem;
}
.faculty-meta { display: flex; flex-direction: column; gap: 1rem; flex-grow: 1; }
.faculty-meta h5 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.35rem;
}
.faculty-meta p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin: 0;
}
.faculty-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.faculty-tag {
    font-size: 0.76rem;
    color: var(--blue-mid);
    background: var(--blue-pale);
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    line-height: 1.5;
}
.faculty-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-size: 0.84rem;
    word-break: break-all;
}
.faculty-contact svg { width: 14px; height: 14px; opacity: 0.45; flex-shrink: 0; color: var(--text-light); }

@media (max-width: 992px) { .faculty-grid { grid-template-columns: 1fr; } }


/* ---- Partner hospital: single ---- */

.partner-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.partner-split .clinical-img-wrap {
    aspect-ratio: auto;
    width: 100%;
}

.partner-split .clinical-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.partner-split .faculty-card {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .partner-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}


```css
/* ==========================================
   COMMUNITY SOCIAL BUTTONS
========================================== */

.community-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
}

/* Button */
.community-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 11px 13px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

/* Icon */
.community-btn-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 19px;
    transition: all 0.25s ease;
}

/* Text */
.community-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
    flex: 1;
}

.community-btn-text strong {
    font-size: 13.5px;
    font-weight: 650;
    color: #263238;
}

.community-btn-text small {
    margin-top: 2px;
    font-size: 11px;
    color: #7b858c;
}

/* Arrow */
.community-btn-arrow {
    font-size: 20px;
    color: #a0a7ab;
    padding-right: 3px;
    transition: transform 0.25s ease;
}

/* ==========================================
   WHATSAPP
========================================== */

.whatsapp-btn .community-btn-icon {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
}

.whatsapp-btn:hover {
    border-color: rgba(37, 211, 102, 0.35);
    box-shadow: 0 5px 18px rgba(37, 211, 102, 0.12);
    transform: translateY(-2px);
}

.whatsapp-btn:hover .community-btn-icon {
    background: #25D366;
    color: #ffffff;
}

.whatsapp-btn:hover .community-btn-arrow {
    color: #25D366;
    transform: translateX(4px);
}

/* ==========================================
   FACEBOOK
========================================== */

.facebook-btn .community-btn-icon {
    background: rgba(24, 119, 242, 0.10);
    color: #1877F2;
}

.facebook-btn:hover {
    border-color: rgba(24, 119, 242, 0.30);
    box-shadow: 0 5px 18px rgba(24, 119, 242, 0.12);
    transform: translateY(-2px);
}

.facebook-btn:hover .community-btn-icon {
    background: #1877F2;
    color: #ffffff;
}

.facebook-btn:hover .community-btn-arrow {
    color: #1877F2;
    transform: translateX(4px);
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .community-btn {
        padding: 10px 11px;
        border-radius: 10px;
    }

    .community-btn-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .community-btn-text strong {
        font-size: 13px;
    }

    .community-btn-text small {
        font-size: 10.5px;
    }
}
```
