﻿/* ================================================================
   SURGEINE HEALTHCARE â€“ CUSTOM BRAND STYLESHEET
   Inspired by the icumed.com premium corporate aesthetic.
   Works standalone (no Tailwind build required).
   tw- prefixed Tailwind utilities are generated via: npm run build
   ================================================================ */

/* â”€â”€ 1. CSS Design Tokens â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
    /* Brand palette */
    --sh-navy:          #0A2342;
    --sh-navy-mid:      #1C3A6B;
    --sh-navy-light:    #2C5296;
    --sh-cyan:          #00A9CE;
    --sh-cyan-dark:     #0087A8;
    --sh-cyan-light:    #E0F7FC;

    /* Neutrals */
    --sh-white:         #FFFFFF;
    --sh-gray-50:       #F8FAFC;
    --sh-gray-100:      #EDF2F7;
    --sh-gray-200:      #E2E8F0;
    --sh-gray-400:      #A0AEC0;
    --sh-gray-600:      #718096;
    --sh-gray-700:      #4A5568;
    --sh-gray-900:      #1A202C;

    /* Typography */
    --sh-font-sans:     'Lato', 'Helvetica Neue', Arial, sans-serif;
    --sh-font-heading:  'Merriweather', Georgia, 'Times New Roman', serif;

    /* Spacing */
    --sh-section-y:     80px;
    --sh-section-y-sm:  50px;

    /* Shadows */
    --sh-shadow-sm:     0 2px 8px rgba(10,35,66,.08);
    --sh-shadow-md:     0 4px 20px rgba(10,35,66,.12);
    --sh-shadow-lg:     0 8px 40px rgba(10,35,66,.16);
    --sh-shadow-hover:  0 12px 48px rgba(0,169,206,.20);

    /* Radii */
    --sh-radius-sm:     6px;
    --sh-radius-md:     12px;
    --sh-radius-lg:     20px;
    --sh-radius-xl:     28px;

    /* Transitions */
    --sh-trans:         all .3s cubic-bezier(.4,0,.2,1);
}

/* Hide splash instantly on pages after first visit */
.sh-splash-seen #sh-splash { display: none !important; }

/* ── 1b. Splash Screen ─────────────────────────────────────── */
.sh-splash-premium {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    overflow: hidden;
    background: #060f1c;
}
/* Background video */
.sh-splash-bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    animation: sh-video-fadein 1.2s ease-out 0.3s forwards;
}
@keyframes sh-video-fadein {
    to { opacity: 1; }
}
/* Dark gradient overlay for readability */
.sh-splash-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(6,15,28,0.82) 0%,
        rgba(10,35,66,0.70) 40%,
        rgba(28,58,107,0.60) 60%,
        rgba(10,35,66,0.78) 80%,
        rgba(6,15,28,0.88) 100%
    );
}
/* Foreground content sits above video + overlay */
.sh-splash-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.sh-splash-premium.sh-splash--out {
    animation: sh-splash-fadeout 0.8s ease-out forwards;
}
/* Logo */
.sh-splash-logo-wrap {
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 6px rgba(255,255,255,.18), 0 0 40px rgba(0,169,206,.5), 0 8px 32px rgba(0,0,0,.4);
    animation: sh-logo-in 0.9s cubic-bezier(.22,.97,.5,1.3) both;
}
.sh-splash-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
}
/* Title */
.sh-splash-title {
    font-family: var(--sh-font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    margin: 0;
    letter-spacing: 4px;
    text-shadow: 0 10px 40px rgba(0,0,0,.7), 0 0 80px rgba(0,169,206,.4);
    line-height: 1.1;
    position: relative;
}
.sh-splash-title::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; height: 150%;
    background: radial-gradient(ellipse at center, rgba(0,169,206,.18) 0%, transparent 70%);
    z-index: -1;
    animation: sh-glow-pulse 3s ease-in-out infinite;
}
.sh-splash-title .sh-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(24px);
    animation: sh-letter-full 0.9s cubic-bezier(.22,.97,.5,1.2) both;
    animation-delay: var(--sh-delay, 0s);
}
.sh-splash-title .sh-word-gap { display: inline-block; width: 0.3em; }
/* Subtitle */
.sh-splash-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.92);
    margin-top: 16px;
    margin-bottom: 40px;
    text-shadow: 0 2px 12px rgba(0,0,0,.5);
    animation: sh-subtitle-in 0.8s ease-out 0.4s both;
    letter-spacing: 0.5px;
}
/* Loader */
.sh-splash-loader {
    width: 50px; height: 50px;
    margin: 0 auto;
    border: 4px solid rgba(255,255,255,.25);
    border-top: 4px solid var(--sh-cyan);
    border-radius: 50%;
    animation: sh-spin 1s linear infinite;
    box-shadow: 0 0 16px rgba(0,169,206,.4);
}
/* Keyframes */
@keyframes sh-splash-fadeout {
    0%   { opacity: 1; visibility: visible; }
    99%  { opacity: 0; visibility: visible; }
    100% { opacity: 0; visibility: hidden; pointer-events: none; }
}
@keyframes sh-logo-in {
    from { opacity: 0; transform: scale(0.7) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes sh-letter-full {
    0%   { opacity: 0; transform: translateY(24px); }
    45%  { opacity: 1; transform: translateY(-8px); }
    65%  { transform: translateY(3px); }
    80%  { transform: translateY(-4px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes sh-subtitle-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes sh-glow-pulse {
    0%,100% { opacity: .5; }
    50%      { opacity: 1; }
}
@keyframes sh-spin {
    to { transform: rotate(360deg); }
}
/* Responsive */
@media (max-width: 1024px) { .sh-splash-title { font-size: 3.5rem; letter-spacing: 2px; } }
@media (max-width: 768px)  { .sh-splash-title { font-size: 2.8rem; letter-spacing: 1.5px; } }
@media (max-width: 576px)  { .sh-splash-title { font-size: 2rem; letter-spacing: 1px; } .sh-splash-logo-wrap { width: 130px; height: 130px; } .sh-splash-logo { width: 88px; height: 88px; } }
@media (max-width: 400px)  { .sh-splash-title { font-size: 1.5rem; letter-spacing: 0.5px; } }
/* ── 1c. Page Loader (every page) ───────────────────────────── */
#sh-page-loader {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(255,255,255,0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .4s ease, visibility .4s ease;
}
#sh-page-loader.sh-loader--done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.sh-page-loader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.sh-page-loader__ring {
    width: 52px;
    height: 52px;
    border: 4px solid var(--sh-gray-200, #e9ecef);
    border-top-color: var(--sh-cyan, #00a9ce);
    border-radius: 50%;
    animation: sh-spin 0.8s linear infinite;
}
.sh-page-loader__msg {
    font-family: var(--sh-font-sans, 'Lato', sans-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--sh-navy, #0A2342);
    letter-spacing: 0.5px;
}
.sh-page-loader__dots span {
    display: inline-block;
    animation: sh-dot-blink 1.2s infinite both;
}
.sh-page-loader__dots span:nth-child(2) { animation-delay: .2s; }
.sh-page-loader__dots span:nth-child(3) { animation-delay: .4s; }
@keyframes sh-dot-blink {
    0%,80%,100% { opacity: 0; }
    40%          { opacity: 1; }
}


/* â”€â”€ 2. Base Reset & Typography â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,*::before,*::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: var(--sh-font-sans);
    color: var(--sh-gray-700);
    background: var(--sh-white);
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    letter-spacing: 0.01em;
    margin: 0;
    padding: 0;
}

/* Prevent any child from breaking out of viewport */
section, div, header, footer, nav {
    max-width: 100%;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--sh-font-heading);
    color: var(--sh-navy);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 900; }
h2 { font-size: clamp(24px, 3vw, 38px);   font-weight: 700; }
h3 { font-size: clamp(18px, 2.2vw, 24px); font-weight: 700; }
h4 { font-size: clamp(16px, 1.8vw, 20px); font-weight: 700; }
h5 { font-size: 17px;                      font-weight: 600; }
h6 { font-size: 15px;                      font-weight: 600; }

p  { font-size: 16px; line-height: 1.8; color: var(--sh-gray-700); margin-bottom: 14px; }
li { font-size: 16px; line-height: 1.75; color: var(--sh-gray-700); }

a { text-decoration: none; transition: var(--sh-trans); }
a:hover { color: var(--sh-cyan); }

img { max-width: 100%; height: auto; }

/* â”€â”€ 3. Utility Classes â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-section { padding: var(--sh-section-y) 0; }
.sh-section--sm { padding: var(--sh-section-y-sm) 0; }
.sh-section--navy { background: var(--sh-navy); }
.sh-section--gray { background: var(--sh-gray-50); }
.sh-section--dark-gray { background: var(--sh-gray-100); }
.sh-section--white { background: var(--sh-white); }

html, body {
    background: var(--sh-white);
}

.sh-page-hero__bg,
.sh-parallax-bg {
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
}

.sh-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--sh-cyan) 0%, var(--sh-navy-mid) 100%);
    padding: 6px 20px 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
    box-shadow: 0 4px 18px rgba(0,169,206,.38), 0 1px 4px rgba(10,35,66,.18);
}
.sh-label::before {
    content: '';
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    opacity: .9;
    animation: sh-label-pulse 2s ease-in-out infinite;
}
@keyframes sh-label-pulse {
    0%, 100% { transform: scale(1);   opacity: .9; }
    50%       { transform: scale(1.5); opacity: .5; }
}

.sh-section-title {
    font-family: var(--sh-font-heading);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    color: var(--sh-navy);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.sh-section-subtitle {
    font-family: var(--sh-font-sans);
    font-size: 17px;
    color: var(--sh-gray-600);
    max-width: 640px;
    line-height: 1.8;
    font-weight: 400;
}

.sh-divider {
    width: 52px;
    height: 4px;
    background: linear-gradient(90deg, var(--sh-navy), var(--sh-cyan));
    border-radius: 2px;
    margin: 12px 0 20px;
}
.sh-divider--center { margin-left: auto; margin-right: auto; }

.sh-job-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
    padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sh-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
}
.sh-job-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.sh-job-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 10px;
}
.sh-job-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.94rem;
    color: var(--sh-gray-600);
}
.sh-job-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.sh-job-card__meta i {
    color: var(--sh-cyan);
    font-size: 0.88rem;
}
.sh-job-card__cta {
    white-space: nowrap;
    padding: 14px 26px;
}
.sh-job-card__desc {
    margin: 0;
    color: var(--sh-gray-700);
    line-height: 1.8;
    max-width: 100%;
}

/* â”€â”€ 4. Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: var(--sh-radius-sm);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .03em;
    border: 2px solid transparent;
    transition: var(--sh-trans);
    cursor: pointer;
}

.sh-btn--navy {
    background: var(--sh-navy);
    color: #fff;
    border-color: var(--sh-navy);
}
.sh-btn--navy:hover {
    background: var(--sh-navy-mid);
    color: #fff;
    border-color: var(--sh-navy-mid);
}

.sh-btn--cyan {
    background: var(--sh-cyan);
    color: #fff;
    border-color: var(--sh-cyan);
}
.sh-btn--cyan:hover {
    background: var(--sh-cyan-dark);
    color: #fff;
    border-color: var(--sh-cyan-dark);
}

.sh-btn--outline-navy {
    background: transparent;
    color: var(--sh-navy);
    border-color: var(--sh-navy);
}
.sh-btn--outline-navy:hover {
    background: var(--sh-navy);
    color: #fff;
}

.sh-btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.7);
}
.sh-btn--outline-white:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
}

/* â”€â”€ 5. Navbar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-navbar {
    background: var(--sh-white);
    box-shadow: 0 2px 16px rgba(10,35,66,.10);
    padding: 0;
    z-index: 1050;
    transition: var(--sh-trans);
}

.sh-navbar.scrolled {
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(10,35,66,.13);
}

.sh-navbar__brand { padding: 12px 0; }

.sh-navbar__logo {
    /* height: 52px; */
    width: 125px;
    object-fit: contain;
}

.sh-navbar__toggler {
    border: none;
    background: transparent;
    padding: 6px;
    color: var(--sh-navy);
}
.sh-navbar__toggler:focus { box-shadow: none; }
.sh-navbar__toggler-icon { font-size: 22px; }

.sh-nav-link {
    font-family: var(--sh-font-sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--sh-navy) !important;
    padding: 22px 13px !important;
    position: relative;
    transition: var(--sh-trans);
    white-space: nowrap;
}
.sh-nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 13px;
    right: 13px;
    height: 3px;
    background: var(--sh-cyan);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transition: transform .3s ease;
}
.sh-nav-link:hover::after,
.sh-nav-link.active::after { transform: scaleX(1); }
.sh-nav-link:hover { color: var(--sh-cyan) !important; }
.sh-nav-caret { font-size: 10px; margin-left: 4px; }

/* Bootstrap dropdown override */
.sh-dropdown {
    border: none;
    border-radius: var(--sh-radius-md);
    box-shadow: var(--sh-shadow-lg);
    padding: 8px 0;
    min-width: 220px;
    top: calc(100% + 2px);
}
.sh-dropdown__item {
    font-size: 14px;
    font-weight: 500;
    color: var(--sh-gray-700);
    padding: 9px 20px;
    transition: var(--sh-trans);
}
.sh-dropdown__item:hover {
    color: var(--sh-cyan);
    background: var(--sh-cyan-light);
}

/* Mega-menu */
.sh-mega-parent { position: relative !important; }
.sh-megamenu {
    position: absolute;
    left: 0;
    top: calc(100% - 2px);
    width: max-content;
    min-width: 220px;
    max-width: calc(100vw - 40px);
    background: var(--sh-white);
    box-shadow: var(--sh-shadow-lg);
    border-radius: 0 0 var(--sh-radius-md) var(--sh-radius-md);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .25s ease, transform .25s ease;
}
.sh-megamenu .container-xl {
    max-width: none;
    width: auto;
    padding: 0 8px;
}
.sh-megamenu .row {
    flex-wrap: nowrap;
}
.sh-megamenu [class*="col-lg-"] {
    flex: 0 0 auto;
    width: auto;
    min-width: 190px;
    max-width: 260px;
}
.sh-mega-parent:hover .sh-megamenu,
.sh-mega-parent:focus-within .sh-megamenu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.sh-megamenu__inner { padding: 14px 0; }
.sh-megamenu__col {
    padding: 0 14px;
    border-right: 1px solid var(--sh-gray-200);
}
.sh-megamenu__col:last-child { border-right: none; }

.sh-megamenu__heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--sh-navy);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--sh-cyan);
}

.sh-megamenu__link {
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--sh-gray-700);
    padding: 8px 10px;
    border-radius: var(--sh-radius-sm);
    transition: var(--sh-trans);
    text-decoration: none;
}
.sh-megamenu__link:hover {
    color: var(--sh-cyan);
    background: var(--sh-cyan-light);
    padding-left: 14px;
}

/* Parent category label â€” bold, navy, not hoverable */
.sh-megamenu__link--parent {
    font-size: 14px;
    font-weight: 700;
    color: var(--sh-navy);
    padding-bottom: 4px;
    margin-bottom: 2px;
    border-bottom: 1px solid var(--sh-gray-200);
    pointer-events: auto;
}
.sh-megamenu__link--parent:hover {
    color: var(--sh-cyan);
    background: var(--sh-cyan-light);
    padding-left: 14px;
}

/* Sub-item â€” indented, smaller, muted */
.sh-megamenu__link--sub {
    font-size: 12.5px;
    font-weight: 400;
    color: var(--sh-gray-600);
    padding: 5px 10px 5px 20px;
    position: relative;
}
.sh-megamenu__link--sub::before {
    content: 'â€“';
    position: absolute;
    left: 8px;
    color: var(--sh-cyan);
    font-size: 11px;
}
.sh-megamenu__link--sub:hover {
    color: var(--sh-navy);
    background: var(--sh-cyan-light);
    padding-left: 24px;
}

/* Mobile sub-items â€” indented */
.sh-mobile-submenu__link--sub {
    padding-left: 32px !important;
    font-size: 13px !important;
    color: var(--sh-gray-600) !important;
    font-weight: 400 !important;
    position: relative;
}
.sh-mobile-submenu__link--sub::before {
    content: 'â€“';
    position: absolute;
    left: 18px;
    color: var(--sh-cyan);
}

.sh-megamenu__cta-box {
    background: var(--sh-gray-50);
    border-radius: var(--sh-radius-md);
    padding: 16px;
    border-left: 3px solid var(--sh-cyan);
}
.sh-megamenu__cta-text {
    font-size: 13px;
    color: var(--sh-gray-700);
    margin-bottom: 10px;
}

.sh-nav-cta {
    font-size: 13px !important;
    padding: 10px 20px !important;
}

/* â”€â”€ 6. Hero Slider â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-hero {
    position: relative;
    overflow: hidden;
}
.sh-hero .swiper { width: 100%; }
.sh-hero .swiper-slide {
    position: relative;
    height: 88vh;
    min-height: 520px;
    max-height: 820px;
}
.sh-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.92) contrast(0.95) saturate(0.88);
}
.sh-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0,60,140,.60) 0%,
        rgba(0,80,180,.45) 55%,
        rgba(0,50,120,.35) 100%
    );
    z-index: 1;
}
.sh-hero__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    font-size: 15px;
    line-height: 1.7;
    padding: 0 5% 80px;
}
.sh-hero__inner { max-width: 640px; }
.sh-hero__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--sh-cyan);
    background: rgba(0,169,206,.18);
    border: 1px solid rgba(0,169,206,.4);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.sh-hero__title {
    font-family: var(--sh-font-heading);
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.015em;
}
.sh-hero__title span { color: var(--sh-cyan); }
.sh-hero__desc {
    font-family: var(--sh-font-sans);
    font-size: 17px;
    color: rgba(255,255,255,.90);
    margin-bottom: 32px;
    line-height: 1.85;
    font-weight: 400;
}
.sh-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero swiper navigation */
.sh-hero .swiper-button-next,
.sh-hero .swiper-button-prev {
    color: #fff;
    background: rgba(10,35,66,.50);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.3);
    transition: var(--sh-trans);
}
.sh-hero .swiper-button-next:hover,
.sh-hero .swiper-button-prev:hover { background: var(--sh-cyan); }
.sh-hero .swiper-button-next::after,
.sh-hero .swiper-button-prev::after { font-size: 16px; }
.sh-hero .swiper-pagination-bullet { background: #fff; opacity: .5; }
.sh-hero .swiper-pagination-bullet-active { background: var(--sh-cyan); opacity: 1; }

/* â”€â”€ 7. Stats Counter Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-stats-bar {
    padding: 28px 0;
    position: relative;
    z-index: 5;
}
.sh-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 767px) {
    .sh-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
    .sh-stats-grid { grid-template-columns: 1fr; }
}
.sh-stat-item {
    background: #fff;
    border: 1px solid #e4eaf2;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 4px 18px rgba(10,35,66,.09);
    transition: box-shadow .25s ease, transform .25s ease;
}
.sh-stat-item:hover {
    box-shadow: 0 10px 32px rgba(10,35,66,.16);
    transform: translateY(-3px);
}
.sh-stat-item__body {
    display: flex;
    flex-direction: column;
}
.sh-stat-item__label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7c9a;
    margin-bottom: 4px;
    display: block;
}
.sh-stat-item__num {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: var(--sh-navy);
    line-height: 1;
    display: block;
}
.sh-stat-item__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.sh-stat-item__icon i {
    font-size: 22px;
    color: #3B6BE8;
}

/* â”€â”€ 8. Product Showcase Slider â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-products-swiper {
    overflow: visible !important;
    padding: 12px 4px 8px !important;
}
.sh-products-slider .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--sh-trans);
}
.sh-product-card {
    background: var(--sh-white);
    border-radius: var(--sh-radius-md);
    border: 1px solid var(--sh-gray-200);
    box-shadow: 0 6px 0 rgba(10,35,66,.15), var(--sh-shadow-md);
    position: relative;
    transition: var(--sh-trans);
    cursor: pointer;
    overflow: hidden;
}
.sh-product-card:hover {
    box-shadow: 0 10px 0 rgba(0,169,206,.25), var(--sh-shadow-hover);
    transform: translateY(-6px);
    border-color: rgba(0,169,206,.4);
}
.sh-product-card__img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    padding: 24px;
    background: var(--sh-gray-50);
    border-radius: 0;
    display: block;
}
.sh-product-card__body {
    padding: 16px 20px 20px;
    text-align: center;
}
.sh-product-card__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--sh-navy);
    margin-bottom: 8px;
}
.sh-product-card__link {
    font-size: 12px;
    font-weight: 700;
    color: var(--sh-cyan);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.sh-product-card__link i { margin-left: 4px; }

/* â”€â”€ 9. About Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-about__video-wrap {
    border-radius: var(--sh-radius-xl);
    overflow: hidden;
    box-shadow: var(--sh-shadow-lg);
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.sh-about__video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* â”€â”€ 10. Feature Cards (Why Choose / Belief/Beginning/Solution/Purpose) â”€â”€ */
.sh-feature-card__icon-box {
    position: absolute;
    top: -22px;
    left: 22px;
    width: 48px;
    height: 48px;
    background: var(--sh-cyan);
    border-radius: var(--sh-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sh-feature-card__icon-box img { width: 24px; filter: brightness(0) invert(1); }
.sh-feature-card__icon-box i { color: #fff; font-size: 20px; }
/* â”€â”€ 11. Info Cards (First in India) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-info-card {
    background: var(--sh-white);
    border-radius: 0;
    position: relative;
    box-shadow: none;
    transition: var(--sh-trans);
    height: 100%;
}
.sh-info-card:hover { box-shadow: none; transform: none; }
.sh-info-card__img-wrap {
    height: 350px;
    overflow: hidden;
    border-radius: 0;
}
.sh-info-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.sh-info-card__body { padding: 28px 28px 32px; }
.sh-info-card__heading {
    font-family: var(--sh-font-heading);
    font-size: 21px;
    font-weight: 700;
    color: var(--sh-navy);
    margin-bottom: 6px;
}
.sh-info-card__divider {
    width: 100%;
    height: 1px;
    background: var(--sh-gray-200);
    margin: 14px 0;
}
.sh-info-card__list { list-style: none; padding: 0; margin: 0 0 24px; }
.sh-info-card__list li {
    font-size: 15px;
    color: var(--sh-gray-700);
    padding: 7px 0 7px 22px;
    position: relative;
    border-bottom: 1px dashed var(--sh-gray-200);
}
.sh-info-card__list li:last-child { border-bottom: none; }
.sh-info-card__list li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--sh-cyan);
}

/* â”€â”€ 12. Trust / Global Stats (Bluish Image Background) â”€â”€â”€â”€â”€ */
.sh-trust-section {
    padding: var(--sh-section-y) 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.sh-trust-parallax-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.65;
    background: rgba(255,255,255,.72);
}
.sh-trust-section::after {
    display: none;
}
.sh-trust-section .container-xl {
    position: relative;
    z-index: 2;
}
.sh-trust-section .sh-section-title {
    color: #0a2342 !important;
}
.sh-trust-section .sh-trust-stat__label {
    color: #0a2342;
}
.sh-trust-section .sh-trust-stat__icon {
    background: var(--sh-cyan);
    border-color: var(--sh-cyan);
}
.sh-trust-section .sh-trust-stat__icon i {
    color: #fff;
}
.sh-trust-section .sh-trust-stat__icon img {
    filter: brightness(0) invert(1);
}
.sh-trust-section .sh-divider {
    background: linear-gradient(90deg, #0a2342, #00A9CE);
}
.sh-trust-stat {
    text-align: center;
    padding: 20px;
}
.sh-trust-stat__icon {
    width: 70px;
    height: 70px;
    background: rgba(0,169,206,.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid rgba(0,169,206,.16);
    transition: var(--sh-trans);
}
.sh-trust-stat__icon img { width: 36px; filter: brightness(0) invert(1); }
.sh-trust-stat__icon i { font-size: 28px; color: var(--sh-cyan); }
.sh-trust-stat:hover .sh-trust-stat__icon {
    background: var(--sh-navy);
    transform: scale(1.12);
    border-color: var(--sh-navy);
}
.sh-trust-stat:hover .sh-trust-stat__icon i { color: #fff; }
.sh-trust-stat__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--sh-gray-700);
    line-height: 1.4;
}

/* â”€â”€ 13. Quality / Certifications Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 16px;
}
/* 5-card layout: 3 in row 1, 2 centered in row 2 */
.sh-cert-grid--5 {
    grid-template-columns: repeat(6, 1fr);
}
.sh-cert-grid--5 .sh-cert-card:nth-child(1) { grid-column: 1 / 3; }
.sh-cert-grid--5 .sh-cert-card:nth-child(2) { grid-column: 3 / 5; }
.sh-cert-grid--5 .sh-cert-card:nth-child(3) { grid-column: 5 / 7; }
.sh-cert-grid--5 .sh-cert-card:nth-child(4) { grid-column: 2 / 4; }
.sh-cert-grid--5 .sh-cert-card:nth-child(5) { grid-column: 4 / 6; }
.sh-cert-card {
    background: var(--sh-white);
    border-radius: 10px;
    padding: 14px 14px 12px;
    box-shadow: 0 2px 12px rgba(10,35,66,.07);
    border: 1px solid var(--sh-gray-200);
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.sh-cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(10,35,66,.13);
    border-color: transparent;
}
.sh-cert-card img {
    width: 100%;
    height: 130px;
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
}
.sh-cert-card__name {
    font-size: 12px;
    font-weight: 700;
    color: var(--sh-navy);
    margin: 0;
}

/* â”€â”€ 14. Brands Slider â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-brands-section { background: var(--sh-white); border-top: none; border-bottom: none; }
.sh-brand-item {
    text-align: center;
    padding: 20px 16px;
    transition: var(--sh-trans);
    cursor: pointer;
    text-decoration: none;
    display: block;
    border-radius: 12px;
}
a.sh-brand-item:hover {
    background: var(--sh-gray-50);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(10,35,66,.08);
}
a.sh-brand-item:hover .sh-brand-item__label {
    color: var(--sh-navy);
}
.sh-brand-item img {
    max-height: 70px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(60%);
    opacity: .75;
    transition: var(--sh-trans);
    margin: 0 auto 10px;
    display: block;
}
.sh-brand-item:hover img { filter: none; opacity: 1; transform: none; }
.sh-brand-item__label { font-size: 12px; color: var(--sh-gray-600); font-weight: 500; }
.sh-brands-marquee-wrap {
    width: 100%;
    overflow: hidden;
}
.sh-brands-swiper--marquee {
    width: 100%;
}
.sh-brands-swiper--marquee .swiper-wrapper {
    transition-timing-function: linear !important;
}
.sh-brands-swiper--marquee .swiper-slide {
    width: 250px;
}
.sh-brands-swiper--marquee .sh-brand-item {
    padding: 18px 22px;
}
.sh-brands-swiper--marquee .sh-brand-item img {
    max-height: 92px;
    max-width: 200px;
    filter: none;
    opacity: 1;
}
.sh-brands-swiper--marquee .sh-brand-item__label {
    font-size: 13px;
    color: var(--sh-gray-700);
}

/* â”€â”€ 15. Blog / News Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-blog-card {
    background: var(--sh-white);
    border-radius: 0;
    position: relative;
    box-shadow: none;
    border: none;
    transition: var(--sh-trans);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.sh-blog-card:hover {
    box-shadow: none;
    transform: none;
    border-color: transparent;
}
.sh-blog-card__img-wrap { height: 210px; overflow: hidden; }
.sh-blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sh-blog-card__body {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.sh-blog-card__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--sh-cyan);
    margin-bottom: 8px;
}
.sh-blog-card__title {
    font-family: var(--sh-font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--sh-navy);
    margin-bottom: 10px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sh-blog-card__excerpt {
    font-family: var(--sh-font-sans);
    font-size: 14.5px;
    color: var(--sh-gray-600);
    line-height: 1.75;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sh-blog-card__read-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--sh-cyan);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}
.sh-blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.sh-blog-card__date {
    font-size: 12px;
    color: var(--sh-gray-500, #6b7280);
    font-family: var(--sh-font-sans);
}

/* Blog filter buttons */
.sh-blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.sh-blog-filter-btn {
    background: #fff;
    color: var(--sh-navy);
    border: 1.5px solid var(--sh-navy);
    border-radius: 50px;
    padding: 7px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s, color .18s;
    font-family: var(--sh-font-sans);
}
.sh-blog-filter-btn:hover,
.sh-blog-filter-btn.active {
    background: var(--sh-navy);
    color: #fff;
}

/* â”€â”€ 16. CTA Banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-cta-banner {
    background: linear-gradient(135deg, var(--sh-navy) 0%, var(--sh-cyan-dark) 100%);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sh-cta-banner::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.sh-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.sh-cta-banner__title {
    font-family: var(--sh-font-heading);
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.sh-cta-banner__desc {
    font-family: var(--sh-font-sans);
    font-size: 17px;
    color: rgba(255,255,255,.87);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

/* â”€â”€ 17. Page Hero (inner pages) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-page-hero {
    position: relative;
    height: 55vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.sh-page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: right center;
    filter: brightness(0.94) contrast(0.96) saturate(0.9);
}
.sh-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7,22,48,.80) 0%, rgba(10,35,66,.65) 100%);
}
.sh-page-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ── Standard page-hero parts ──
   These were copy-pasted as inline styles across ~9 templates, which is
   how one of them drifted to a different subtitle max-width. */
.sh-page-hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.92) 32%,
        rgba(255, 255, 255, 0.55) 55%,
        rgba(255, 255, 255, 0) 70%,
        rgba(10, 35, 66, 0.55) 100%);
    pointer-events: none;
    z-index: 1;
}
.sh-page-hero__heading {
    font-family: var(--sh-font-sans);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: var(--sh-navy);
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
/* Only the Products hero held its title on one line. */
.sh-page-hero__heading--nowrap {
    white-space: nowrap;
}
.sh-page-hero__rule {
    width: 52px;
    height: 4px;
    background: var(--sh-cyan);
    border-radius: 2px;
    margin-bottom: 18px;
}
.sh-page-hero__subtitle {
    font-family: var(--sh-font-sans);
    font-size: 16px;
    color: var(--sh-gray-700);
    line-height: 1.7;
    max-width: 340px;
    margin-bottom: 0;
}
/* Brand heroes hold the title to half the container so it wraps clear
   of the product artwork on the right. */
.sh-page-hero--brand .sh-page-hero__heading {
    max-width: 50%;
}

/* Brand heroes carry the brand's own logo above the title. */
.sh-page-hero__logo {
    max-height: 70px;
    max-width: 260px;
    object-fit: contain;
    display: block;
    margin: 0 0 18px;
}

.sh-page-hero__title {
    font-family: var(--sh-font-heading);
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.sh-breadcrumb { margin: 0; }
.sh-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.80); }
.sh-breadcrumb .breadcrumb-item a:hover { color: var(--sh-cyan); }
.sh-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.60); }

/* Breadcrumb bar above banner */
.sh-breadcrumb-bar { background: var(--sh-gray-100); border-bottom: 1px solid var(--sh-gray-200); padding: 10px 0; }
.sh-breadcrumb-bar .sh-breadcrumb { display:flex; flex-wrap:nowrap; align-items:center; margin:0; padding:0; list-style:none; }
.sh-breadcrumb-bar .sh-breadcrumb .breadcrumb-item { display:flex; align-items:center; line-height:1; padding:0; margin:0; white-space:nowrap; }
.sh-breadcrumb-bar .sh-breadcrumb .breadcrumb-item a { color: var(--sh-navy); font-size:13px; font-family:var(--sh-font-sans); line-height:1; text-decoration:none; display:inline-block; }
.sh-breadcrumb-bar .sh-breadcrumb .breadcrumb-item a:hover { color: var(--sh-cyan); }
.sh-breadcrumb-bar .sh-breadcrumb .breadcrumb-item.active { color: var(--sh-gray-600); font-size:13px; font-family:var(--sh-font-sans); line-height:1; display:inline-block; }
.sh-breadcrumb-bar .sh-breadcrumb .breadcrumb-item+.breadcrumb-item::before { content:"/"; color: var(--sh-gray-400); font-size:13px; padding:0 8px; line-height:1; display:inline-block; }

/* â”€â”€ 18. Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-footer {
    background: #050f1c;
    color: rgba(255,255,255,.8);
}
.sh-footer__top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.sh-footer__logo {
    width: 125px; 
    object-fit: contain; 
    background: white;
    border-radius:5px;
}
.sh-footer__tagline {
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(255,255,255,.65);
    margin: 14px 0 20px;
    max-width: 340px;
}
.sh-footer__social { display: flex; gap: 10px; }
.sh-footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.75);
    font-size: 15px;
    transition: var(--sh-trans);
}
.sh-footer__social a:hover {
    background: var(--sh-cyan);
    border-color: var(--sh-cyan);
    color: #fff;
}
.sh-footer__lang { margin-top: 24px; }
.sh-footer__lang .sh-footer__heading { margin-bottom: 8px; }
.sh-footer__lang #google_translate_element { max-width: 220px; }
/* Google injects its own iframe/skiptranslate markup we don't control the class names of. */
.sh-footer__lang .goog-te-gadget { color: rgba(255,255,255,.6) !important; font-size: 11px !important; }
.sh-footer__lang .goog-te-gadget .goog-te-combo {
    max-width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.2);
    background: #fff;
    color: #1a1a1a;
}
.sh-footer__heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--sh-cyan);
    margin-bottom: 18px;
}
.sh-footer__links { list-style: none; padding: 0; margin: 0; }
.sh-footer__links li { margin-bottom: 10px; }
.sh-footer__links a {
    font-size: 13.5px;
    color: rgba(255,255,255,.6);
    transition: var(--sh-trans);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.sh-footer__links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--sh-cyan);
    transition: width .25s ease;
}
.sh-footer__links a:hover {
    color: var(--sh-cyan);
    padding-left: 4px;
}
.sh-footer__links a:hover::before { width: 8px; }
.sh-footer__contact { list-style: none; padding: 0; margin: 0; }
.sh-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13.5px;
    color: rgba(255,255,255,.65);
}
.sh-footer__contact i {
    color: var(--sh-cyan);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}
.sh-footer__contact a { color: rgba(255,255,255,.65); }
.sh-footer__contact a:hover { color: var(--sh-cyan); }
.sh-footer__bottom {
    padding: 18px 0;
}
.sh-footer__copy {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    margin: 0;
}
.sh-footer__cert-note {
    font-size: 12px;
    color: rgba(255,255,255,.35);
    margin: 0;
}

/* â”€â”€ 19. FABs â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-fab {
    position: fixed;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: none;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: var(--sh-trans);
}
.sh-fab:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 8px 28px rgba(0,0,0,.35); }
.sh-fab--whatsapp { background: #25D366; color: #fff; bottom: 100px; right: 24px; }
.sh-fab--phone    { background: var(--sh-cyan); color: #fff; bottom: 160px; right: 24px; }
.sh-fab--top      { background: var(--sh-navy); color: #fff; bottom: 40px; right: 24px; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; }
.sh-fab--top.visible { opacity: 1; pointer-events: all; }

/* ── Floating Social Sidebar ─────────────────────────────── */
.sh-social-sidebar {
    position: fixed;
    left: 0px;
    top: 60%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap:3px;
    width: 148px;
}
.sh-social-sidebar__item {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0;
    color: #fff;
    font-family: var(--sh-font-sans);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    width: 46px;
    height: 46px;
    overflow: hidden;
    transition: width .35s cubic-bezier(.4,0,.2,1), box-shadow .3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,.18);
    white-space: nowrap;
}
.sh-social-sidebar__item:hover {
    width: 148px;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,.28);
    text-decoration: none;
}
.sh-social-sidebar__item i {
    font-size: 18px;
    flex-shrink: 0;
    width: 46px;
    text-align: center;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.sh-social-sidebar__item:hover i {
    transform: translateX(6px);
}
.sh-social-sidebar__item span {
    opacity: 0;
    flex: 1;
    text-align: center;
    transform: translateX(-16px);
    transition: opacity .25s ease .1s, transform .35s cubic-bezier(.4,0,.2,1) .05s;
}
.sh-social-sidebar__item:hover span {
    opacity: 1;
    transform: translateX(0);
}

.sh-social-sidebar__item--fb { background: #1877F2; }
.sh-social-sidebar__item--fb:hover { background: #0e65d9; }
.sh-social-sidebar__item--ig { background: var(--sh-cyan-dark); }
.sh-social-sidebar__item--ig:hover { background: var(--sh-cyan); }
.sh-social-sidebar__item--li { background: var(--sh-navy-light); }
.sh-social-sidebar__item--li:hover { background: var(--sh-navy-mid); }
.sh-social-sidebar__item--wa { background: #25D366; }
.sh-social-sidebar__item--wa:hover { background: #1ebe5d; }
.sh-social-sidebar__item--call { background: var(--sh-cyan); }
.sh-social-sidebar__item--call:hover { background: var(--sh-cyan-dark); }

@media (max-width: 767px) { .sh-social-sidebar { display: none; } }

/* ── 20. About Page ─────────────────────────────────────────── */
.sh-about-intro img { border-radius: 0; box-shadow: none; }
.sh-mission-vision-card {
    background: var(--sh-white);
    border-radius: 0;
    padding: 36px;
    box-shadow: none;
    border-left: 5px solid var(--sh-cyan);
    height: 100%;
}
.sh-mission-vision-card h3 { font-weight: 800; margin-bottom: 10px; }
.sh-footprint-stat {
    padding: 28px 20px;
    border-right: 1px solid var(--sh-gray-200);
    text-align: center;
}
.sh-footprint-stat:last-child { border-right: none; }
.sh-footprint-stat__num {
    font-size: 36px;
    font-weight: 800;
    color: var(--sh-navy);
    display: block;
    line-height: 1;
}
.sh-footprint-stat__label {
    font-size: 14px;
    color: var(--sh-gray-600);
    margin-top: 6px;
}
.sh-offer-link:hover .sh-offer-circle { border-color: var(--sh-cyan); box-shadow: var(--sh-shadow-hover); transform: translateY(-4px); }
.sh-offer-link:hover h5 { color: var(--sh-cyan) !important; }
.sh-offer-circle {
    width: 140px;
    height: 140px;
    border: 2px solid var(--sh-gray-200);
    border-radius: 50%;
    transition: var(--sh-trans);
    overflow: hidden;
    margin: 0 auto 16px;
    background: var(--sh-gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sh-trans);
}
.sh-offer-circle:hover { border-color: var(--sh-cyan); box-shadow: var(--sh-shadow-hover); }
.sh-offer-circle img { width: 88%; height: 88%; object-fit: contain; }

/* â”€â”€ 21. Products Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-product-category-card {
    background: var(--sh-white);
    border-radius: 0;
    position: relative;
    box-shadow: none;
    border: none;
    transition: var(--sh-trans);
    height: 100%;
}
.sh-product-category-card:hover {
    box-shadow: none;
    transform: none;
    border-color: transparent;
}
.sh-product-category-card__img-wrap { position: relative; height: 200px; overflow: hidden; background: var(--sh-gray-50); border-radius: 0; }
.sh-product-category-card__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 25%, rgba(255,255,255,0.3) 55%, rgba(255,255,255,0) 75%);
    pointer-events: none;
    z-index: 1;
}
.sh-product-category-card__logo {
    position: absolute;
    top: 14px;
    left: 14px;
    height: 60px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    z-index: 2;
}
.sh-product-category-card__img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.sh-product-category-card:hover .sh-product-category-card__img { transform: none; }
.sh-product-category-card__body { padding: 20px 22px; }
.sh-product-category-card__title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.sh-product-category-card__desc { font-size: 13px; color: var(--sh-gray-600); line-height: 1.65; }


/* â”€â”€ 22. Contact Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-contact-info-card {
    background: var(--sh-white);
    border-radius: 0;
    padding: 28px 24px;
    box-shadow: none;
    border: none;
    border-top: 3px solid var(--sh-cyan);
    text-align: center;
    height: 100%;
    transition: var(--sh-trans);
}
.sh-contact-info-card:hover { transform: none; box-shadow: none; }
.sh-contact-info-card .icon {
    width: 58px; height: 58px;
    background: var(--sh-cyan-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--sh-cyan);
}
.sh-contact-form {
    background: var(--sh-white);
    border-radius: 0;
    padding: 40px;
    box-shadow: none;
}
.sh-form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--sh-navy);
    margin-bottom: 6px;
}
.sh-form-control {
    border: 1.5px solid var(--sh-gray-200);
    border-radius: var(--sh-radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    color: var(--sh-gray-900);
    transition: var(--sh-trans);
    width: 100%;
}
.sh-form-control:focus {
    outline: none;
    border-color: var(--sh-cyan);
    box-shadow: 0 0 0 3px rgba(0,169,206,.15);
}

/* â”€â”€ 23. Swiper navigation arrows shared â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-swiper-nav .swiper-button-next,
.sh-swiper-nav .swiper-button-prev {
    color: var(--sh-navy);
    background: var(--sh-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: var(--sh-shadow-md);
    border: 1px solid var(--sh-gray-200);
    transition: var(--sh-trans);
}
.sh-swiper-nav .swiper-button-next:hover,
.sh-swiper-nav .swiper-button-prev:hover {
    background: var(--sh-cyan);
    color: #fff;
    border-color: var(--sh-cyan);
}
.sh-swiper-nav .swiper-button-next::after,
.sh-swiper-nav .swiper-button-prev::after { font-size: 14px; font-weight: 900; }

/* â”€â”€ 24. Mobile submenu (< lg) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-mobile-toggle {
    background: none;
    border: none;
    color: var(--sh-navy);
    padding: 8px 10px;
    font-size: 13px;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform .25s ease;
}
.sh-mobile-toggle[aria-expanded="true"] { transform: rotate(180deg); }
.sh-mobile-submenu {
    padding: 6px 0 10px 16px;
    border-left: 3px solid var(--sh-cyan);
    margin: 0 0 6px;
}
.sh-mobile-submenu__link {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--sh-gray-700);
    padding: 7px 0;
    border-bottom: 1px dashed var(--sh-gray-200);
    transition: var(--sh-trans);
}
.sh-mobile-submenu__link:last-child { border-bottom: none; }
.sh-mobile-submenu__link:hover { color: var(--sh-cyan); padding-left: 6px; }

/* Desktop lg-2-4 (5-col trust stats) */
@media (min-width: 992px) {
    .col-lg-2-4 { flex: 0 0 20%; max-width: 20%; width: 20%; }
}

/* â”€â”€ 24b. Responsive overrides â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* â”€ â‰¤ 991px â€“ tablet / collapsed navbar â”€ */
@media (max-width: 991.98px) {
    /* Navbar collapse panel */
    #navbarMain {
        background: #fff;
        border-top: 2px solid var(--sh-cyan);
        padding: 4px 8px 16px;
        max-height: 80vh;
        overflow-y: auto;
    }
    .sh-nav-link {
        padding: 11px 8px !important;
        border-bottom: 1px solid var(--sh-gray-200);
    }
    .sh-nav-link::after { display: none; }
    .sh-megamenu { display: none !important; }
    .sh-nav-cta { margin-top: 12px; width: 100%; justify-content: center; }

    /* Hero */
    .sh-hero .swiper-slide { height: 65vh; }
    .sh-video-hero { height: 65vh; }
    .sh-hero__content { padding: 0 5% 60px; }

    /* Stats */

    /* Contact */
    .sh-contact-form { padding: 28px; }

    /* About page */
    .sh-footprint-stat {
        border-right: none;
        border-bottom: 1px solid var(--sh-gray-200);
        padding-bottom: 16px;
        margin-bottom: 8px;
    }
    .sh-mission-vision-card { padding: 24px; }
}

/* â”€ â‰¤ 767px â€“ phone landscape / large portrait â”€ */
@media (max-width: 767.98px) {
    :root { --sh-section-y: 52px; }

    /* Hero swiper */
    .sh-hero .swiper-slide { height: 72vw; min-height: 300px; }
    .sh-video-hero { height: 72vw; min-height: 300px; max-height: none; }
    .sh-hero__content { padding: 0 20px 40px; }
    .sh-hero__inner { max-width: 100%; }
    .sh-hero__eyebrow { font-size: 10px; padding: 4px 12px; margin-bottom: 12px; }
    .sh-hero__title { font-size: 24px; }
    .sh-hero__desc { font-size: 14px; margin-bottom: 20px; }

    /* Stats bar */
    .sh-stats-bar { padding: 20px 0; }
    .sh-stat-item__num { font-size: 28px; }

    /* Trust stats: 2 col on md */
    .col-md-4.col-lg-2-4 { flex: 0 0 50% !important; max-width: 50% !important; width: 50% !important; }

    /* Trust stat cell */
    .sh-trust-stat { padding: 16px 10px; }

    /* CTA banner */
    .sh-cta-banner { padding: 48px 0; }
    .sh-cta-banner__desc { font-size: 15px; }

    /* Contact form */
    .sh-contact-form { padding: 20px; }

    /* Page hero */
    .sh-page-hero { height: 50vh; }
    .sh-page-hero__title { font-size: 26px; }

    /* Footer */
    .sh-footer__top { padding: 40px 0 24px; }
    .sh-footprint-stat__num { font-size: 28px; }

    /* Info card */
    .sh-info-card__body { padding: 20px 20px 24px; }

    /* Section desc */
    .sh-section-desc { font-size: 15px; }

    /* Swiper nav â€“ too close on mobile */
    .sh-swiper-nav .swiper-button-next,
    .sh-swiper-nav .swiper-button-prev { display: none; }
}

/* â”€ â‰¤ 575px â€“ small phones â”€ */
@media (max-width: 575.98px) {
    /* Hero */
    .sh-hero .swiper-slide { height: 85vw; min-height: 260px; }
    .sh-video-hero { height: 85vw; min-height: 260px; }
    .sh-hero__content { padding: 0 16px 32px; }
    .sh-hero__title { font-size: 20px; line-height: 1.3; }
    .sh-hero__desc { font-size: 13px; margin-bottom: 16px; }
    .sh-hero__actions { flex-direction: column; }
    .sh-hero__actions .sh-btn { width: 100%; justify-content: center; }
    .sh-hero .swiper-button-next,
    .sh-hero .swiper-button-prev { display: none; }

    /* Stats bar */
    .sh-stat-item { padding: 10px 6px; }
    .sh-stat-item__num { font-size: 22px; }
    .sh-stat-item__label { font-size: 10px; letter-spacing: 0; }

    /* Brands marquee */
    .sh-brands-swiper--marquee .swiper-slide { width: 205px; }
    .sh-brands-swiper--marquee .sh-brand-item { padding: 14px 10px; }
    .sh-brands-swiper--marquee .sh-brand-item img {
        max-height: 78px;
        max-width: 175px;
    }

    /* Trust stats */
    .col-md-4.col-lg-2-4 { flex: 0 0 50% !important; max-width: 50% !important; width: 50% !important; }

    /* Page hero */
    .sh-page-hero { height: 45vh; min-height: 320px; }
    .sh-page-hero__title { font-size: 22px; }

    /* Contact form */
    .sh-contact-form { padding: 16px; border-radius: var(--sh-radius-md); }

    /* FABs â€“ bring in from edge */
    .sh-fab { width: 44px; height: 44px; font-size: 18px; }
    .sh-fab--whatsapp { bottom: 84px; right: 14px; }
    .sh-fab--phone    { bottom: 136px; right: 14px; }
    .sh-fab--top      { bottom: 28px;  right: 14px; }

    /* Buttons */
    .sh-btn { padding: 11px 18px; font-size: 13px; }

    /* CTA banner */
    .sh-cta-banner { padding: 40px 0; }
    .sh-cta-banner__title { font-size: 22px; }
    .sh-cta-banner__desc { font-size: 14px; }
    .sh-cta-banner .sh-hero__actions,
    .sh-cta-banner .d-flex { flex-direction: column; align-items: center; gap: 10px; }

    /* Footer */
    .sh-footer__cert-note { text-align: center; }
    .sh-footer__copy { text-align: center; }

    /* Mission/Vision */
    .sh-mission-vision-card { padding: 18px; }
    .sh-mission-vision-card h3 { }

    /* Offer circles */
    .sh-offer-circle { width: 120px; height: 120px; }

    /* Product category image */
    .sh-product-category-card__img-wrap { height: 160px; }

    /* Section title */
    .sh-section-title { margin-bottom: 10px; }

    /* Purpose accordion */
    .sh-purpose-accordion__item.active { flex: 0 0 360px; }
    .sh-purpose-accordion__content h2  { }
}

/* â”€ â‰¤ 399px â€“ very small phones â”€ */
@media (max-width: 399.98px) {
    .sh-hero__title   { font-size: 17px; }
    .sh-stat-item__num { font-size: 18px; }
    .sh-page-hero { height: 40vh; min-height: 280px; }
    .sh-page-hero__title { font-size: 19px; }
    .sh-mission-vision-card h3 { }
    .sh-navbar__logo  { height: 40px; }
}

/* â”€â”€ Mobile horizontal scroll prevention â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 991.98px) {
    html, body {
        overflow-x: clip !important;
    }
    .swiper,
    .sh-stats-bar,
    .sh-brands-marquee-wrap,
    .sh-purpose-accordion,
    .sh-topbar {
        max-width: 100vw;
        overflow-x: hidden;
    }
    .container-xl,
    .container,
    .container-fluid {
        padding-left: 16px !important;
        padding-right: 16px !important;
        overflow-x: hidden;
    }
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* â”€â”€ 25. AOS custom animations (matching Trauma reference) â”€â”€â”€â”€ */
[data-aos] { opacity: 0; }
[data-aos].aos-animate { opacity: 1; }

/* Trigger immediately — no invisible elements sitting in the viewport */
@media (prefers-reduced-motion: reduce) {
    [data-aos] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

.aos-animate[data-aos="fade-up"] {
    animation: sh-fadeUp 0.75s ease-out forwards;
}
.aos-animate[data-aos="fade-right"] {
    animation: sh-fadeRight 0.75s ease-out forwards;
}
.aos-animate[data-aos="fade-left"] {
    animation: sh-fadeLeft 0.75s ease-out forwards;
}
.aos-animate[data-aos="zoom-in"] {
    animation: sh-zoomIn 0.75s ease-out forwards;
}
.aos-animate[data-aos="fade"] {
    animation: sh-fade 0.75s ease-out forwards;
}

@keyframes sh-fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes sh-fadeRight {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes sh-fadeLeft {
    from { opacity: 0; transform: translateX(12px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes sh-zoomIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes sh-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* â”€â”€ 26. Purpose Accordion (Transforming Surgical Safety) â”€â”€â”€â”€â”€ */
.sh-purpose-accordion {
    display: flex;
    gap: 16px;
    height: 340px;
    background-color: transparent;
}

.sh-purpose-accordion__item {
    display: flex;
    flex: 0 0 100px;
    transition: flex 1s cubic-bezier(0.9, 0.5, 0.5, 1);
    overflow: hidden;
    will-change: flex;
}

.sh-purpose-accordion__item.active {
    flex: 0 1 760px;
}

.sh-purpose-accordion__item.active .sh-purpose-accordion__content {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.sh-purpose-accordion__label {
    width: 100px;
    height: 100%;
    background: linear-gradient(135deg, #2a6ab5, #4db8d4);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    color: #fff;
    flex-shrink: 0;
    cursor: pointer;
}

.sh-purpose-accordion__number {
    font-size: 1.1rem;
    opacity: 0.7;
    color: #fff;
}

.sh-purpose-accordion__title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.sh-purpose-accordion__content {
    flex: 0 1 640px;
    height: 100%;
    margin-left: 20px;
    border-radius: 20px;
    position: relative;
    opacity: 1;
    min-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 36px;
    color: #fff;
    background: linear-gradient(135deg, #1a4a8a, #2a6ab5);
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.9, 0.5, 0.5, 1);
}

.sh-purpose-accordion__content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
}

.sh-purpose-accordion__content h2,
.sh-purpose-accordion__content p {
    position: relative;
    z-index: 1;
    margin: 0;
}

.sh-purpose-accordion__content h2 {
    font-size: 2.8rem;
    font-family: serif;
    font-style: italic;
    margin-bottom: 15px;
    color: #fff !important;
}

.sh-purpose-accordion__content p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 420px;
    color: rgba(255,255,255,.85);
}

@media (max-width: 768px) {
    .sh-purpose-accordion {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }

    .sh-purpose-accordion__item {
        flex: 0 0 70px;
        width: 100%;
        flex-direction: column;
        transition: flex 1.2s cubic-bezier(0.9, 0, 0.1, 1);
    }

    .sh-purpose-accordion__item.active {
        flex: 0 0 auto;
    }

    .sh-purpose-accordion__label {
        width: 100%;
        height: 70px;
        flex-direction: row;
        justify-content: flex-start;
        padding: 0 20px;
        border-radius: 15px;
    }

    .sh-purpose-accordion__title {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
        margin: 0 0 0 15px;
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .sh-purpose-accordion__content {
        flex: 1;
        width: 100%;
        height: auto;
        min-width: 100%;
        margin: 10px 0 0 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.5s ease;
        padding: 22px 20px;
        justify-content: flex-start;
    }

    .sh-purpose-accordion__item.active .sh-purpose-accordion__content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition-delay: 0.8s;
    }

    .sh-purpose-accordion__content h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .sh-purpose-accordion__content p {
        font-size: 0.95rem;
    }
}


/* â”€â”€ 28. Video Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-video-hero {
    height: 88vh;
    min-height: 520px;
    max-height: 820px;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    line-height: 0;
    font-size: 0;
}
.sh-video-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    vertical-align: top;
}
@media (max-width: 767.98px) {
    .sh-video-hero { height: 75vw; min-height: 340px; }
}

/* â”€â”€ 29. Top Utility Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-topbar {
    background: var(--sh-navy);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.sh-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}
.sh-topbar__left,
.sh-topbar__right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.sh-topbar__link {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.72);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .2s ease;
    white-space: nowrap;
}
.sh-topbar__link i { font-size: 11px; color: var(--sh-cyan); }
.sh-topbar__link:hover { color: var(--sh-cyan); }
.sh-topbar__divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.18);
    display: inline-block;
}
.sh-topbar__badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--sh-cyan);
    background: rgba(0,169,206,.12);
    border: 1px solid rgba(0,169,206,.25);
    padding: 2px 10px;
    border-radius: 100px;
    white-space: nowrap;
}
@media (max-width: 767.98px) {
    .sh-topbar { display: none; }
}

/* â”€â”€ 30. Navbar accent line â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sh-cyan), var(--sh-navy-light), var(--sh-cyan));
    opacity: 0;
    transition: opacity .3s ease;
}
.sh-navbar.scrolled::after { opacity: 1; }

/* â”€â”€ 31. Stats bar accent & dividers â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-stat-item + .sh-stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,.14);
}

/* â”€â”€ 34. Purpose accordion image panels â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-purpose-accordion__item.item-1 .sh-purpose-accordion__label {
    background: linear-gradient(160deg, #1e5fa8, #4db8d4);
}
.sh-purpose-accordion__item.item-2 .sh-purpose-accordion__label {
    background: linear-gradient(160deg, #1a4a8a, #2e7bc4);
}
.sh-purpose-accordion__item.item-3 .sh-purpose-accordion__label {
    background: linear-gradient(160deg, #1e78c8, #4dd4e8);
}
.sh-purpose-accordion__item.item-4 .sh-purpose-accordion__label {
    background: linear-gradient(160deg, #1a5299, #38b8d0);
}


/* ================================================================
   PRODUCT CATEGORY PAGES
   ================================================================ */


/* â”€â”€ Mid-page CTA banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-mid-banner {
    border-radius: 10px;
    overflow: hidden;
    margin: 28px 0;
    display: flex;
    align-items: stretch;
}
.sh-mid-banner__inner {
    background: rgba(10, 35, 66, 0.55);
    backdrop-filter: blur(2px);
    padding: 30px 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sh-mid-banner__text {
    font-family: var(--sh-font-sans);
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    line-height: 1.75;
    margin: 0;
}

/* â”€â”€ Why Choose Surgeine cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-why-card:hover {
    box-shadow: none;
}

/* â”€â”€ Product Sidebar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* ── Sidebar (Philips-style) ────────────────────────────── */
.sh-product-sidebar {
    background: #fff;
    border: none;
    border-radius: 0;
    overflow: visible;
    position: sticky;
    top: 90px;
}

/* Search input */
.sh-sidebar-search {
    position: relative;
    margin-bottom: 0;
}
.sh-sidebar-search__icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #aab0bc;
    font-size: 14px;
    pointer-events: none;
}
.sh-sidebar-search__input {
    width: 100%;
    padding: 11px 16px 11px 40px;
    border: 1.5px solid #d8dce6;
    border-radius: 100px;
    font-size: 14px;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color .2s;
}
.sh-sidebar-search__input::placeholder { color: #aab0bc; }
.sh-sidebar-search__input:focus { border-color: var(--sh-cyan); }

/* Divider */
.sh-sidebar-hr {
    border: none;
    border-top: 1px solid #e4e8f0;
    margin: 16px 0;
}

/* Section (collapsible group) */
.sh-sidebar-section { margin-bottom: 0; }
.sh-sidebar-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0 10px;
    cursor: pointer;
    user-select: none;
}
.sh-sidebar-section__label {
    font-size: 15px;
    font-weight: 700;
    color: var(--sh-navy);
    letter-spacing: .01em;
}
.sh-sidebar-section__chevron {
    font-size: 12px;
    color: var(--sh-navy);
    transition: transform .25s ease;
}
.sh-sidebar-section__header[aria-expanded=”false”] .sh-sidebar-section__chevron {
    transform: rotate(180deg);
}

/* Category list */
.sh-product-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sh-product-sidebar__item {
    border-top: 1px solid #e8ecf3;
}
.sh-product-sidebar__item:first-child { border-top: none; }

.sh-product-sidebar__item > a,
.sh-sidebar-parent > a {
    display: block;
    padding: 11px 4px;
    font-size: 14px;
    font-weight: 400;
    color: #3a4558;
    text-decoration: none;
    transition: color .18s;
    line-height: 1.4;
}
.sh-product-sidebar__item > a:hover,
.sh-sidebar-parent > a:hover {
    color: var(--sh-cyan);
}
.sh-product-sidebar__item.active > a,
.sh-product-sidebar__item.active .sh-sidebar-parent > a {
    color: var(--sh-navy);
    font-weight: 700;
}

/* Sub-list */
.sh-product-sidebar__sub {
    list-style: none;
    margin: 0;
    padding: 0 0 4px 12px;
    border-top: none;
}
.sh-product-sidebar__sub li a {
    display: block;
    padding: 7px 4px;
    font-size: 13px;
    font-weight: 400;
    color: #5a6475;
    text-decoration: none;
    border-left: none;
    position: relative;
    transition: color .18s;
}
.sh-product-sidebar__sub li a::before { display: none; }
.sh-product-sidebar__sub li a:hover { color: var(--sh-cyan); font-weight: 600; }
.sh-product-sidebar__sub li + li { border-top: 1px solid #eef0f5; }

/* â”€â”€ CTA box (right column when no extra content) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-product-cta-box {
    background: linear-gradient(135deg, var(--sh-navy), var(--sh-navy-mid));
    border-radius: 12px;
    padding: 40px 36px;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sh-product-cta-box__title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.sh-product-cta-box__text {
    font-size: 15px;
    color: rgba(255,255,255,.85);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* â”€â”€ Responsive: banner height on mobile â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
    .sh-product-top-banner {
        height: 320px !important;
        padding: 30px !important;
    }
    .sh-mid-banner {
        min-height: 220px !important;
        padding: 30px !important;
    }
    .sh-mid-banner__inner {
        padding: 16px 20px;
    }
    .sh-mid-banner__text {
        font-size: 15px;
    }
}


/* ================================================================
   PRODUCT CARDS (category pages & product-detail related grid)
   ================================================================ */

/* â”€â”€ Grid wrapper â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-prod-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}
/* â”€â”€ 3-column product tile grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-prod-grid--3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 991px) {
    .sh-prod-grid--3col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .sh-prod-grid--3col { grid-template-columns: 1fr; }
}

/* â”€â”€ Tile card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-prod-tile {
    background: #fff;
    border: 1px solid var(--sh-gray-200);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s;
    position: relative;
    cursor: pointer;
}
.sh-prod-tile:hover {
    box-shadow: 0 8px 28px rgba(10,35,66,.12);
    transform: translateY(-3px);
}

/* Image area */
.sh-prod-tile__img-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.sh-prod-tile__img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    padding: 16px;
    transition: transform .3s ease;
}
.sh-prod-tile:hover .sh-prod-tile__img {
    transform: scale(1.05);
}

/* Body */
.sh-prod-tile__body {
    padding: 18px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    flex: 1;
}
.sh-prod-tile__name {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--sh-navy);
    margin: 0;
    line-height: 1.4;
}

/* Explore button */
.sh-prod-tile__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--sh-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 100px;
    text-decoration: none;
    width: fit-content;
    margin-top: auto;
    transition: background .2s, transform .2s;
}
/* Stretched-link overlay â€” no position:relative on <a>, so inset:0 reaches the card */
.sh-prod-tile__btn::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}
.sh-prod-tile__btn:hover {
    background: var(--sh-cyan);
    color: #fff;
    transform: translateX(3px);
}

/* â”€â”€ Sidebar collapse toggle â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-sidebar-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sh-sidebar-parent a {
    flex: 1;
}
.sh-sidebar-toggle {
    background: none;
    border: none;
    padding: 6px 10px;
    color: var(--sh-gray-400);
    cursor: pointer;
    transition: transform .25s, color .2s;
    flex-shrink: 0;
    line-height: 1;
}
.sh-sidebar-toggle:hover {
    color: var(--sh-cyan);
}
.sh-sidebar-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}
.sh-sidebar-toggle i {
    font-size: 11px;
    display: block;
    transition: transform .25s;
}

/* â”€â”€ Individual card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* .sh-prod-card base rules consolidated at the single definition further
   down (search "PRODUCT CARDS" near the specification-table styles) to
   avoid this legacy block's fixed-width img-wrap leaking through. */

/* â”€â”€ Card image â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* â”€â”€ Card body â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-prod-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--sh-cyan) 0%, var(--sh-navy-mid) 100%);
    padding: 6px 20px 6px 14px;
    border-radius: 100px;
    margin-bottom: 8px;
    width: fit-content;
    box-shadow: 0 4px 18px rgba(0,169,206,.38), 0 1px 4px rgba(10,35,66,.18);
}
.sh-prod-card__badge::before {
    content: '';
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    opacity: .9;
    animation: sh-label-pulse 2s ease-in-out infinite;
}
.sh-prod-card__divider {
    border-color: var(--sh-gray-200);
    margin: 12px 0;
}
.sh-prod-card__desc {
    font-size: 13.5px;
    color: var(--sh-gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

/* â”€â”€ Related products grid (product-detail.php) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 640px) {
    .sh-mid-banner__text {
        font-size: 15px;
    }
}

/* â”€â”€ 35. Smooth image overflow clipping on cards â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-product-category-card,
.sh-product-category-card__img-wrap { overflow: hidden; }

/* â”€â”€ 37. CTA banner subtle depth â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-cta-banner {
    background: linear-gradient(135deg,
        var(--sh-navy) 0%,
        var(--sh-navy-mid) 40%,
        var(--sh-cyan-dark) 100%);
}

/* â”€â”€ 38. Trust stat icon â€“ stronger cyan accent â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-trust-stat:hover .sh-trust-stat__icon img {
    filter: brightness(0) invert(1);
}

/* â”€â”€ 39. Blog read-more arrow animate â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-blog-card__read-more i {
    transition: transform .25s ease;
}
.sh-blog-card:hover .sh-blog-card__read-more i {
    transform: translateX(4px);
}
.sh-product-card__link i,
.sh-info-card .sh-btn i {
    transition: transform .25s ease;
}
.sh-product-card:hover .sh-product-card__link i,
.sh-info-card:hover .sh-btn i {
    transform: translateX(4px);
}

/* â”€â”€ 40. Navbar â€“ sticky on scroll â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-navbar {
    position: sticky;
    top: 0;
    z-index: 1050;
}

/* â”€â”€ 41. Card resets & overrides â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-info-card,
.sh-blog-card,
.sh-contact-form,
.sh-about__video-wrap {
    border-radius: 0;
    border: none;
    box-shadow: none;
}
.sh-info-card:hover,
.sh-blog-card:hover,
.sh-contact-info-card:hover,
.sh-mission-vision-card:hover {
    transform: none;
    box-shadow: none;
}
.sh-product-category-card {
    border-radius: 0;
    border: 1px solid #dde7f3;
    box-shadow: 0 2px 4px rgba(10,35,66,.06), 0 8px 20px rgba(10,35,66,.10);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.sh-product-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(10,35,66,.10), 0 20px 40px rgba(10,35,66,.16);
    border-color: #b4cde8;
}

/* â”€â”€ 42. Product section â€” bottom-centre nav arrows â”€â”€â”€â”€â”€â”€â”€ */
.sh-prod-bottom-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 10;
}
.sh-prod-bottom-nav .swiper-pagination {
    position: static;
    width: auto;
}
.sh-prod-bottom-nav .sh-prod-arrows {
    display: flex;
    gap: 12px;
}
.sh-prod-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--sh-navy);
    background: transparent;
    color: var(--sh-navy);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--sh-trans);
    flex-shrink: 0;
}
.sh-prod-nav-btn:hover {
    background: var(--sh-navy);
    color: #fff;
}
.sh-prod-nav-btn.swiper-button-disabled {
    opacity: .35;
    pointer-events: none;
}
/* On mobile there is no hover-lift, so revert swiper overflow to hidden
   to stop the off-screen loop-clone from swallowing pointer events on
   the right nav button. */
@media (max-width: 767.98px) {
    .sh-products-swiper {
        overflow: hidden !important;
        padding-top: 0 !important;
    }
}

/* â”€â”€ Specification table (product detail pages) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-spec-table-wrap {
    overflow-x: auto;
    margin-top: 16px;
    border-radius: 10px;
    border: 1px solid var(--sh-gray-200);
}
.sh-spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}
.sh-spec-table thead tr {
    background: var(--sh-navy);
    color: #fff;
}
.sh-spec-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    letter-spacing: .3px;
}
.sh-spec-table tbody tr {
    border-bottom: 1px solid var(--sh-gray-200);
    transition: background .15s;
}
.sh-spec-table tbody tr:last-child {
    border-bottom: none;
}
.sh-spec-table tbody tr:nth-child(even) {
    background: var(--sh-gray-50);
}
.sh-spec-table tbody tr:hover {
    background: var(--sh-cyan-light);
}
.sh-spec-table tbody td {
    padding: 10px 16px;
    color: var(--sh-gray-700);
    vertical-align: middle;
}
.sh-spec-table tbody td:last-child {
    font-weight: 700;
    color: var(--sh-navy);
    text-align: center;
    width: 60px;
}

/* ================================================================
   PROCEDURE PACKS â€” Feature Cards, Highlight Quote, Hero Split,
   Testimonials
   ================================================================ */

/* â”€â”€ Feature Cards Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 36px 0 40px;
}
@media (max-width: 991px) {
    .sh-feature-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .sh-feature-cards { grid-template-columns: 1fr; }
}

.sh-feature-card {
    background: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    transition: box-shadow .45s cubic-bezier(.4,0,.2,1);
}
.sh-feature-card:hover {
    box-shadow: 0 16px 48px rgba(10,35,66,.22);
}

/* image wrapper for zoom + overlay */
.sh-feature-card__img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
    flex-shrink: 0;
}
.sh-feature-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.sh-feature-card:hover .sh-feature-card__img {
    transform: scale(1.08);
}

/* bottom-to-blue gradient overlay on hover (Philips style) */
.sh-feature-card__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        transparent 20%,
        rgba(0, 68, 148, 0.72) 65%,
        rgba(0, 68, 148, 1) 100%
    );
    opacity: 0;
    transition: opacity .45s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
}
.sh-feature-card:hover .sh-feature-card__img-wrap::after {
    opacity: 1;
}

/* white-shadow image: fades product photo into white background */
.sh-intro-img-wrap {
    position: relative;
    display: inline-block;
    width: 70%;
    text-align: center;
}
.sh-intro-img-wrap img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
/* ── Brand page: "Explore Our Other Brands" strip ── */
.sh-other-brands {
    margin-top: 56px;
}
.sh-other-brands__title {
    font-family: var(--sh-font-heading);
    font-weight: 800;
    color: var(--sh-navy);
    font-size: clamp(20px, 2.2vw, 28px);
    margin-bottom: 10px;
}
.sh-other-brands__tag {
    display: inline-block;
    background: var(--sh-cyan-light);
    color: var(--sh-cyan-dark, var(--sh-navy));
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
}
.sh-other-brands .sh-divider {
    margin-bottom: 24px;
}

/* Product-and-solutions category + subcategory pages: vertically centre the
   intro row against its image, and let the image fill its column. Scoped so
   the brand pages, which share this markup, keep the top-aligned row and the
   narrower 70% image. */
.sh-cat-intro {
    align-items: center;
}
.sh-cat-intro .sh-intro-img-wrap {
    width: 100%;
}

.sh-intro-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,  #fff 0%, transparent 12%, transparent 88%, #fff 100%),
        linear-gradient(to bottom, #fff 0%, transparent 10%, transparent 90%, #fff 100%);
    pointer-events: none;
}
.sh-feature-card__body {
    padding: 24px 20px 28px;
    flex: 1;
    background: #f5f5f5;
    transition: background .45s cubic-bezier(.4,0,.2,1);
}
.sh-feature-card:hover .sh-feature-card__body {
    background: #004494;
}
.sh-feature-card__title {
    font-family: var(--sh-font-sans);
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color .45s cubic-bezier(.4,0,.2,1);
}
.sh-feature-card:hover .sh-feature-card__title {
    color: #ffffff;
}
.sh-feature-card__text {
    font-family: var(--sh-font-sans);
    font-size: 15px;
    color: #444;
    line-height: 1.65;
    margin: 0;
    transition: color .45s cubic-bezier(.4,0,.2,1);
}
.sh-feature-card:hover .sh-feature-card__text {
    color: rgba(255, 255, 255, 0.82);
}

/* â”€â”€ Highlight Quote Block â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-highlight-quote {
    background: #f2f2f2;
    border-radius: 6px;
    padding: 56px 48px;
    margin: 0 0 36px;
    text-align: center;
}
.sh-highlight-quote p {
    font-family: var(--sh-font-sans);
    font-size: clamp(18px, 2.4vw, 26px);
    font-weight: 400;
    color: var(--sh-navy);
    line-height: 1.65;
    max-width: 1000px;
    margin: 0 auto;
}
.sh-highlight-quote strong {
    font-weight: 700;
}
@media (max-width: 768px) {
    .sh-highlight-quote { padding: 36px 24px; }
}

/* â”€â”€ Hero Split (Philips-style) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-hero-split {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 0 48px;
    min-height: 420px;
    display: flex;
    align-items: stretch;
}
.sh-hero-split__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
}
.sh-hero-split__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,35,66,.82) 48%, rgba(10,35,66,.10) 100%);
}
.sh-hero-split__content {
    position: relative;
    z-index: 2;
    width: 55%;
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: rgba(255,255,255,.88);
}
.sh-hero-split__title {
    font-family: var(--sh-font-sans);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.25;
    max-width: 600px;
}
.sh-hero-split__text,
.sh-hero-split__content p {
    font-family: var(--sh-font-sans);
    font-size: 15px;
    color: rgba(255,255,255,.88);
    line-height: 1.75;
    margin-bottom: 14px;
}
@media (max-width: 767px) {
    .sh-hero-split__content { width: 100%; padding: 36px 24px; }
    .sh-hero-split__overlay { background: rgba(10,35,66,.75); }
}

/* â”€â”€ Testimonials â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sh-testimonials {
    padding: 60px 0 48px;
}
.sh-testimonials__title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    color: #111;
    margin-bottom: 32px;
}
.sh-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 991px) {
    .sh-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .sh-testimonials__grid { grid-template-columns: 1fr; }
}
.sh-testimonial-card {
    /* border-radius: 18px; */
    background: #f4f4f4;
    padding: 32px 28px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sh-testimonial-card__stars {
    color: var(--sh-cyan);
    font-size: 18px;
    letter-spacing: 2px;
}
.sh-testimonial-card__quote {
    font-family: var(--sh-font-sans);
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}
.sh-testimonial-card__author {
    font-family: var(--sh-font-sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--sh-navy);
}
.sh-testimonial-card__role {
    font-size: 13px;
    color: #777;
    font-weight: 400;
}

/* ══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVENESS FIXES
   ══════════════════════════════════════════════════════════════ */

/* ── Cert grid (home page): 3-col → 2-col on phones, so 5 cards read 2/2/1 ──
   The --5 variant pins each card to an explicit column of a 6-track grid
   (1/3, 3/5, 5/7, ...). Those spans survive a plain grid-template-columns
   override and force extra implicit columns back in, which is what produced
   the lopsided 3 + 2. The spans have to be released, not just the tracks. */
@media (max-width: 767.98px) {
    .sh-cert-grid,
    .sh-cert-grid--5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 10px;
    }

    .sh-cert-grid--5 .sh-cert-card:nth-child(1),
    .sh-cert-grid--5 .sh-cert-card:nth-child(2),
    .sh-cert-grid--5 .sh-cert-card:nth-child(3),
    .sh-cert-grid--5 .sh-cert-card:nth-child(4),
    .sh-cert-grid--5 .sh-cert-card:nth-child(5) {
        grid-column: auto;
    }

    /* Odd one out: centre it across the two columns rather than
       leaving it stranded on the left. */
    .sh-cert-grid--5 .sh-cert-card:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - 5px);
    }
}

/* ── Disable background-attachment:fixed on mobile (iOS Safari bug) ── */
@media (max-width: 991.98px) {
    .sh-page-hero__bg,
    .sh-parallax-bg {
        background-attachment: scroll;
    }
}

/* ── Flip cards: click/tap state (CSS class toggled by JS) ── */
.sh-why-card.sh-flipped .sh-why-card__inner {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

/* ── Why-grid middle-card lift: disable offset on mobile ── */
@media (max-width: 575.98px) {
    .sh-why-card:nth-child(3n+2) {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

/* ── Hero video: prevent oversized height on small phones ── */
@media (max-width: 479.98px) {
    .sh-video-hero {
        height: 90vw;
        min-height: 260px;
    }
}

/* ── Page hero inner pages: prevent 100vh on small phones ── */
@media (max-width: 479.98px) {
    .sh-page-hero {
        height: auto;
        min-height: 280px;
        padding: 60px 0;
    }
}

/* ── Contact form padding on very small phones ── */
@media (max-width: 479.98px) {
    .sh-contact-form {
        padding: 14px !important;
    }
}

/* ── Prevent wide fixed-width sections from causing horizontal scroll ── */
@media (max-width: 575.98px) {
    .sh-about-imgcard__body {
        max-width: 100%;
        padding: 20px 16px 24px;
    }
    .sh-prod-cta-box {
        padding: 28px 20px;
    }
    .sh-highlight-quote {
        padding: 28px 16px;
    }
    .sh-hero-split__content {
        padding: 28px 16px;
    }
    .sh-protecting-lives__content {
        padding: 36px 20px;
    }
}

/* ── Topbar: show condensed on very small screens instead of hiding ── */
@media (max-width: 767.98px) {
    .sh-topbar {
        display: none;
    }
}

/* ── Footer bottom: stack on mobile ── */
@media (max-width: 575.98px) {
    .sh-footer__bottom .d-flex {
        flex-direction: column !important;
        gap: 8px;
        text-align: center;
    }
}

/* ── VAC section background: disable fixed on mobile ── */
@media (max-width: 991.98px) {
    .sh-vac-section__bg {
        background-attachment: scroll;
        background-size: cover;
    }
}

/* ── Bento grid: fix card heights on very small phones ── */
@media (max-width: 399.98px) {
    .sh-portbento__grid {
        grid-template-columns: 1fr !important;
    }
    .sh-bento-col .sh-bento-card {
        height: 180px !important;
        flex-direction: column !important;
    }
}


/* ════════ MOVED FROM index.php ════════ */

.sh-about-split {
    padding: 72px 0;
    background: #f4f7fb;
}
.sh-about-split__layout {
    position: relative;
    display: block;
}

/* Left — image card with overlay */
.sh-about-imgcard {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 480px;
    width: 78%;
}
.sh-about-imgcard__bg {
    position: absolute;
    inset: 0;
    background-image: url('/uploads/banners/home-hero-section.png');
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}
.sh-about-imgcard:hover .sh-about-imgcard__bg {
    transform: scale(1.04);
}
.sh-about-imgcard__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,35,66,.65) 0%, rgba(10,35,66,.82) 100%);
}
.sh-about-imgcard__body {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 36px 36px 40px;
    max-width: 65%;
}
.sh-about-imgcard__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sh-cyan);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
    width: fit-content;
}
.sh-about-imgcard__title {
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
}
.sh-about-imgcard__divider {
    width: 44px;
    height: 3px;
    background: var(--sh-cyan);
    border-radius: 2px;
    margin-bottom: 18px;
}
.sh-about-imgcard__text {
    color: #fff;
    font-size: 14.5px;
    line-height: 1.85;
    margin-bottom: 28px;
}
.sh-about-imgcard__text.is-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sh-about-imgcard__text p { color: #fff; }
.sh-about-imgcard__text p:last-child { margin-bottom: 0; }
.sh-about-imgcard__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.sh-about-imgcard__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .25s, color .25s, transform .2s;
}
.sh-about-imgcard__btn--solid {
    background: #fff;
    color: var(--sh-navy);
}
.sh-about-imgcard__btn--solid:hover {
    background: var(--sh-cyan);
    color: #fff;
    transform: translateY(-2px);
}
.sh-about-imgcard__btn--outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.45);
}
.sh-about-imgcard__btn--outline:hover {
    background: rgba(255,255,255,.12);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Right — overlapping panel */
.sh-about-right {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 500px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* YouTube card */
.sh-about-yt {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10,35,66,.10);
    border: 1px solid rgba(10,35,66,.07);
}
.sh-about-yt__header {
    background: var(--sh-navy);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sh-about-yt__header-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 2px;
}
.sh-about-yt__header-text {
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.3;
}
.sh-about-yt__header-text span {
    display: block;
    font-weight: 400;
    font-size: 11px;
    opacity: .75;
}
.sh-about-yt__video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.sh-about-yt__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Purpose list card */
.sh-about-purpose {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(10,35,66,.10);
    border: 1px solid rgba(10,35,66,.07);
    overflow: hidden;
    flex: 1;
}
.sh-about-purpose__head {
    background: var(--sh-navy);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sh-about-purpose__head-icon {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sh-about-purpose__head-icon i { color: var(--sh-cyan); font-size: 14px; }
.sh-about-purpose__head-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}
.sh-about-purpose__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sh-about-purpose__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid #f0f3f8;
    cursor: default;
    transition: background .2s;
}
.sh-about-purpose__item:last-child { border-bottom: none; }
.sh-about-purpose__item:hover { background: #f4f8ff; }
.sh-about-purpose__item-icon {
    width: 34px;
    height: 34px;
    background: #EEF3FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}
.sh-about-purpose__item:hover .sh-about-purpose__item-icon { background: var(--sh-cyan); }
.sh-about-purpose__item-icon i {
    font-size: 13px;
    color: var(--sh-navy);
    transition: color .2s;
}
.sh-about-purpose__item:hover .sh-about-purpose__item-icon i { color: #fff; }
.sh-about-purpose__item-text {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--sh-navy);
}

@media (max-width: 991px) {
    .sh-about-imgcard { width: 100%; min-height: 380px; }
    .sh-about-imgcard__body { padding: 28px 24px 32px; max-width: 100%; }
    .sh-about-right {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 20px;
    }
}


.sh-portbento {
    padding: 80px 0;
}
.sh-portbento__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.sh-portbento__intro-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--sh-navy);
    line-height: 1.3;
    margin-bottom: 14px;
}
.sh-portbento__intro-text {
    font-size: 14.5px;
    color: var(--sh-gray-700);
    line-height: 1.85;
    margin-bottom: 0;
    max-width: 540px;
}

/* Bento grid — items are grouped by their "col" value; each column stacks
   however many items it has, sharing the column's height evenly. */
.sh-portbento__grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    gap: 14px;
    max-width: 960px;
    margin: 0 auto;
    height: 565px;
}
.sh-bento-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    height: 100%;
}
.sh-bento-col .sh-bento-card {
    flex: 0 0 auto;
    position: relative;
}

/* Each bento card */
.sh-bento-card {
    position: relative;
    /* border-radius: 16px; */
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.sh-bento-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .55s ease;
}
.sh-bento-card:hover .sh-bento-card__bg { transform: scale(1.06); }
.sh-bento-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,35,66,.12) 0%, rgba(10,35,66,.72) 100%);
    transition: background .3s ease;
}
.sh-bento-card:hover .sh-bento-card__overlay {
    background: linear-gradient(180deg, rgba(10,35,66,.2) 0%, rgba(10,35,66,.82) 100%);
}
.sh-bento-card__body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 18px 20px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.sh-bento-card__icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(0,169,206,.85);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.sh-bento-card__icon i { font-size: 14px; color: #fff; }
.sh-bento-card__name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 991px) {
    .sh-portbento__header { flex-direction: column; align-items: flex-start; }
    .sh-portbento__grid { grid-auto-flow: row; grid-template-columns: repeat(2, 1fr); height: auto; }
    .sh-bento-col { flex-direction: row; height: auto; }
    .sh-bento-col .sh-bento-card { height: 190px; }
}
@media (max-width: 575px) {
    .sh-portbento__grid { grid-template-columns: 1fr; }
    .sh-bento-col { flex-direction: column; }
}


.sh-vac-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.sh-vac-section__bg {
    position: absolute;
    inset: 0;
    background-image: url('/uploads/banners/Our-Purpose-bg.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(0.9) saturate(0.95);
    z-index: 0;
}
.sh-vac-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,60,160,.85) 0%, rgba(0,50,130,.70) 30%, rgba(0,30,90,.40) 60%, rgba(10,35,66,.10) 100%);
    z-index: 1;
}
.sh-vac-section > .container-xl {
    position: relative;
    z-index: 2;
}
.sh-vac-section .sh-label { color: #fff; }
.sh-vac-section .sh-section-title { color: #fff; }
.sh-vac-section .sh-divider { background: rgba(255,255,255,.4); }

.sh-vac-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 700px;
}

.sh-vac-card {
    background: transparent;
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,.3);
    transition: background .3s, border-color .3s, box-shadow .3s;
}
.sh-vac-card.open {
    background: #fff;
    border-color: transparent;
    box-shadow: 0 6px 28px rgba(10,35,66,.18);
}

.sh-vac-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
}

.sh-vac-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .3s, border-color .3s;
}
.sh-vac-card__icon i { color: #fff; font-size: 16px; transition: color .3s; }
.sh-vac-card.open .sh-vac-card__icon {
    background: linear-gradient(135deg, #0096c7, #0a5fa5);
    border-color: transparent;
}
.sh-vac-card.open .sh-vac-card__icon i { color: #fff; }

.sh-vac-card__title {
    flex: 1;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    transition: color .3s;
}
.sh-vac-card.open .sh-vac-card__title { color: #0a2342; }

.sh-vac-card__toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, border-color .2s;
}
.sh-vac-card__toggle i {
    font-size: 14px;
    color: #fff;
    transition: color .2s;
}
.sh-vac-card.open .sh-vac-card__toggle {
    background: #0a2342;
    border-color: #0a2342;
}
.sh-vac-card.open .sh-vac-card__toggle i { color: #fff; }

.sh-vac-card__divider {
    height: 1px;
    background: #e8ecf2;
    margin: 0 22px;
    display: none;
}
.sh-vac-card.open .sh-vac-card__divider { display: block; }

.sh-vac-card__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s cubic-bezier(.4,0,.2,1);
}
.sh-vac-card.open .sh-vac-card__body { max-height: 600px; }

.sh-vac-card__content {
    padding: 18px 22px 24px;
    color: #3d4f63;
    font-size: 14.5px;
    line-height: 1.8;
}
.sh-vac-card__content p { margin-bottom: 10px; }
.sh-vac-card__content ul {
    margin: 0;
    padding-left: 4px;
    list-style: none;
}
.sh-vac-card__content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}
.sh-vac-card__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0a2342;
}


/* Why Surgeine - Bento stat cards */
.sh-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
    padding-bottom: 32px;
}
@media (max-width: 991px) {
    .sh-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sh-why-card:nth-child(3n+2) { margin-top: 0 !important; margin-bottom: 0 !important; }
}
@media (max-width: 575px) {
    .sh-why-grid { grid-template-columns: 1fr; }
}

/* lift middle card in each row of 3 */
.sh-why-card:nth-child(3n+2) {
    margin-top: -40px;
    margin-bottom: -40px;
}

.sh-why-card {
    perspective: 1000px;
    -webkit-perspective: 1000px;
    min-height: 240px;
    cursor: pointer;
    background: transparent !important;
    box-shadow: none !important;
}

.sh-why-card__inner {
    position: relative; width: 100%; height: 100%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
    -webkit-transition: -webkit-transform .6s cubic-bezier(.4,0,.2,1);
    min-height: 240px;
    background: transparent;
}
.sh-why-card:hover .sh-why-card__inner {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

.sh-why-card__front,
.sh-why-card__back {
    position: absolute; inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    padding: 32px 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.sh-why-card__back {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.sh-why-card__icon-wrap {
    margin-bottom: 20px;
}

.sh-why-card__icon-wrap {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.sh-why-card__icon-wrap i { font-size: 24px; }

.sh-why-card__title {
    font-size: 1.6rem; font-weight: 800;
    line-height: 1.2; margin: 0;
}

.sh-why-card__back-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    opacity: .75; margin-bottom: 12px;
    display: block;
}
.sh-why-card__back-title {
    font-size: 1.1rem; font-weight: 800;
    margin-bottom: 12px; color: #fff;
}
.sh-why-card__back-text {
    font-size: .875rem; line-height: 1.75; margin: 0; color: rgba(255,255,255,.9);
}

/* colour themes — all aligned to Surgeine brand: navy #0A2342 + cyan #00A9CE */
/* 1 - deep navy */
.sh-why-card--1 .sh-why-card__front     { background: #E8EDF5; }
.sh-why-card--1 .sh-why-card__title     { color: #0A2342; }
.sh-why-card--1 .sh-why-card__icon-wrap { background: #C5D3E8; }
.sh-why-card--1 .sh-why-card__icon-wrap i { color: #0A2342; }
.sh-why-card--1 .sh-why-card__back      { background: #0A2342; }
.sh-why-card--1 .sh-why-card__back-label { color: rgba(255,255,255,.75); }

/* 2 - cyan */
.sh-why-card--2 .sh-why-card__front     { background: #E0F7FC; }
.sh-why-card--2 .sh-why-card__title     { color: #0087A8; }
.sh-why-card--2 .sh-why-card__icon-wrap { background: #B2EAF5; }
.sh-why-card--2 .sh-why-card__icon-wrap i { color: #006680; }
.sh-why-card--2 .sh-why-card__back      { background: #00A9CE; }
.sh-why-card--2 .sh-why-card__back-label { color: rgba(255,255,255,.75); }

/* 3 - mid navy */
.sh-why-card--3 .sh-why-card__front     { background: #EBF0F8; }
.sh-why-card--3 .sh-why-card__title     { color: #1C3A6B; }
.sh-why-card--3 .sh-why-card__icon-wrap { background: #C8D5EC; }
.sh-why-card--3 .sh-why-card__icon-wrap i { color: #1C3A6B; }
.sh-why-card--3 .sh-why-card__back      { background: #1C3A6B; }
.sh-why-card--3 .sh-why-card__back-label { color: rgba(255,255,255,.75); }

/* 4 - light cyan */
.sh-why-card--4 .sh-why-card__front     { background: #E4F5FA; }
.sh-why-card--4 .sh-why-card__title     { color: #0087A8; }
.sh-why-card--4 .sh-why-card__icon-wrap { background: #B8E6F2; }
.sh-why-card--4 .sh-why-card__icon-wrap i { color: #006680; }
.sh-why-card--4 .sh-why-card__back      { background: #0087A8; }
.sh-why-card--4 .sh-why-card__back-label { color: rgba(255,255,255,.75); }

/* 5 - navy-light */
.sh-why-card--5 .sh-why-card__front     { background: #EDF2F9; }
.sh-why-card--5 .sh-why-card__title     { color: #2C5296; }
.sh-why-card--5 .sh-why-card__icon-wrap { background: #CCDAEF; }
.sh-why-card--5 .sh-why-card__icon-wrap i { color: #1C3A6B; }
.sh-why-card--5 .sh-why-card__back      { background: #2C5296; }
.sh-why-card--5 .sh-why-card__back-label { color: rgba(255,255,255,.75); }

/* 6 - cyan (matches card 2) */
.sh-why-card--6 .sh-why-card__front     { background: #E0F7FC; }
.sh-why-card--6 .sh-why-card__title     { color: #0087A8; }
.sh-why-card--6 .sh-why-card__icon-wrap { background: #B2EAF5; }
.sh-why-card--6 .sh-why-card__icon-wrap i { color: #006680; }
.sh-why-card--6 .sh-why-card__back      { background: #00A9CE; }
.sh-why-card--6 .sh-why-card__back-label { color: rgba(255,255,255,.75); }


.sh-support-banner {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: center;
    background: url('/uploads/banners/bg-parallax-2.jpg') center center / cover no-repeat;
}
.sh-support-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(232,244,251,0.97) 45%, rgba(232,244,251,0.6) 70%, rgba(232,244,251,0.1) 100%);
    z-index: 1;
}
.sh-support-banner__content {
    position: relative;
    z-index: 2;
    max-width: 540px;
    padding: 64px 0;
}
.sh-support-banner__title {
    font-family: var(--sh-font-heading);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    color: #0A2342;
    margin-bottom: 14px;
    line-height: 1.25;
}
.sh-support-banner__desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--sh-gray-700);
    margin-bottom: 28px;
}
@media (max-width: 768px) {
    .sh-support-banner::before {
        background: rgba(232,244,251,0.93);
    }
    .sh-support-banner__content { padding: 48px 0; }
}


/* ════════ MOVED FROM certification.php ════════ */

.sh-trust-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: #fff;
}
.sh-trust-section__bg {
    display: none;
}
.sh-trust-section__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--sh-navy);
    text-align: center;
    margin-bottom: 52px;
    position: relative;
}
.sh-trust-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}
.sh-trust-tile {
    background: #fff;
    border-radius: 18px;
    width: 200px;
    padding: 32px 20px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .55s ease, transform .55s ease, box-shadow .3s ease;
    border: 1px solid rgba(0,169,206,.2);
    box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 2px 8px rgba(0,169,206,.12);
}
.sh-trust-tile.in-view {
    opacity: 1;
    transform: translateY(0);
}
.sh-trust-tile:hover {
    box-shadow: 0 20px 48px rgba(0,0,0,.22), 0 4px 16px rgba(0,169,206,.4);
    transform: translateY(-6px);
    border-color: rgba(0,169,206,.5);
}
.sh-trust-tile::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sh-cyan), var(--sh-navy-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.sh-trust-tile:hover::before { transform: scaleX(1); }

.sh-trust-tile__icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    border: 2px solid #d4e8f5;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    transition: background .3s ease, border-color .3s ease;
}
.sh-trust-tile:hover .sh-trust-tile__icon {
    background: var(--sh-cyan-light);
    border-color: var(--sh-cyan);
}
.sh-trust-tile__icon i {
    font-size: 28px;
    color: var(--sh-navy);
    transition: color .3s ease;
}
.sh-trust-tile:hover .sh-trust-tile__icon i { color: var(--sh-cyan-dark); }

.sh-trust-tile__num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--sh-navy);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}
.sh-trust-tile__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--sh-gray-700);
    line-height: 1.4;
}


.sh-awards-section {
    background: #EBF3FB;
    padding: 80px 0;
}
.sh-awards-layout {
    display: flex;
    align-items: center;
    gap: 48px;
}
.sh-awards-trophy {
    flex: 0 0 220px;
    text-align: center;
}
.sh-awards-trophy i {
    font-size: 120px;
    color: var(--sh-navy);
    opacity: .18;
    line-height: 1;
}
.sh-awards-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.sh-awards-grid .sh-award-logo {
    grid-column: span 2;
}
.sh-awards-grid .sh-award-logo:nth-child(4) {
    grid-column: 2 / span 2;
}
.sh-awards-grid .sh-award-logo:nth-child(5) {
    grid-column: 4 / span 2;
}
.sh-award-logo {
    background: #fff;
    border-radius: 10px;
    padding: 18px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(10,35,66,.08);
    box-shadow: 0 2px 10px rgba(10,35,66,.07);
    transition: box-shadow .3s ease, transform .3s ease;
    min-height: 80px;
    opacity: 0;
    transform: scale(.92);
    transition: opacity .45s ease, transform .45s ease, box-shadow .3s ease;
}
.sh-award-logo.in-view {
    opacity: 1;
    transform: scale(1);
}
.sh-award-logo:hover {
    box-shadow: 0 8px 24px rgba(10,35,66,.14);
    transform: translateY(-3px);
}
.sh-award-logo img {
    max-width: 100%;
    max-height: 56px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .75;
    transition: filter .3s ease, opacity .3s ease;
}
.sh-award-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}
@media (max-width: 991px) {
    .sh-awards-layout { flex-direction: column; gap: 32px; }
    .sh-awards-trophy { flex: unset; }
    .sh-awards-grid { grid-template-columns: repeat(4, 1fr); }
    .sh-awards-grid .sh-award-logo { grid-column: span 2; }
    .sh-awards-grid .sh-award-logo:nth-child(4) { grid-column: 1 / span 2; }
    .sh-awards-grid .sh-award-logo:nth-child(5) { grid-column: 3 / span 2; }
}
@media (max-width: 575px) {
    .sh-awards-grid { grid-template-columns: repeat(2, 1fr); }
    .sh-awards-grid .sh-award-logo { grid-column: span 1; }
    .sh-awards-grid .sh-award-logo:nth-child(4) { grid-column: span 1; }
    .sh-awards-grid .sh-award-logo:nth-child(5) { grid-column: span 1; }
}


/* ════════ MOVED FROM education.php ════════ */

/* ── Education Page Unique Styles ───────────────────── */

/* Split Hero */
.sh-edu-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}
.sh-edu-hero__left {
    background: var(--sh-navy);
    padding: 80px 60px 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.sh-edu-hero__left::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(0,169,206,.08);
}
.sh-edu-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sh-cyan);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.sh-edu-hero__title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}
.sh-edu-hero__title span { color: var(--sh-cyan); }
.sh-edu-hero__desc {
    color: rgba(255,255,255,.75);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 420px;
}
.sh-edu-hero__right {
    background: #EBF5FB;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.sh-edu-hero__stat {
    background: #fff;
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 2px 12px rgba(10,35,66,.07);
    border-left: 4px solid var(--sh-cyan);
}
.sh-edu-hero__stat-icon {
    width: 46px; height: 46px;
    background: var(--sh-cyan-light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.sh-edu-hero__stat-icon i { color: var(--sh-navy); font-size: 18px; }
.sh-edu-hero__stat-label { font-weight: 700; color: var(--sh-navy); font-size: 14px; margin-bottom: 2px; }
.sh-edu-hero__stat-sub { font-size: 12.5px; color: var(--sh-gray-600); }

@media (max-width: 767px) {
    .sh-edu-hero { grid-template-columns: 1fr; }
    .sh-edu-hero__left { padding: 52px 24px; }
    .sh-edu-hero__right { padding: 40px 24px; }
}

/* Topic Pillars */
.sh-edu-pillars {
    background: var(--sh-navy);
    padding: 0;
    overflow-x: auto;
}
.sh-edu-pillars__inner {
    display: flex;
    min-width: max-content;
}
.sh-edu-pillar {
    padding: 22px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid rgba(255,255,255,.08);
    cursor: default;
    transition: background .2s;
    text-decoration: none;
}
.sh-edu-pillar:hover { background: rgba(255,255,255,.06); }
.sh-edu-pillar__icon {
    width: 38px; height: 38px;
    background: rgba(0,169,206,.18);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.sh-edu-pillar__icon i { color: var(--sh-cyan); font-size: 15px; }
.sh-edu-pillar__text { color: #fff; font-size: 13px; font-weight: 600; white-space: nowrap; }

/* Learning path - horizontal step tracker */
.sh-learn-path {
    background: #fff;
    padding: 72px 0;
}
.sh-learn-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 48px;
}
.sh-learn-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 14%; right: 14%;
    height: 2px;
    background: linear-gradient(90deg, var(--sh-cyan), var(--sh-navy-light));
    z-index: 0;
}
.sh-learn-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}
.sh-learn-step__dot {
    width: 56px; height: 56px;
    background: #fff;
    border: 3px solid var(--sh-cyan);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    transition: background .3s, border-color .3s;
}
.sh-learn-step:hover .sh-learn-step__dot { background: var(--sh-cyan); }
.sh-learn-step__dot i { color: var(--sh-navy); font-size: 20px; transition: color .3s; }
.sh-learn-step:hover .sh-learn-step__dot i { color: #fff; }
.sh-learn-step__num {
    font-size: 11px;
    font-weight: 700;
    color: var(--sh-cyan);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.sh-learn-step__title { font-size: 14px; font-weight: 700; color: var(--sh-navy); margin-bottom: 8px; }
.sh-learn-step__text { font-size: 13px; color: var(--sh-gray-600); line-height: 1.65; }

@media (max-width: 767px) {
    .sh-learn-steps { grid-template-columns: 1fr 1fr; }
    .sh-learn-steps::before { display: none; }
}
@media (max-width: 480px) {
    .sh-learn-steps { grid-template-columns: 1fr; }
}

/* Editorial resource list */
.sh-edu-resources { background: #f4f7fb; padding: 80px 0; }
.sh-resource-list { display: flex; flex-direction: column; gap: 0; }
.sh-resource-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    background: #fff;
    border-bottom: 1px solid #eef1f6;
    transition: background .2s, box-shadow .2s;
    text-decoration: none;
}
.sh-resource-row:first-child { border-radius: 16px 16px 0 0; }
.sh-resource-row:last-child  { border-radius: 0 0 16px 16px; border-bottom: none; }
.sh-resource-row:hover { background: #f0f7ff; box-shadow: inset 4px 0 0 var(--sh-cyan); }
.sh-resource-row__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--sh-cyan-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.sh-resource-row__icon i { font-size: 22px; color: var(--sh-navy); }
.sh-resource-row__type {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--sh-cyan-dark);
    margin-bottom: 4px;
}
.sh-resource-row__title { font-size: 15px; font-weight: 700; color: var(--sh-navy); margin-bottom: 4px; }
.sh-resource-row__desc { font-size: 13.5px; color: var(--sh-gray-600); line-height: 1.6; margin: 0; }
.sh-resource-row__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    color: var(--sh-navy);
    background: var(--sh-gray-50);
    border: 1.5px solid var(--sh-gray-200);
    padding: 9px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
    flex-shrink: 0;
}
.sh-resource-row:hover .sh-resource-row__action {
    background: var(--sh-navy);
    color: #fff;
    border-color: var(--sh-navy);
}
@media (max-width: 767px) {
    .sh-resource-row { grid-template-columns: 56px 1fr; gap: 16px; padding: 20px 20px; }
    .sh-resource-row__action { display: none; }
}

/* Standards accordion */
.sh-standards-section { background: #fff; padding: 80px 0; }
.sh-std-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sh-std-accordion { border-radius: 14px; overflow: hidden; border: 1px solid #e8edf5; }
.sh-std-item { border-bottom: 1px solid #e8edf5; }
.sh-std-item:last-child { border-bottom: none; }
.sh-std-trigger {
    width: 100%; text-align: left; background: none; border: none;
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    cursor: pointer;
    font-size: 14.5px; font-weight: 700; color: var(--sh-navy);
    transition: background .2s;
}
.sh-std-trigger:hover { background: #f4f7fb; }
.sh-std-trigger.open { background: var(--sh-navy); color: #fff; }
.sh-std-trigger.open i.sh-std-arrow { transform: rotate(180deg); }
.sh-std-trigger .sh-std-badge {
    font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px;
    background: var(--sh-cyan-light); color: var(--sh-navy); white-space: nowrap; flex-shrink: 0;
}
.sh-std-trigger.open .sh-std-badge { background: rgba(255,255,255,.18); color: #fff; }
.sh-std-arrow { font-size: 12px; transition: transform .3s; flex-shrink: 0; }
.sh-std-body { display: none; padding: 16px 24px 20px; background: #f9fbff; font-size: 13.5px; color: var(--sh-gray-700); line-height: 1.75; }
.sh-std-body.open { display: block; }

.sh-std-visual { text-align: center; }
.sh-std-visual__circle {
    width: 220px; height: 220px; border-radius: 50%;
    background: linear-gradient(135deg, var(--sh-navy), var(--sh-navy-light));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 20px 60px rgba(10,35,66,.25);
}
.sh-std-visual__circle i { font-size: 48px; color: var(--sh-cyan); margin-bottom: 10px; }
.sh-std-visual__circle span { color: #fff; font-size: 14px; font-weight: 600; opacity: .85; }
.sh-std-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.sh-std-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 16px; border-radius: 50px;
    font-size: 13px; font-weight: 600;
    background: var(--sh-gray-50); color: var(--sh-navy);
    border: 1.5px solid var(--sh-gray-200);
}
.sh-std-tag i { color: var(--sh-cyan); font-size: 12px; }

@media (max-width: 991px) {
    .sh-std-layout { grid-template-columns: 1fr; }
    .sh-std-visual { order: -1; }
}

/* Expert CTA */
.sh-edu-cta {
    background: linear-gradient(135deg, #EBF5FB 0%, #deeef8 100%);
    padding: 80px 0;
}
.sh-edu-cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    padding: 48px 52px;
    box-shadow: 0 8px 40px rgba(10,35,66,.10);
}
.sh-edu-cta__label { color: var(--sh-cyan-dark); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.sh-edu-cta__title { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--sh-navy); margin-bottom: 12px; }
.sh-edu-cta__desc { color: var(--sh-gray-600); font-size: 14.5px; line-height: 1.75; margin: 0; }
.sh-edu-cta__actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
@media (max-width: 767px) {
    .sh-edu-cta__inner { grid-template-columns: 1fr; padding: 32px 24px; }
    .sh-edu-cta__actions { flex-direction: row; flex-wrap: wrap; }
}


/* ════════ MOVED FROM product-detail-template.php ════════ */

.sh-prod-detail-section { padding: 56px 0 40px; background: #fff; }
.sh-prod-detail-img-card {
    background: #f4f8fc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 32px;
    position: sticky;
    top: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}
.sh-prod-detail-img-card img {
    max-height: 440px;
    width: 100%;
    object-fit: contain;
    display: block;
}
.sh-prod-desc { font-size: 15px; line-height: 1.8; color: #444; }
.sh-prod-desc p { margin-bottom: 14px; text-align: justify; }
.sh-prod-desc ul { padding-left: 20px; margin-bottom: 14px; }
.sh-prod-desc ul li { margin-bottom: 7px; }
.sh-prod-desc h2 { font-size: 18px; font-weight: 700; color: var(--sh-navy); margin: 20px 0 10px; }
.sh-prod-desc hr { margin: 18px 0; border-color: #e2e8f0; }
.sh-quality-box {
    margin-top: 28px;
    padding: 20px 24px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}
.sh-quality-box__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    margin-bottom: 12px;
}
.sh-quality-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.sh-quality-badge {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sh-navy);
    white-space: nowrap;
}
.sh-quality-checks { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 4px; }
.sh-quality-check { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: #475569; }
.sh-quality-check i { color: #0ea5e9; font-size: 12px; }

.sh-prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 991px) { .sh-prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .sh-prod-grid { grid-template-columns: 1fr; } }

.sh-prod-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}
.sh-prod-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.10); transform: translateY(-3px); }
.sh-prod-card__img-wrap {
    background: #f4f8fc;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
}
.sh-prod-card__img { max-height: 230px; max-width: 100%; width: auto; margin: 0 auto; object-fit: contain; display: block; }
.sh-prod-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}
.sh-prod-card__name { font-size: 15px; font-weight: 700; color: var(--sh-navy); margin: 0; line-height: 1.4; }
.sh-prod-card__btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sh-navy);
    text-decoration: none;
    padding: 9px 18px;
    border: 1.5px solid var(--sh-gray-200);
    border-radius: 100px;
    background: #fff;
    width: fit-content;
    transition: background .2s, color .2s, border-color .2s, gap .2s, box-shadow .2s;
}
.sh-prod-card__btn i { transition: transform .2s; }
.sh-prod-card__btn:hover {
    background: var(--sh-cyan);
    border-color: var(--sh-cyan);
    color: #fff;
    gap: 9px;
    box-shadow: 0 6px 18px rgba(0,169,206,.30);
}
.sh-prod-card__btn:hover i { transform: translateX(2px); }

.sh-spec-table-wrap { overflow-x: auto; }
.sh-spec-table-wrap table { width: 100%; border-collapse: collapse; font-size: 14px; }
.sh-spec-table-wrap th {
    background: var(--sh-navy);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}
.sh-spec-table-wrap td {
    padding: 9px 14px;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    vertical-align: middle;
}
.sh-spec-table-wrap tr:nth-child(even) td { background: #f8fafc; }
.sh-spec-table-wrap tr:hover td { background: #eff6ff; }

/* Event page cards */
.sh-event-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
    border: 1px solid var(--sh-gray-200);
    box-shadow: 0 2px 8px rgba(10, 35, 66, .05);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.sh-event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(10, 35, 66, .12);
    border-color: var(--sh-cyan);
}
.sh-event-card__img-wrap {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: var(--sh-gray-50);
}
.sh-event-card__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}
.sh-event-card:hover .sh-event-card__img {
    transform: scale(1.06);
}
.sh-event-card__status {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .94);
    color: var(--sh-gray-700);
    font-size: 13px;
    line-height: 1;
    padding: 8px 12px;
}
.sh-gallery-item {
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: var(--sh-gray-50);
}
.sh-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.sh-event-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 20px 20px;
}
.sh-event-card__body .sh-btn {
    margin-top: auto;
    text-align: center;
}
.sh-event-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    color: var(--sh-gray-600);
    font-size: 14px;
    line-height: 1.55;
}
.sh-event-card__title {
    color: var(--sh-navy);
    font-family: var(--sh-font-serif);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin: 6px 0 10px;
}
.sh-event-card__desc {
    color: var(--sh-gray-600);
    line-height: 1.75;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 767px) {
    .sh-event-card__img-wrap {
        height: 220px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE BACKGROUND + RESPONSIVE FIXES
   Keep at end of file: several base rules below (.sh-vac-section__bg
   at ~L3732) share these selectors' specificity, so only later source
   order wins.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Tablet: keep the cropped hero, just stop it cropping badly ── */
@media (max-width: 991.98px) {
    .sh-page-hero__bg,
    .sh-hero-split__bg {
        background-position: center center;
        background-attachment: scroll;   /* `fixed` mispaints on iOS Safari */
    }

    /* `contain` letterboxed this to a sliver on phones. */
    .sh-vac-section__bg {
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
    }

    /* Overlay fades left-to-right, so copy lands on the transparent
       half once the banner narrows. Run it top-to-bottom instead. */
    .sh-support-banner {
        background-position: center center;
        background-attachment: scroll;
    }
    .sh-support-banner::before {
        background: linear-gradient(to bottom,
            rgba(232, 244, 251, 0.96) 40%,
            rgba(232, 244, 251, 0.75) 100%);
    }
}

/* ── Phone: keep the copy ON the banner, as on desktop ──
   The hero stays a cropped `cover` image with the text overlaid. Two
   things have to be handled for that to be legible on a phone:

   1. The scrim is a 90deg white->transparent->navy gradient, tuned for a
      wide viewport where the copy occupies the opaque left third. Once the
      banner narrows the copy spans the full width and would land on the
      transparent/navy end, so the veil is re-run vertically at a uniform
      opacity instead.
   2. The h1 font-size is set via INLINE style on the JS-rendered heroes
      (clamp(28px,3vw,42px)), so it can only be brought down with
      !important -- otherwise long titles wrap into the crop and clip. */
@media (max-width: 767.98px) {
    /* Hold the banner's own proportions instead of a tall vh crop, so the
       artwork is not zoomed in. Copy is overlaid on the left, as on desktop. */
    .sh-page-hero {
        display: flex;
        align-items: center;
        height: auto;
        min-height: 0;
        aspect-ratio: 22 / 10;
        padding: 0;
        overflow: hidden;
    }

    .sh-page-hero__bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center right;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }

    /* Keep the desktop idea -- opaque at the left where the copy sits,
       clearing to reveal the artwork on the right. */
    .sh-page-hero__scrim,
    .sh-page-hero > div:not(.sh-page-hero__bg):not(.sh-page-hero__content) {
        background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.90) 42%,
            rgba(255, 255, 255, 0.45) 68%,
            rgba(255, 255, 255, 0) 92%) !important;
    }

    .sh-page-hero__content {
        position: relative;
        z-index: 2;
        padding: 0;
        text-align: left;
    }

    /* Keep the copy inside the left half so it never runs onto the art.
       !important still guards the few heroes that size their h1 inline. */
    .sh-page-hero__content h1,
    .sh-page-hero__heading,
    .sh-page-hero__title {
        font-size: clamp(16px, 4.8vw, 22px) !important;
        line-height: 1.2 !important;
        color: var(--sh-navy) !important;
        margin-bottom: 6px !important;
        max-width: 40%;
        overflow-wrap: anywhere;
        white-space: normal !important;   /* undo --nowrap; it would overflow */
    }

    .sh-page-hero__content p,
    .sh-page-hero__subtitle {
        font-size: 11px !important;
        line-height: 1.45 !important;
        max-width: 50% !important;
        margin-bottom: 0 !important;
        color: var(--sh-gray-700) !important;
    }

    /* The cyan rule under the title. */
    .sh-page-hero__rule,
    .sh-page-hero__content h1 + div {
        width: 36px !important;
        height: 3px !important;
        margin-bottom: 8px !important;
    }

    /* Brand logo has to scale with the band -- at its desktop 70px it
       would eat most of a 177px hero and push the copy out of the crop. */
    .sh-page-hero__logo {
        max-height: 34px;
        max-width: 130px;
        margin-bottom: 8px;
    }

    .sh-breadcrumb {
        font-size: 11px;
    }
    .sh-breadcrumb .breadcrumb-item a,
    .sh-breadcrumb .breadcrumb-item.active {
        color: var(--sh-gray-700);
    }
}

/* ═══ Contact info cards (phone / email / whatsapp / address) ═══
   The .sh-contact-card markup existed but was never styled, so the row
   rendered as flat text. Equal-height cards, one per contact method.  */
.sh-contact-card {
    height: 100%;
    background: var(--sh-white);
    border: 1px solid var(--sh-gray-200);
    border-radius: var(--sh-radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sh-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(10, 35, 66, .10);
    border-color: rgba(0, 169, 206, .35);
}

.sh-contact-card__icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--sh-cyan);
    background: var(--sh-cyan-light);
}
/* WhatsApp keeps its own brand colour rather than the house cyan. */
.sh-contact-card__icon--wa {
    color: #25D366;
    background: rgba(37, 211, 102, .12);
}

.sh-contact-card h5 {
    font-weight: 700;
    color: var(--sh-navy);
    margin-bottom: 8px;
    font-size: 17px;
}
.sh-contact-card p {
    margin: 0;
    color: var(--sh-gray-600);
    line-height: 1.6;
    word-break: break-word;
}
.sh-contact-card p a {
    color: var(--sh-gray-600);
    text-decoration: none;
}
.sh-contact-card p a:hover {
    color: var(--sh-cyan);
}

/* ── Phone: education pillars stop scrolling sideways ──
   .sh-edu-pillars__inner is `min-width: max-content` inside an
   `overflow-x: auto` strip, so on a phone it became a 1517px-wide bar
   the user had to drag horizontally. Wrap it into stacked rows.       */
@media (max-width: 767.98px) {
    .sh-edu-pillars {
        overflow-x: visible;
    }
    .sh-edu-pillars__inner {
        flex-wrap: wrap;
        min-width: 0;
    }
    .sh-edu-pillar {
        flex: 1 1 100%;
        justify-content: flex-start;
        padding: 16px 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }
    .sh-edu-pillar:last-child {
        border-bottom: 0;
    }
}

/* ── Phone: journey timeline goes single-column ──
   The markup uses breakpoint-less .col-5/.col-7, so the two-column
   desktop layout survived onto phones and squeezed each card to ~100px
   of text. Collapse to one column with the spine in the left gutter.
   !important is required: the geometry is set via inline styles.     */
@media (max-width: 767.98px) {
    .sh-timeline__line {
        left: 20px !important;
        transform: none !important;
    }

    .sh-timeline__row {
        display: block !important;
        padding-left: 56px;
        margin-bottom: 16px !important;
    }

    .sh-timeline__badge {
        left: 20px !important;
        top: 24px !important;
        transform: translate(-50%, 0) !important;
        width: 44px !important;
        height: 44px !important;
        border-width: 2px !important;
    }
    .sh-timeline__badge span {
        font-size: 12px;
    }

    .sh-timeline__col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        text-align: left !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Empty half of the alternating layout — no purpose once stacked. */
    .sh-timeline__spacer {
        display: none !important;
    }
}

/* ── Phone: one paragraph size for the whole site ──
   Body copy had drifted to 11 different sizes (11px-20px) across
   components. Everything below is normalised to a single 15px.
   Placed last so it wins over the component rules; the hero subtitle
   is the one deliberate exception (see below). */
@media (max-width: 767.98px) {
    p {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }

    /* The hero is a fixed-ratio band ~177px tall. At 15px the subtitle
       wraps an extra line or two and pushes the copy out of the crop, so
       it keeps its own size. */
    .sh-page-hero__subtitle,
    .sh-page-hero__content p {
        font-size: 11px !important;
        line-height: 1.45 !important;
    }
}

@media (max-width: 575.98px) {
    /* Media must never force the page wider than the viewport. */
    img,
    video,
    iframe,
    table {
        max-width: 100%;
        height: auto;
    }
}

/* ── Cookie Consent Banner ───────────────────────────────── */
.sh-cookie-consent {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 100000; /* above #sh-page-loader (99998) and #sh-splash (99999) so it's never unclickable behind either overlay */
    max-width: 420px;
    width: calc(100% - 48px);
}
.sh-cookie-consent[hidden] { display: none; }
.sh-cookie-consent__box {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--sh-shadow-lg);
    border: 1px solid var(--sh-gray-200);
    padding: 20px 22px;
}
.sh-cookie-consent__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--sh-navy);
    margin: 0 0 8px;
}
.sh-cookie-consent__text {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--sh-gray-600);
    margin: 0 0 16px;
}
.sh-cookie-consent__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.sh-cookie-consent__actions .sh-btn {
    flex: 1 1 auto;
    justify-content: center;
    padding: 9px 16px;
    font-size: 13.5px;
}
@media (max-width: 575.98px) {
    .sh-cookie-consent { left: 12px; bottom: 12px; width: calc(100% - 24px); }
}
