@font-face {
    font-family: 'CompanyFont';
    src: url('../assets/fonts/KommonGrotesk-Regular.woff2') format('woff2'),
         url('../assets/fonts/KommonGrotesk-Regular.woff') format('woff'),
         url('../assets/fonts/KommonGrotesk-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CompanyFont';
    src: url('../assets/fonts/KommonGrotesk-Normal.woff2') format('woff2'),
         url('../assets/fonts/KommonGrotesk-Normal.woff') format('woff'),
         url('../assets/fonts/KommonGrotesk-Normal.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CompanyFont';
    src: url('../assets/fonts/Kommon-Grotesk-Bold.woff2') format('woff2'),
         url('../assets/fonts/Kommon-Grotesk-Bold.woff') format('woff'),
         url('../assets/fonts/Kommon-Grotesk-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CompanyFont';
    src: url('../assets/fonts/KommonGrotesk-ExtraBold.woff2') format('woff2'),
         url('../assets/fonts/KommonGrotesk-ExtraBold.woff') format('woff'),
         url('../assets/fonts/KommonGrotesk-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  /* Removed overflow-x and overflow-y to prevent them from breaking position: sticky */
}

:root {
    --font-primary: 'CompanyFont', sans-serif;
    --text-dark: #0a1024;
    --text-medium: #475569;
    --light-blue: #3b82f6;
    --brand-blue: #0b1a4a;
    --bg-white: #ffffff;
    --bg-gray: #f8fafc;
    --bg-dark: #0a1024;
    --border-color: #e2e8f0;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);

    --transition: cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.bg-light {
    background-color: var(--white);
}

.bg-deep-blue {
    background-color: #06154d;
    /* As per first screenshot */
}

.bg-cyan {
    background: linear-gradient(135deg, #4340F5 0%, #1e40af 100%);
}

.bg-news {
    background: #050b18;
    position: relative;
    padding: 30px 0;
}

.edu-miracle {
    background: linear-gradient(135deg, #4340F5 0%, #1e40af 100%);
    position: relative;
    padding: 30px 0;
}

.mt-miracle {
    margin-top: 5rem !important;
}

.orb-cyan-1 {
    width: min(100%, 500px);
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    top: -200px;
    right: -100px;
    border-radius: 50%;
    
    position: absolute;
    animation: orbFloat 25s infinite alternate;
}

.orb-cyan-2 {
    width: min(100%, 400px);
    height: 400px;
    background: rgba(0, 0, 0, 0.05);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    
    position: absolute;
    animation: orbFloat 20s infinite alternate-reverse;
}

.values-gif-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    background-image: url("assets/images/wave-gif.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0.3; /* adjust */
}
.btn-outline-glow-cyan {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-glow-cyan:hover {
    background: white;
    color: #1e40af;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bg-light-blue {
    background-color: #daebff;
}

/* Color Palette Adjustments - Darker Theme Shades */
.bg-shade-innovation {
    background-color: #0c1631 !important; /* Deep Clinical Navy */
}

.bg-shade-news {
    background-color: #437ec6 !important;
}

.bg-shade-edu {
    background-color: #9cb3d1 !important;
}

.bg-shade-values {
    background-color: #90aac7 !important;
}

/* Text Contrast Adjustments for Blue Sections */
[class*="bg-shade-"] .section-title,
[class*="bg-shade-"] .section-title .light-blue,
[class*="bg-shade-"] .hero-title,
[class*="bg-shade-"] h2 {
    color: #ffffff !important;
}

[class*="bg-shade-"] .section-title span,
[class*="bg-shade-"] h2 span {
    color: #0b1a4a !important;
    /* Deep Navy Accent */
}

[class*="bg-shade-"] .section-desc,
[class*="bg-shade-"] .section-container>p {
    color: rgba(255, 255, 255, 0.95) !important;
}

[class*="bg-shade-"] .eyebrow {
    color: #ffffff !important;
    opacity: 0.95;
}

/* Ensure cards and specific items stay clear - EXPLICIT NAVY for card content */
[class*="bg-shade-"] .miracle-card {
    background: #ffffff;
}

[class*="bg-shade-"] .miracle-card p,
[class*="bg-shade-"] .miracle-card h3,
[class*="bg-shade-"] .miracle-content h3,
[class*="bg-shade-"] .miracle-content p {
    color: #0b1a4a !important;
}

/* Special fix for Event Cards with Background Images (White Text) */
#events .miracle-content h3,
#events .miracle-meta,
#events .miracle-hidden p {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

#events .miracle-tag {
    color: var(--light-blue) !important;
    font-weight: 800;
}

#events .miracle-overlay {
    background: linear-gradient(to top, rgba(11, 26, 74, 0.95) 0%, rgba(11, 26, 74, 0.4) 60%, transparent 100%) !important;
    opacity: 1 !important;
}

[class*="bg-shade-"] .btn-outline-glow-cyan {
    border-color: #ffffff;
    color: #ffffff;
}


.bg-gray {
    background-color: #f8fafc;
}

.bg-dark {
    background-color: var(--bg-dark);
}

.text-gray {
    color: #718096;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    
    --light-blue: #3b82f6;
    
    scroll-padding-top: 80px;
    font-size: clamp(1rem, 1vw, 1rem);
}

html, body {
    font-family: var(--font-primary);
    background-color: var(--bg-white);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    user-select: none;
    -webkit-user-select: none;
    padding-top: 64px; /* matches fixed navbar height exactly */
}
.site-container {
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    box-sizing: border-box !important;
}

@media (max-width: 1024px) {
    .site-container {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
}

@media (max-width: 768px) {
    .site-container {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

@media (max-width: 480px) {
    .site-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

.section-container {
    position: relative;
    display: block;
}

.section-standard {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

/* Premium Navbar & Scroll Effects */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    z-index: 1000;
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1) !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-dark {
    color: var(--text-dark);
}

.light-blue {
    color: var(--light-blue);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-white {
    color: white !important;
}

.section {
    padding: 30px 2rem;
    position: relative;
    z-index: 10;
    
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--brand-blue);
}

.section-desc {
    color: var(--text-medium);
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.bg-dark-header.navbar-scrolled {
    background: rgba(10, 20, 55, 0.9);
}


.logo {
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
    height: 56px !important; /* Spacious height headroom for original dimensions */
    width: auto !important;
    padding: 0 !important;
    overflow: visible !important; /* Never clip or crop parent containers */
}
.logo-img {
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    height: 36px !important; /* Lock strictly at 36px clean proportions */
    width: auto !important;
    max-width: 100% !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    display: block !important;
    object-fit: contain !important;
    box-shadow: none !important;
    outline: none !important;
    overflow: visible !important;
    transform: none !important;
    transition: none !important;
    filter: none !important;
    clip-path: none !important; /* Critical: Disables global inset(5px) to prevent cropping on the letter 'n' */
    image-rendering: auto !important; /* Use auto for smoothest downscaling */
}

.logo,
.logo img,
.logo-img,
.logo:hover,
.logo img:hover,
.logo-img:hover {
    transform: none !important;
    transition: none !important;
    filter: none !important;
    opacity: 1 !important;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-toggle {
    display: none;
}

.nav-links>li>a {
    font-size: clamp(1rem, 1vw, 1rem);
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.nav-links>li>a:hover {
    color: var(--light-blue);
}

.search-nav-item {
    margin-left: 1.5rem;
}

.nav-search-link {
    color: var(--text-dark) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.nav-search-link:hover {
    color: var(--light-blue) !important;
    transform: scale(1.15);
}

.product-page .search-nav-item {
    display: none !important;
}

.search-icon svg {
    cursor: pointer;
    color: #121545;
}

/* Nav Chevron — SVG dropdown indicator */
.nav-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
    vertical-align: middle;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-chevron svg {
    display: block;
    stroke: currentColor;
}

/* Rotate chevron when dropdown opens on hover */
.dropdown-container:hover > a .nav-chevron {
    transform: rotate(180deg);
}

/* Mega Menu */
.dropdown-container {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: -200px;
    width: 1300px;
    max-height: 70vh;
    overflow-y: auto;
    background: var(--bg-white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease;
    z-index: 1000;
}

@media (max-width: 1400px) {
    .mega-menu {
        width: 90vw;
        left: auto;
        right: 0;
    }
}

/* Premium Scrollbar */
.mega-menu::-webkit-scrollbar {
    width: 6px;
}

.mega-menu::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    margin: 1rem 0;
}

.mega-menu::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 8px;
}

.mega-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.6);
}

.dropdown-container:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-column {
    flex: 1;
    padding-right: 1.5rem;
}

.mega-column h4 {
    font-size: clamp(1rem, 1.05vw, 1.05rem);
    color: var(--light-blue);
    margin-bottom: 0.8rem;
    margin-top: 1.2rem;
    font-weight: 600;
}

.mega-column h4:first-child {
    margin-top: 0;
}

.mega-column ul li {
    margin-bottom: 0.5rem;
}

.mega-column ul li a {
    font-size: clamp(1rem, 0.95vw, 0.95rem);
    color: var(--text-dark);
    font-weight: 500;
}

.mega-column ul li a:hover {
    color: var(--light-blue);
}

.more-link {
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fff;
    z-index: 1;
    padding-top: 40px;
    
}

body:has(#canvas-container) {
    background-color: transparent !important;
}

/* --- REPLACE WITH THIS --- */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    min-width: 100vw;
    min-height: 100vh;
    z-index: -1;
    pointer-events: none;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    opacity: 0.15;
}

/* Forces the inner canvas background layer to expand edge to edge */
#canvas-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

.contour-bg-svg {
    position: absolute;
    top: -3%;
    left: -3%;
    width: 106vw;
    height: 106vh;
    opacity: 0.15; /* 15% visibility, premium clinical look with low visibility */
    pointer-events: none;
    transform-origin: center center;
}

.contour-bg-svg path {
    stroke-width: 1.2px !important; /* Thinner, more elegant lines */
    stroke: rgba(8, 27, 99, 0.15) !important; /* Much lighter blue tint */
    fill: none !important;
}

@keyframes slowStaticDrift {
    0% {
        transform: translate3d(0, 0, 0) scale(1.02) rotate(0deg);
        opacity: 0.35;
    }
    33% {
        transform: translate3d(-25px, -15px, 0) scale(1.04) rotate(0.25deg);
        opacity: 0.75;
    }
    66% {
        transform: translate3d(20px, -30px, 0) scale(1.02) rotate(-0.25deg);
        opacity: 0.45;
    }
    100% {
        transform: translate3d(-15px, 20px, 0) scale(1.05) rotate(0.15deg);
        opacity: 0.85;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, transparent 20%, rgba(250, 249, 246, 0.8) 100%);
    z-index: 2;
}

/* Abstract wave pattern using CSS repetitive radials */
.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-radial-gradient(circle at 0% 50%,
            transparent 0,
            transparent 20px,
            rgba(59, 130, 246, 0.05) 20px,
            rgba(59, 130, 246, 0.05) 21px),
        repeating-radial-gradient(circle at 100% 50%,
            transparent 0,
            transparent 30px,
            rgba(59, 130, 246, 0.04) 30px,
            rgba(59, 130, 246, 0.04) 31px);
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    position: relative;
    transform: translateY(-10%);
    /* Shift upwards for brand header look */
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1a202c;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: var(--text-medium);
    max-width: min(100%, 500px);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.hero-image {
    max-height: 80%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.15));
}

.floating {
    animation: floatImage 8s ease-in-out infinite;
}

/* Category Grid */
.product-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    /* Increased gap for breathing room */
    margin-top: 4rem;
}



/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatImage {
    0% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0) rotate(-2deg);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
    animation-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
    animation-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
    animation-delay: 0.3s;
}

/* Model Viewer Styles */


model-viewer {
    width: 100%;
    height: 100%;
    background-color: transparent;
    --poster-color: transparent;
}

.cat-card:hover .model-wrapper {
    transform: translateY(-10px);
    box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.02), 0 20px 40px rgba(59, 130, 246, 0.15);
}

/* Stats Section */
.bg-light {
    background-color: var(--bg-gray);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    padding: 2rem;
}

.stat-title {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    color: var(--text-medium);
    font-weight: 500;
}

.stat-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.stat-number {
    font-size: clamp(2.10rem, 4.2vw, 3.5rem);
    font-weight: 800;
    color: var(--brand-blue);
    line-height: 1.2;
    margin: 0.5rem 0;
}

.stat-unit {
    font-size: clamp(0.90rem, 1.8vw, 1.5rem);
    font-weight: 700;
    color: var(--light-blue);
}

/* Search Overlay Styling */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 16, 36, 0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    backdrop-filter: blur(10px);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.overlay-close {
    position: absolute;
    top: 3rem;
    right: 3rem;
    font-size: clamp(2rem, 3vw, 3rem);
    color: white;
    cursor: pointer;
}

.search-wrap {
    width: 90%;
    max-width: 800px;
}

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0;
    font-size: clamp(1.50rem, 3.0vw, 2.5rem);
    color: white;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--light-blue);
}

.search-results {
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(1rem, 1.2vw, 1.2rem);
}


/* About Section */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-list {
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-list svg {
    width: 20px;
    height: 20px;
    color: var(--light-blue);
}

.btn-primary {
    background-color: var(--light-blue);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(59, 130, 246, 0.3);
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    background: white;
    opacity: 0.2;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    left: 50px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Help Buttons Footer Section */
.help-btn {
    background: #0b1a4a;
    color: #ffffff !important;
    padding: 20px 40px;
    border-radius: 8px;
    /* Matching the sharp yet slightly rounded look */
    font-weight: 700;
    font-size: clamp(1rem, 1vw, 1rem);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
}

.help-btn:hover {
    transform: scale(1.01);
    background: #121545;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--light-blue) !important;
}

/* Footer Section Padding Adjustments */
.footer {
    padding-top: 60px;
    background-color: #0b1a4a;
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: white;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    margin-bottom: 2rem;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

/* Education Grid */
.edu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.edu-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.edu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.edu-img {
    height: 260px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.edu-card:hover .edu-img {
    transform: scale(1.05);
}

.edu-body {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.edu-body h3 {
    font-size: clamp(0.90rem, 1.8vw, 1.5rem);
    color: var(--brand-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.edu-body p {
    margin-bottom: 1.5rem;
}

.text-link {
    color: var(--light-blue);
    font-weight: 700;
    font-size: clamp(1rem, 0.9vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Event List */
.event-list {
    margin-top: 2rem;
}

.event-item {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
    background: #f1f5f9;
    border-radius: 16px;
    color: var(--brand-blue);
}

.event-date .day {
    font-size: clamp(1.05rem, 2.1vw, 1.75rem);
    font-weight: 800;
    line-height: 1;
}

.event-date .month {
    font-size: clamp(1rem, 0.75vw, 0.75rem);
    font-weight: 700;
}

.event-info h3 {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    margin-bottom: 0.25rem;
}

.event-info p {
    color: var(--text-medium);
}

.event-hero-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}


.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: bold;
    color: white;
}

.social-icon:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Interactive Drill Section */
.drill-section {
    background-color: var(--bg-white);
}

.drill-layout {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.drill-text {
    flex: 1;
}

.eyebrow {
    font-size: clamp(1rem, 0.85vw, 0.85rem);
    font-weight: 800;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.drill-headline {
    font-size: clamp(2.10rem, 4.2vw, 3.5rem);
    line-height: 1.1;
    color: var(--brand-blue);
    font-weight: 400;
    margin-bottom: 3rem;
}

.drill-headline .light-blue {
    font-weight: 600;
}

.drill-features {
    border-top: 1px solid transparent;
    max-width: min(100%, 450px);
}

.drill-features li {
    padding: 1.5rem 0;
    border-bottom: 1px solid #c9defe;
}

.drill-features h4 {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.drill-features p {
    color: var(--text-dark);
    font-weight: 500;
}

.drill-visual {
    flex: 1.2;
    position: relative;
    height: 550px;
}

.drill-controls {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 2rem;
    z-index: 10;
}

.drill-controls button {
    background: none;
    border: none;
    color: var(--text-medium);
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drill-controls button:hover {
    color: var(--light-blue);
    transform: scale(1.1);
}

#drill-model {
    width: 100%;
    height: 100%;
    --poster-color: transparent;
}


/* Product Detail Specifics */
.breadcrumb {
    background: #0b1a4a;
    color: white;
    padding: 100px 2rem 1rem;
    font-size: clamp(1rem, 0.9vw, 0.9rem);
}

.prod-hero {
    padding: 4rem 2rem;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.prod-hero .text-blue {
    font-size: clamp(2rem, 4vw, 4rem);
    color: var(--light-blue);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.prod-hero h2 {
    font-size: clamp(1.20rem, 2.4vw, 2rem);
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.trust-marquee {
    background: #f8fafc;
    padding: 0.75rem 0 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: none;
    display: flex;
    align-items: center;
}

.trust-tagline {
    font-size: clamp(1rem, 0.75vw, 0.75rem);
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-medium);
    white-space: nowrap;
    padding: 0 4rem 0 2rem;
    background: #f8fafc;
    position: relative;
    z-index: 10;
    box-shadow: 20px 0 30px #f8fafc;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marquee-track .dot {
    width: 6px;
    height: 6px;
    background: var(--light-blue);
    border-radius: 50%;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Innovation Section Stack */
.visual-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    min-height: 600px;
}

.stack-item {
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.item-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f172a;
    /* Solid dark blue */
    z-index: 0;
    opacity: 0.8;
}

.item-2 {
    width: 100%;
    max-width: 480px;
    height: 320px;
    background-image: url('https://images.unsplash.com/photo-1551076805-e1869033e561?auto=format&fit=crop&q=80&w=800');
    z-index: 2;
    position: relative;
    margin-top: 2rem;
}

/*.glass-info {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.2rem;
    border-radius: 24px;
    width: 100%;
    max-width: 420px;
    z-index: 10;
    color: white;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    animation: floatOverlay 6s ease-in-out infinite;
    margin-bottom: -3rem;
    /* Settles above and slightly over the picture 
}*/

.info-cards {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}



.glass-info {
    position: absolute;
    top: -3rem;
    /* Moved ABOVE the image stack */
    right: -2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.2rem;
    border-radius: 24px;
    width: 360px;
    z-index: 10;
    color: white;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    animation: floatOverlay 6s ease-in-out infinite;
}

@keyframes floatOverlay {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}



.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--light-blue);
    border-radius: 50px;
    font-size: clamp(1rem, 0.7vw, 0.7rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Global Reach Map */
.map-container {
    position: relative;
    margin-top: 4rem;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.world-map {
    width: 100%;
    display: block;
    filter: saturate(0.5) contrast(1.1);
}

.pulse-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--light-blue);
    border-radius: 50%;
    z-index: 5;
}

.pulse-point::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    border: 2px solid var(--light-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Auxein Hyperspace: Surgical Warp Engine */
.magic-container {
    background: url('../../assets/images/stone_texture.jpg') center/cover no-repeat fixed;
    perspective: 2000px;
    overflow-x: hidden;
    position: relative;
}

.magic-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.7); /* Cinematic Dark Overlay */
    z-index: 1;
}

.holographic-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    pointer-events: none;
    transform: rotateX(60deg) translateY(-200px);
    opacity: 0.2;
}

.magic-section {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), 
                opacity 1.2s ease,
                filter 1.2s ease;
    z-index: 5;
    background: rgba(255, 255, 255, 0.9); /* Glassmorphic Base */
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, transparent, var(--light-blue), transparent);
    box-shadow: 0 0 40px var(--light-blue);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
}

.scan-active {
    animation: scanWipe 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes scanWipe {
    0% { top: -100px; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 120vh; opacity: 0; }
}

/* Kinetic Floating Elements */
.warp-layer {
    transition: transform 0.1s ease-out;
}
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-white);
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
    border: 3px solid var(--bg-white);
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.drill-model-container {
    position: relative;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 30px;
    border: 1px solid var(--border-color);
}

.model-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: clamp(1rem, 0.85vw, 0.85rem);
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.model-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}

.overview-section,
.features-section {
    padding: 4rem 0;
    background: #fff;
}

.overview-grid,
.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    padding: 0 2rem;
    align-items: center;
}

.main-image-container {
    height: 400px;
    background: transparent;
    border-radius: 12px;
    margin: 2rem 0;
}

.thumbnail-gallery {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.thumb {
    width: 90px;
    height: 90px;
    background: #f8fafc;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 0.8vw, 0.8rem);
    text-align: center;
    transition: var(--transition);
}

.thumb.active {
    border: 2px solid var(--light-blue);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
}

.features-list ul {
    margin-top: 2rem;
}

.features-list li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: clamp(1rem, 1.05vw, 1.05rem);
}

.features-list li::before {
    content: "•";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--text-dark);
    font-size: clamp(0.90rem, 1.8vw, 1.5rem);
    line-height: 1.2rem;
}

.features-visual {
    height: 500px;
    background: transparent;
}

.docs-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.doc-card {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: var(--transition);
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Rolex-Standard Technical Specifications Table */
.rolex-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.rolex-spec-table th, .rolex-spec-table td {
    padding: 25px 40px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.rolex-spec-table th {
    background: #fcfcfc;
    font-size: clamp(1rem, 0.85vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    font-weight: 700;
}

.rolex-spec-table td {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    color: #333;
    font-weight: 500;
}

.rolex-spec-table tr:last-child td {
    border-bottom: none;
}

/* Bento-Box Feature Suite */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 24px;
    margin-top: 50px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: var(--light-blue);
}

.bento-item h4 {
    font-size: clamp(0.84rem, 1.7vw, 1.4rem);
    margin-bottom: 15px;
    color: var(--navy-deep);
}

.bento-item p {
    color: #666;
    line-height: 1.6;
}

.bento-1 { grid-column: span 8; }
.bento-2 { grid-column: span 4; }
.bento-3 { grid-column: span 4; }
.bento-4 { grid-column: span 8; }

.bento-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: clamp(1rem, 0.7vw, 0.7rem);
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--light-blue);
    opacity: 0.5;
}

/* Scroll-Scale Precision Hero */
.hero-image-wrap {
    perspective: 1000px;
    overflow: visible !important;
}

.animate-clinical-plate {
    transition: transform 0.1s linear !important;
    will-change: transform;
}

/* Cat Card Miracle */
.cat-card {
    background: white;
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}

.cat-card h4 {
    color: #0b1a4a;
    font-size: clamp(1rem, 0.95vw, 0.95rem);
    font-weight: 700;
}

.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(11, 26, 74, 0.1);
    border-color: rgba(0, 163, 224, 0.3);
}

.cat-line {
    width: 25px;
    height: 2px;
    background: var(--light-blue);
    margin: 10px auto;
    transition: all 0.5s ease;
}

.cat-card:hover .cat-line {
    width: 45px;
}

.model-wrapper {
    width: 100%;
    height: 120px;
    margin-bottom: 8px;
    background: #ffffff;
    overflow: hidden;
    border: none !important;
}

.cat-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
    outline: 10px solid #ffffff;
    outline-offset: -10px;
    transform: scale(1.04);
}

.product-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 25px;
    backdrop-filter: blur(10px);
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-20deg);
    transition: 0.7s;
}

.info-card:hover::after {
    left: 140%;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(59, 130, 246, 0.1);
    transform: translateY(-5px);
}

.info-icon {
    font-size: clamp(1.32rem, 2.6vw, 2.2rem);
    background: rgba(59, 130, 246, 0.12);
    min-width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.info-card:hover .info-icon {
    background: var(--light-blue);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.info-card h3 {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    font-weight: 700;
    color: white;
    margin: 0 0 4px 0;
}

.info-card p {
    font-size: clamp(1rem, 0.85vw, 0.85rem);
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

.help-section {
    background: #FAF9F6;
    padding: 80px 20px 40px;
}

.help-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.help-title {
    font-size: 3rem;
    font-weight: 300;
    color: #06154D;
    margin-bottom: 60px;
}

.help-title strong {
    font-weight: 800;
}

.help-actions {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
}

.help-btn {
    width: 100%;
    max-width: 600px;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #06154D;
    color: #fff;

    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.95rem;

    border-radius: 24px;
    transition: all 0.3s ease;
}

.help-btn:hover {
    transform: translateY(-2px);
    background: #0A1F6B;
}
.help-title {
    font-family: var(--font-primary) !important;
}

.help-btn {
    font-family: var(--font-primary) !important;
}
.help-footer {
    margin-top: 60px;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
}

.photo-gallery {
    display: flex;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto;
    overflow-x: auto;
    padding-bottom: 1rem;
    justify-content: center;
}

.photo-gallery .gallery-item {
    min-width: 160px;
    height: 160px;
    background: #f1f5f9;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.help-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 650px;
    margin: 2rem auto;
}

.footer {
    background: #0a1128;
    color: white;
    padding: 6rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-col h4 {
    color: white;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 0.95vw, 0.95rem);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: clamp(1rem, 0.95vw, 0.95rem);
}

.footer-col ul li a:hover {
    color: var(--light-blue);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(1rem, 0.8vw, 0.8rem);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(1rem, 0.9vw, 0.9rem);
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; /* 2 columns to save vertical space */
        gap: 2rem;
    }
    .footer-container .brand-col {
        grid-column: 1 / -1; /* Make the intro/logo span full width */
    }
    .footer-container .footer-col:last-child {
        grid-column: 1 / -1; /* Make the Connect section span full width */
    }
}

.btn-dark {
    background: #0b1a4a;
    color: white;
    padding: 1.25rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: clamp(1rem, 1.05vw, 1.05rem);
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 10px 20px rgba(11, 26, 74, 0.15);
}

.btn-dark:hover {
    background: var(--light-blue);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

/* Globe Section */
.globe-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

#globe-canvas {
    width: 100%;
    height: 100%;
    max-width: 800px;
}

.floating-stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 20px;
    color: white;
    z-index: 10;
    width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.floating-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--light-blue);
}

.floating-stat-card h4 {
    color: var(--light-blue);
    font-size: clamp(1rem, 0.9vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.floating-stat-card p {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    font-weight: 700;
}

.continent-1 {
    top: 10%;
    left: 5%;
}

.continent-2 {
    top: 20%;
    right: 5%;
}

.continent-3 {
    bottom: 20%;
    right: 10%;
}

.continent-4 {
    bottom: 10%;
    left: 10%;
}

@media (max-width: 768px) {
    .globe-wrapper {
        height: 400px;
    }

    .floating-stat-card {
        display: none;
        /* Hide on mobile to avoid clutter */
    }
}

/* Next Level Care Section */
.next-level-section {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.next-level-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 25px;
    padding: 0 20px;
}

.next-level-header h2 {
    font-size: clamp(1.68rem, 3.4vw, 2.8rem);
    color: var(--brand-blue);
    margin-bottom: 15px;
    line-height: 1.1;
}

.next-level-header h2 span {
    color: var(--light-blue);
}

.next-level-header .section-desc {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    line-height: 1.5;
    color: #4b5563;
}

.care-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    grid-template-rows: repeat(2, min(240px, 28vh));
    gap: 15px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.care-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #f1f5f9;
}

.care-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.care-card:hover img {
    transform: scale(1.1);
}

.care-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(10, 20, 55, 0.1) 0%,
            rgba(10, 20, 55, 0.2) 40%,
            rgba(10, 20, 55, 0.8) 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    transition: all 0.5s ease;
}

.care-card:hover .care-overlay {
    background: linear-gradient(to bottom,
            rgba(13, 110, 253, 0.1) 0%,
            rgba(13, 110, 253, 0.2) 40%,
            rgba(10, 20, 55, 0.9) 100%);
}

.care-overlay h3 {
    font-size: clamp(0.90rem, 1.8vw, 1.5rem);
    margin-bottom: 12px;
    font-weight: 700;
}

.care-overlay p {
    font-size: clamp(1rem, 1vw, 1rem);
    opacity: 0.9;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.care-card:hover .care-overlay p {
    transform: translateY(0);
}

/* Grid Positions */
.card-innovation {
    grid-row: 1 / span 2;
}

.card-integrity {
    grid-column: 2;
    grid-row: 1;
}

.card-quality {
    grid-column: 2;
    grid-row: 2;
}

.card-focus {
    grid-row: 1 / span 2;
}

/* Entrance Animations */
.reveal-left {
    transform: translateX(-100px);
    opacity: 0;
}

.reveal-right {
    transform: translateX(100px);
    opacity: 0;
}

.reveal-bottom {
    transform: translateY(100px);
    opacity: 0;
}

.reveal-scale {
    transform: scale(0.8);
    opacity: 0;
}

.reveal-active {
    transform: translate(0, 0) scale(1) !important;
    opacity: 1 !important;
    transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

@media (max-width: 1024px) {
    .care-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 0 20px;
    }

    .card-innovation,
    .card-integrity,
    .card-quality,
    .card-focus {
        grid-row: auto;
        grid-column: auto;
        height: 400px;
    }

    .next-level-header h2 {
        font-size: clamp(1.68rem, 3.4vw, 2.8rem);
    }
}

/* Miracle News Section */
.news-miracle {
    background: #050b18;
    position: relative;
    padding: 60px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.orb {
    position: absolute;
    border-radius: 50%;
    
    z-index: 1;
    opacity: 0.5;
    animation: orbFloat 20s infinite alternate;
}

.orb-1 {
    width: min(100%, 400px);
    height: 400px;
    background: rgba(13, 110, 253, 0.15);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: min(100%, 450px);
    height: 450px;
    background: rgba(0, 188, 212, 0.1);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(13, 110, 253, 0.1);
    top: 40%;
    left: 50%;
    animation-delay: -10s;
}

.orb-1-light {
    background: rgba(59, 130, 246, 0.08);
    top: 0;
    left: 0;
    width: min(100%, 500px);
    height: 500px;
}

.orb-2-light {
    background: rgba(0, 163, 224, 0.05);
    bottom: 0;
    right: 0;
    width: min(100%, 400px);
    height: 400px;
}

.orb-cyan-1-light {
    background: rgba(0, 188, 212, 0.06);
    top: 20%;
    left: 10%;
    width: 600px;
    height: 600px;
}


@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 100px) scale(1.2);
    }
}

/* Global Stat Grid (6-card layout under the globe) */
.global-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    padding: 0 4px;
}

.global-stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: transform 0.35s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    cursor: default;
}

.global-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.global-stat-number {
    font-size: clamp(1.68rem, 3.4vw, 2.8rem);
    font-weight: 800;
    color: #0b1a4a;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.global-stat-label {
    font-size: clamp(1rem, 0.9vw, 0.9rem);
    font-weight: 500;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .global-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .global-stat-grid {
        grid-template-columns: 1fr;
    }
}

.miracle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.miracle-card {
    position: relative;
    height: 420px;
    border-radius: 32px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.miracle-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.miracle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 11, 24, 0) 20%, rgba(5, 11, 24, 0.9) 100%);
    transition: background 0.5s ease;
}

.miracle-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 5;
    color: white;
}

.miracle-tag {
    font-size: clamp(1rem, 0.7vw, 0.7rem);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--light-blue);
}

.miracle-content h3 {
    font-size: clamp(1.20rem, 2.4vw, 2rem);
    margin-bottom: 8px;
    font-weight: 800;
}

.miracle-meta {
    font-size: clamp(1rem, 0.9vw, 0.9rem);
    opacity: 0.85;
    margin-bottom: 20px;
}


.miracle-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.miracle-hidden p {
    font-size: clamp(1rem, 0.95vw, 0.95rem);
    margin-bottom: 24px;
    line-height: 1.6;
}

.miracle-card:hover .miracle-hidden {
    max-height: 200px;
    opacity: 1;
}

.miracle-card:hover .miracle-image {
    transform: scale(1.1);
}

.miracle-card:hover .miracle-overlay {
    background: linear-gradient(to bottom, rgba(13, 110, 253, 0.2) 0%, rgba(5, 11, 24, 0.95) 100%);
}

.miracle-btn {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(1rem, 0.85vw, 0.85rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.miracle-btn:hover {
    border-color: var(--light-blue);
    color: var(--light-blue);
}

.btn-outline-glow {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.btn-outline-glow:hover {
    border-color: var(--light-blue);
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.3);
    transform: scale(1.05);
}

.text-glow {
    background: linear-gradient(to right, #00bcd4, #0d6efd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 188, 212, 0.3));
}

/* Engineering Visual Single */
.engineering-visual {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.engineering-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.engineering-visual:hover img {
    transform: scale(1.05);
}

/* Global Presence Globe Wrap */
.globe-wrapper {
    position: relative;
    height: 600px;
    margin-top: 50px;
}


/* Innovation Cinematic - Hyper-Modern Bento Section */
.innovation-cinematic {
    background: #050d26;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    
    z-index: 1;
    opacity: 0.15;
}

.glow-1 {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, #4340F5, transparent 70%);
}

.glow-2 {
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, #012b6d, transparent 70%);
}

.innovation-bento {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    height: 65vh;
    min-height: 500px;
}

.bento-item {
    position: relative;
    z-index: 2;
}

.bento-item.lead-item {
    grid-row: span 2;
}

.bento-glass-card {
    height: 100%;
    background: rgba(12, 22, 49, 0.7); /* Deep Navy Match */
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                inset 0 0 40px rgba(255, 255, 255, 0.02);
}

.bento-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    pointer-events: none;
}

.lead-item .bento-glass-card {
    justify-content: flex-start;
    padding-top: 45px;
}

.bento-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.bento-glass-card:hover .bento-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.bento-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Forces it to pure white */
    -webkit-filter: brightness(0) invert(1);
    clip-path: none !important;
}

.bento-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 163, 224, 0.25);
    color: #4dd0ff;
    border-radius: 50px;
    font-size: clamp(1rem, 0.75vw, 0.75rem);
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 163, 224, 0.3);
}

.bento-content h3 {
    color: white;
    font-size: clamp(1.08rem, 2.2vw, 1.8rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.bento-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 420px;
    font-size: clamp(1rem, 1vw, 1rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-glow {
    display: inline-block;
    padding: 12px 30px;
    background: #4340F5;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: clamp(1rem, 0.9vw, 0.9rem);
    box-shadow: 0 8px 25px rgba(0, 163, 224, 0.3);
    transition: all 0.4s ease;
}

.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 163, 224, 0.5);
}

.link-cyan {
    color: #4340F5;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.link-cyan:hover {
    text-decoration: underline;
}

.bento-content {
    position: relative;
    z-index: 10; /* Content on TOP */
}

.bento-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1; /* Image at BOTTOM */
    opacity: 0.65;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    filter: brightness(0.65) contrast(1.1);
}

.bento-glass-card:hover .bento-bg-image {
    transform: scale(1.1);
    filter: brightness(0.8) contrast(1.1);
}

.education-cinematic,
.about-cinematic,
.contact-cinematic {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px 0;
}

.about-cinematic,
.contact-cinematic {
    justify-content: center;
}

.contact-cinematic {
    padding: 40px 0;
}

@media (max-width: 991px) {
    .innovation-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-item.lead-item {
        grid-row: auto;
    }
}

.cat-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
    clip-path: inset(4px);
    /* Aggressive crop to remove all stray edge artifacts */
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cat-card:hover .cat-illustration {
    transform: scale(1.1);
}

/* Unique Surgical Scan Dashboard */
.scan-dashboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    perspective: 2000px;
    /* Enable 3D depth */
}

.scan-card {
    position: relative;
    background: rgba(0, 163, 224, 0.03);
    border: 1px solid rgba(0, 163, 224, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-style: preserve-3d;
    transform: rotateX(5deg);
}

.scan-card:hover {
    transform: rotateX(0deg) translateZ(30px);
    background: rgba(0, 163, 224, 0.1);
    border-color: rgba(0, 163, 224, 0.6);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 163, 224, 0.2);
}

/* Background Animation System - High Visibility */
.impact-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
    /* Increased base visibility */
}

.impact-bg-animation::before,
.impact-bg-animation::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.25) 0%, transparent 70%);
    
    animation: driftParticles 20s infinite alternate ease-in-out;
}

.impact-bg-animation::after {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    width: 800px;
    min-height: 100vh;
    right: -15%;
    bottom: -10%;
    animation-delay: -7s;
    animation-duration: 30s;
}

/* Technical Callouts & Pulse Points */
.tech-callout {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 10;
    pointer-events: none;
}

.tech-callout.visible {
    opacity: 1;
    transform: translateX(0);
}

.callout-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--light-blue), transparent);
}

.callout-text {
    font-size: clamp(1rem, 0.75vw, 0.75rem);
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--light-blue);
    text-transform: uppercase;
    background: rgba(255,255,255,0.8);
    padding: 4px 12px;
    border-left: 2px solid var(--light-blue);
}

.pulse-point {
    width: 12px;
    height: 12px;
    background: var(--light-blue);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Staggered Reveal Engine */
.reveal-stagger >/* Auxein Glass-Armor Navigation */
.navbar {
    z-index: 10000 !important;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1) !important;
    padding: 15px 0;
}

/* Ensure breadcrumbs don't overlap messy */
.product-breadcrumb {
    background: #0b1a4a;
    z-index: 9999;
    position: relative;
}


.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.4s; }

/* Fixed Plate Spec Section */
.fixed-axis-container {
    display: flex;
    position: relative;
    padding-block: clamp(4rem, 8vw, 8rem);
}

.scrolling-specs {
    flex: 1;
}

.fixed-visual {
    flex: 1;
    position: sticky;
    top: 15vh;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* --- ROLEX SURGICAL CARD STACKING ENGINE --- */
.rolex-card-deck {
    background: #f8fafc; /* Premium soft background */
    padding-block: clamp(4rem, 8vw, 8rem);
    position: relative;
    overflow: visible !important; /* CRITICAL FOR STICKY */
}

.rolex-card {
    position: sticky;
    top: 120px; /* Offset for high-end navbar */
    min-height: 85vh;
    width: 94%;
    max-width: 1400px;
    margin: 0 auto 150px;
    background: white;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    z-index: 10;
    border: 1px solid rgba(0,0,0,0.02);
}

/* Staggered Indices for the Stack */
.rolex-card:nth-child(1) { z-index: 10; }
.rolex-card:nth-child(2) { z-index: 20; }
.rolex-card:nth-child(3) { z-index: 30; }

.rolex-card-content {
    padding: 80px 60px;
    width: 100%;
}

/* Floating Data Particles */
.impact-bg-animation .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, #4340F5 1px, transparent 1px),
        radial-gradient(circle, #ffffff 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px;
    background-position: 0 0, 50px 50px;
    animation: floatingData 60s infinite linear;
    opacity: 0.2;
}

@keyframes floatingData {
    0% {
        background-position: 0 0, 50px 50px;
    }

    100% {
        background-position: 1000px 1000px, 500px 500px;
    }
}

@keyframes driftParticles {
    0% {
        transform: translate(-20%, -20%) scale(1);
    }

    100% {
        transform: translate(30%, 40%) scale(1.3);
    }
}

.metrics-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 163, 224, 0.15) 2px, transparent 2px);
    background-size: 80px 80px;
    opacity: 0.8;
    pointer-events: none;
    animation: gridPulse 6s infinite ease-in-out;
}

/* Abstract Background Pattern */
.dais-academy {
    background-image:
        radial-gradient(#e2e8f0 1.2px, transparent 1.2px);
    background-size: 40px 40px;
    background-position: center;
}

.dais-card-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #4340F5;
    transition: width 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 10px rgba(0, 163, 224, 0.5);
}

.dais-pill-card:hover .dais-card-progress {
    width: 100%;
}

@keyframes gridPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}



.scan-content {
    position: relative;
    z-index: 2;
}

.scan-label {
    font-size: clamp(1rem, 0.75vw, 0.75rem);
    font-weight: 800;
    letter-spacing: 3px;
    color: #4340F5;
    margin-bottom: 15px;
    opacity: 0.8;
}

.scan-main {
    font-size: clamp(2.70rem, 5.4vw, 4.5rem);
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    text-shadow: 0 0 20px rgba(0, 163, 224, 0.3);
}

.scan-plus {
    font-size: clamp(1.50rem, 3.0vw, 2.5rem);
    color: #4340F5;
    margin-left: 5px;
}

.scan-footer {
    font-size: clamp(1rem, 0.8vw, 0.8rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .scan-dashboard {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .scan-dashboard {
        grid-template-columns: 1fr;
    }

    .scan-main {
        font-size: clamp(2.10rem, 4.2vw, 3.5rem);
    }
}

.bg-deep-navy {
    background-color: #050d26 !important;
}

#globe-canvas {
    width: 100%;
    height: 100%;
    outline: none;
}

/* Floating Sticky Buttons */
.sticky-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    width: 185px;
    padding: 10px 0;
    pointer-events: none;
}

.sticky-btn {
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 48px;
    width: 50px;
    border-radius: 12px 0 0 12px;
    color: white;
    text-decoration: none;
    box-shadow: -4px 4px 16px rgba(0, 0, 0, 0.18);
    transition: width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}

.sticky-btn:hover {
    width: 175px;
}

.sticky-btn .btn-label {
    opacity: 0;
    max-width: 0;
    font-size: clamp(1rem, 0.875vw, 0.875rem);
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: 0.2px;
    transition: opacity 0.2s ease 0.1s, max-width 0.28s ease, padding-left 0.28s ease;
    padding-left: 0;
    flex-shrink: 0;
    overflow: hidden;
}

.sticky-btn:hover .btn-label {
    opacity: 1;
    max-width: 120px;
    padding-left: 16px;
}

.sticky-btn .btn-icon {
    width: 50px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sticky-btn.whatsapp {
    background: #25D366;
}

.sticky-btn.whatsapp:hover {
    background: #1fbc5a;
    box-shadow: -4px 6px 20px rgba(37, 211, 102, 0.35);
}

.sticky-btn.email {
    background: #0b1a4a;
}

.sticky-btn.email:hover {
    background: #0e2260;
    box-shadow: -4px 6px 20px rgba(11, 26, 74, 0.35);
}

/* Full Screen Loader */
#loading-overlay {
    position: fixed; inset: 0; background: #0a1024; z-index: 10000;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
    visibility: visible;
}
#loading-overlay.hidden { 
    opacity: 0; 
    pointer-events: none; 
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid rgba(0, 163, 224, 0.2);
    border-top-color: #4340F5;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error Page Animation (for 404 views) */
.error-container {
    text-align: center;
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.error-glitch {
    font-size: clamp(3.60rem, 7.2vw, 6rem);
    font-weight: 800;
    color: var(--brand-blue);
    position: relative;
    animation: glitch 1.5s infinite;
}

@keyframes glitch {
    0% {
        transform: translate(0)
    }

    20% {
        transform: translate(-2px, 2px)
    }

    40% {
        transform: translate(-2px, -2px)
    }

    60% {
        transform: translate(2px, 2px)
    }

    80% {
        transform: translate(2px, -2px)
    }

    100% {
        transform: translate(0)
    }
}


/* Responsive Overrides */
@media (max-width: 1024px) {

    .hero-container,
    .grid-2,
    .split-layout {
        flex-direction: column !important;
        text-align: center;
    }

    .hero-text,
    .hero-visual {
        max-width: 100% !important;
        width: 100% !important;
    }

    .hero-visual {
        height: 350px !important;
        margin-top: 3rem;
    }

    .hero-title {
        font-size: clamp(1.80rem, 3.6vw, 3rem) !important;
    }

    .section-standard {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 0 1.5rem !important;
    }

    .navbar {
        height: 70px;
    }

    .logo {
        font-size: clamp(1.08rem, 2.2vw, 1.8rem);
    }

    /* Products Page Mob */
    #search-section {
        padding: 4rem 0 !important;
    }

    #search-section>div {
        padding: 3rem 1.5rem !important;
        border-radius: 20px !important;
    }

    #search-section h2 {
        font-size: clamp(1.32rem, 2.6vw, 2.2rem) !important;
    }

    #global-search {
        padding: 1.2rem 2rem !important;
        font-size: clamp(1rem, 1vw, 1rem) !important;
    }
}


/* Enhanced Breadcrumb Bar */
.breadcrumb {
    background: #0b1a4a !important;
    padding: 15px 0 !important;
    color: white !important;
    font-size: clamp(1rem, 0.95vw, 0.95rem) !important;
    font-weight: 500;
    z-index: 100;
    position: relative;
}

.breadcrumb .section-container {
    display: flex;
    gap: 12px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb a {
    color: white !important;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb .separator {
    opacity: 0.5;
}

/* Premium Product Hero */
.products-page-hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%) !important;
    padding: 10rem 2rem 6rem !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
}

.products-page-hero h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    color: #0b1a4a;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}


/* Spacing Cleanups */

/* Fix narrow mega menu */
.mega-menu {
    min-width: 1000px !important;
    width: 1300px !important;
}

@media (max-width: 1350px) {
    .mega-menu {
        width: 95vw !important;
        min-width: auto !important;
    }
}


/* Premium Mega List Styles */
.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-list li {
    margin-bottom: 0.6rem;
}

.mega-list a {
    color: var(--text-medium) !important;
    font-size: clamp(1rem, 0.9vw, 0.9rem) !important;
    font-weight: 500 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mega-list a:hover {
    color: var(--light-blue) !important;
    padding-left: 5px;
}


/* Vertical Multi-level Dropdown */
.dropdown-v2 {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1100;
}

.dropdown-container:hover .dropdown-v2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-v2 li {
    position: relative;
}

.dropdown-v2 li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: clamp(1rem, 0.95vw, 0.95rem);
    font-weight: 500;
    transition: background 0.2s;
}

.dropdown-v2 li a:hover {
    background: #f8faff;
    color: var(--light-blue);
}

.dropdown-v2 .nested:hover .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 250px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    list-style: none;
    margin-left: -2px; /* Close any small hover gap */
}

.sub-dropdown li a {
    padding: 10px 20px;
}

/* Innovation Hub Section */
.tech-showcase {
    background: #0b1a4a;
    background-image: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    padding-block: clamp(4rem, 8vw, 8rem);
    position: relative;
    z-index: 5;
}

.tech-showcase-light {
    padding: 60px 0;
}


.innovation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.innovation-card {
    background: white;
    border-radius: 20px;
    padding: 2.2rem 2.5rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.innovation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.innovation-icon-box {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.innovation-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.innovation-card h3 {
    color: #0b1a4a;
    font-size: clamp(1.08rem, 2.2vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.innovation-card p {
    color: #475569;
    font-size: clamp(1rem, 1vw, 1rem);
    line-height: 1.6;
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.innovation-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1.5px solid #0b1a4a;
    border-radius: 12px;
    color: #0b1a4a;
    font-weight: 700;
    font-size: clamp(1rem, 0.9vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.innovation-btn:hover {
    background: #0b1a4a;
    color: white;
    box-shadow: 0 10px 20px rgba(11, 26, 74, 0.2);
}

@media (max-width: 1024px) {
    .innovation-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .innovation-grid {
        grid-template-columns: 1fr;
    }
}
/* --- GLOBAL CLINICAL PULSE LOADER --- */
#loading-overlay {
    position: fixed; inset: 0; background: #0a1024; z-index: 10000;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
    visibility: visible;
}
#loading-overlay.hidden { 
    opacity: 0; 
    pointer-events: none; 
    visibility: hidden;
}

.pulse-container {
    width: 300px; height: 100px;
    position: relative;
    margin-bottom: 20px;
}
.pulse-svg {
    width: 100%; height: 100%;
    fill: none;
    stroke: #4340F5;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: globalPulse 3s ease-in-out infinite;
}
.pulse-dot {
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 6px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px #4340F5;
    /* Perfect Center Alignment */
    offset-path: path("M0,50 L50,50 L70,20 L90,80 L110,50 L150,50 L170,10 L200,90 L230,50 L300,50");
    offset-anchor: center;
    animation: dotFollowPath 3s ease-in-out infinite;
}
.pulse-text {
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.5em;
    font-size: clamp(1rem, 0.8vw, 0.8rem);
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 20px;
    font-family: var(--font-primary);
}

@keyframes dotFollowPath {
    0% { offset-distance: 0%; opacity: 0; }
    5% { opacity: 1; }
    45% { opacity: 1; }
    50% { offset-distance: 100%; opacity: 0; }
    100% { offset-distance: 100%; opacity: 0; }
}

@keyframes globalPulse {
    0% { stroke-dashoffset: 1000; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -1000; }
}

@keyframes pulseFollow {
    0% { left: 0%; top: 50%; opacity: 0; }
    2% { opacity: 1; }
    
    /* 0-50 units: Flat (0 - 8.33% time) */
    8.33% { left: 16.6%; top: 50%; } 
    
    /* 50-90 units: First Peak/Trough sequence (8.33% - 15% time) */
    10% { left: 20%; top: 25%; } /* Small peak */
    12.5% { left: 25%; top: 75%; } /* Small trough */
    15% { left: 30%; top: 50%; } 
    
    /* 90-110 units: Flat (15% - 18.33% time) */
    18.33% { left: 36.6%; top: 50%; } 
    
    /* 110-160 units: Main Heartbeat Pulse (18.33% - 26.66% time) */
    /* SLOWED DOWN slightly in percentage to match the large Y-travel */
    21% { left: 40%; top: 12.5%; } /* Main Peak */
    24% { left: 46.6%; top: 87.5%; } /* Main Trough */
    26.66% { left: 53.3%; top: 50%; } 
    
    /* 160-180 units: Flat */
    30% { left: 60%; top: 50%; } 
    
    /* 180-210 units: End Vibrations */
    31.66% { left: 63.3%; top: 40%; } 
    33.33% { left: 66.6%; top: 60%; } 
    35% { left: 70%; top: 50%; } 
    
    /* 210-300 units: Final Flat */
    41.66% { left: 83.3%; top: 50%; } 
    50% { left: 100%; top: 50%; opacity: 1; } 
    
    50.1% { opacity: 0; }
    100% { left: 100%; opacity: 0; }
}

.medical-loader-text {
    margin-top: 2rem;
    color: white;
    font-weight: 700;
    font-size: clamp(1rem, 1vw, 1rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: textBlink 2s ease-in-out infinite;
}

@keyframes textBlink {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
    }
}

/* Medical Education / DAIS Section */
.dais-academy {
    background: #ffffff;
    padding: 40px 0 80px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.dais-orb {
    position: absolute;
    border-radius: 50%;
    
    z-index: 1;
    opacity: 0.15;
}

.dais-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--light-blue);
    top: -100px;
    right: -200px;
}

.dais-orb-2 {
    width: min(100%, 500px);
    height: 500px;
    background: #4a5568;
    bottom: -100px;
    left: -150px;
}

.dais-ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.dais-academy .mt-miracle {
    margin-top: 2.5rem !important;
}

.dais-pill-card {
    background: white;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.dais-pill-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.dais-pill-offset {
    margin-top: -2.5rem;
}

.dais-pill-icon {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #475569;
    position: relative;
    transition: all 0.4s ease;
}

.dais-pill-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 163, 224, 0.2);
    border-radius: 20px;
    animation: beaconPulse 3s infinite;
}

@keyframes beaconPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.dais-pill-icon svg {
    width: 32px;
    height: 32px;
}

.dais-pill-card:hover .dais-pill-icon {
    background: #4340F5;
    color: white;
    transform: rotate(10deg);
}

.dais-pill-content h4 {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    font-weight: 700;
    color: #0b1a4a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.dais-pill-content p {
    font-size: clamp(1rem, 0.95vw, 0.95rem);
    color: #64748b;
    line-height: 1.6;
}

.dais-cta {
    background: #0b1a4a !important;
    padding: 1.2rem 3.5rem !important;
    font-size: clamp(1rem, 1vw, 1rem) !important;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.dais-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: 0.8s;
}

.dais-cta:hover::after {
    left: 100%;
}

/* --- Comprehensive Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.1);
        z-index: 2000;
        padding: 4rem 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 3000;
        padding: 5px;
    }

    .mobile-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: #0b1a4a;
        transition: 0.4s ease;
        border-radius: 4px;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -7px);
    }

    .innovation-grid,
    .dais-ecosystem-grid,
    .care-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dais-pill-offset {
        margin-top: 0 !important;
    }

    .section-title {
        font-size: clamp(1.32rem, 2.6vw, 2.2rem);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }

    .section {
        padding: 4rem 1.2rem;
    }

    .hero-title {
        font-size: clamp(1.32rem, 2.6vw, 2.2rem);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 1vw, 1rem);
    }

    .global-stat-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .sticky-sidebar {
        right: 15px;
        bottom: 15px;
        top: auto;
        transform: none;
        flex-direction: row;
        gap: 10px;
    }

    .sticky-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .sticky-btn .btn-label {
        display: none;
    }

    .globe-wrapper {
        min-height: 250px;
        margin-top: 2rem;
    }

    #globe-canvas {
        width: 100% !important;
        height: 100% !important;
        max-width: 320px;
        margin: 0 auto;
    }

    .floating-stat-card {
        display: none;
        /* Hide floating tooltips on very small screens for clarity */
    }

    .split-layout {
        flex-direction: column;
        gap: 3rem;
    }
}

/* Fix for horizontal scroll and overflow */
html,
body {
    max-width: 100%;
}

img,
video,
canvas,
model-viewer {
    max-width: 100%;
    height: auto;
    /* clip-path: inset(5px); */
    /* Global fix to remove edge lines from all medical images */
}

/* Home Search Mobile Fix */
@media (max-width: 640px) {
    #home-global-search {
        padding: 1.5rem 2rem !important;
        font-size: clamp(1rem, 1vw, 1rem) !important;
    }

    #search-section {
        padding: 4rem 1.5rem !important;
        margin: 2rem 1rem 4rem !important;
    }
}

/* Sticky Sidebar System - Dynamic Pill Expansion */
.sticky-sidebar {
    position: fixed;
    right: 30px;
    bottom: 40px;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
    z-index: 10001 !important;
}

/* Sticky Sidebar System - Dynamic Pill Expansion */
.sticky-sidebar {
    position: fixed;
    right: 25px;
    bottom: 35px;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
    z-index: 10001 !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s ease 0.5s;
}

.sticky-sidebar.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-btn {
    height: 52px !important;
    width: 52px !important; 
    border-radius: 26px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important; 
    color: white !important;
    text-decoration: none !important;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15) !important;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) !important;
    backdrop-filter: blur(10px) !important;
    overflow: hidden !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    padding: 0 !important;
}

.sticky-btn .btn-label {
    width: 0;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.4s ease;
    font-weight: 600;
    font-size: clamp(1rem, 0.9vw, 0.9rem);
    pointer-events: none;
}

.sticky-btn:hover {
    width: 215px !important; /* Expanded for clinical breathing room */
    padding: 0 20px !important; /* Secure buffer from edges */
    justify-content: flex-end !important;
}

.sticky-btn:hover .btn-label {
    width: auto;
    opacity: 1;
    margin-right: 15px; /* Spacing between text and icon */
}

.sticky-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

.sticky-btn.email {
    background: linear-gradient(135deg, #2563eb, #111e4f) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

.sticky-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 26px; /* Optimized for expansion state */
    height: 100%;
    flex-shrink: 0;
}

.sticky-btn .btn-icon svg {
    width: 26px;
    height: 26px;
}

/* Dropdown Navigation System - Absolute Global Priority */
.dropdown-v2 {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 240px !important;
    background: white !important;
    padding: 10px 0 !important;
    border-radius: 18px !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15) !important;
    display: none !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    z-index: 10005 !important;
}

.dropdown-container:hover .dropdown-v2 {
    display: block !important;
    animation: slideUp 0.3s ease-out forwards !important;
}

.dropdown-v2 li {
    position: relative !important;
    padding: 0 12px !important;
}

.dropdown-v2 a {
    padding: 10px 12px !important;
    color: #121545 !important;
    font-weight: 500 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-radius: 10px !important;
    transition: all 0.2s !important;
    font-size: clamp(1rem, 0.9vw, 0.9rem) !important;
}

.dropdown-v2 li:hover > a {
    color: #437ec6 !important;
    background: rgba(37,99,235,0.05) !important;
}

.sub-dropdown {
    position: absolute !important;
    top: 0 !important;
    left: 98% !important; /* Tighter anatomical fit */
    margin-left: 0 !important;
    min-width: 240px !important;
    background: white !important;
    padding: 10px 0 !important;
    border-radius: 18px !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15) !important;
    display: none !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    z-index: 10002 !important;
}

.nested:hover .sub-dropdown {
    display: block !important;
    animation: slideLeft 0.3s ease-out forwards !important;
}
/* --- GLOBAL CLINICAL PULSE LOADER REPLICA --- */
.site-loader {
    position: fixed;
    inset: 0;
    background: #0a1024;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: visible;
}

.site-loader.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.pulse-container-v2 {
    width: 300px;
    height: 100px;
    position: relative;
    margin-bottom: 20px;
}

.pulse-svg-v2 {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #4340F5;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: globalPulseV2 3s ease-in-out infinite;
}

.pulse-dot-v2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px #4340F5;
    offset-path: path("M0,50 L50,50 L70,20 L90,80 L110,50 L150,50 L170,10 L200,90 L230,50 L300,50");
    offset-anchor: center;
    animation: dotFollowPathV2 3s ease-in-out infinite;
}

.pulse-text-v2 {
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.5em;
    font-size: clamp(1rem, 0.8vw, 0.8rem);
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 20px;
    font-family: var(--font-primary);
}

@keyframes dotFollowPathV2 {
    0% { offset-distance: 0%; opacity: 0; }
    5% { opacity: 1; }
    45% { opacity: 1; }
    50% { offset-distance: 100%; opacity: 0; }
    100% { offset-distance: 100%; opacity: 0; }
}

@keyframes globalPulseV2 {
    0% { stroke-dashoffset: 1000; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -1000; }
}

.footer-logo {
    color: #2563eb !important;
    font-weight: 800;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 0.8;
}

.text-light-blue {
    color: var(--light-blue) !important;
}

/* Global Footer Re-design: LIGHT MODE with NAVY LOGO */
.footer {
    background-color: #f1f5f9 !important;
    color: #475569 !important;
    padding: 80px 0 40px !important;
    border-top: 1px solid #e2e8f0;
}

.footer .logo {
    display: inline-flex !important;
    align-items: center;
}

.footer h4 {
    color: #0f172a !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
}

.footer .footer-col p {
    color: #475569 !important; /* Ensure paragraph text is visible in light theme */
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li a {
    color: #475569 !important;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #3b82f6 !important;
}

.footer .social-icon {
    background: #e2e8f0;
    color: #121545 !important;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.footer .social-icon:hover {
    background: #121545;
    color: white !important;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    margin-top: 40px;
    padding-top: 20px;
    color: #94a3b8 !important;
}

/* --- NEW REFACTORED STYLES --- */

/* Viewport Base Setup */
.accordion-viewport {
  background-color: #060b14; /* Deep dark blue matching the second screenshot */
  min-height: 100vh;
  width: 100%;
}

.custom-accordion-container {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

/* Base Panel Styling */
.accordion-panel {
  flex: 1;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.5s ease;
  display: flex;
  flex-direction: column;
  padding: 40px;
  cursor: pointer;
}

/* Active Panel Expansion */
.accordion-panel.active {
  flex: 3.5; /* Forces the active panel to take up the majority of screen real-estate */
  background-color: #0b1322;
}

/* Handle Collapsed State Visuals */
.collapsed-indicator {
  position: absolute;
  top: 40px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: opacity 0.3s ease;
}

.vertical-title {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.90rem, 1.8vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 1px;
}

.panel-num-bg {
  font-size: clamp(1.20rem, 2.4vw, 2rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
}

/* Toggle Views based on Active State */
.accordion-panel.active .collapsed-indicator {
  opacity: 0;
  pointer-events: none;
}

.accordion-panel .expanded-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.accordion-panel.active .expanded-content {
  opacity: 1;
  transform: translateY(0);
}

/* Content Aesthetics matching Screenshot 2026-06-01 130404 */
.panel-number {
  font-size: clamp(1.50rem, 3.0vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 10px;
}

.panel-main-title {
  font-size: clamp(2rem, 3vw, 3rem);
  color: #ffffff;
  margin-bottom: 30px;
}

.panel-sub-title {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
}

.panel-desc {
  color: rgba(255, 255, 255, 0.7);
  max-width: min(100%, 450px);
  line-height: 1.6;
  font-size: clamp(1rem, 0.95vw, 0.95rem);
  margin-bottom: auto; /* Pushes graphic to the bottom */
}

/* Arch Shaped Image Custom Mockup mask */
.arch-graphic-wrapper {
  width: 100%;
  max-width: 320px;
  height: 350px;
  overflow: hidden;
  border-radius: 160px 160px 0 0; /* Creates the perfect semi-arch structure */
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.arch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.8); /* Matches monochromatic tech image style */
}

/* Cinematic Scroll Section */
.scroll-story-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #060b14;
}
.story-bg-wrapper {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}
.story-bg {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.4;
}
.story-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.story-text {
  position: absolute;
  font-size: clamp(2rem, 3vw, 3rem);
  color: #ffffff;
  text-align: center;
  max-width: 800px;
  font-weight: 600;
  opacity: 0; /* Start hidden, handled by GSAP */
}

/* Container holds both sides together */
/* =============================================
   CARE SECTION — Sticky Scroll Architecture
   Outer div is 400vh (scroll driver).
   Inner div is sticky 100vh (the actual viewport).
   Left panel + right card frame sit side by side in the sticky viewport.
   Cards are absolute-stacked; JS drives active class.
   ============================================= */

/* =============================================
   CARE SECTION — Scroll-Driven Storytelling
   Pattern: FutureForm / ClearStreet style

   ARCHITECTURE:
   ┌─ .care-scroll-driver ──── 400vh tall (scroll room) ─────┐
   │  ┌─ .care-sticky-viewport ── sticky 100vh window ──────┐ │
   │  │  [left-sticky-panel 35%] [right-cards-frame 65%]   │ │
   │  │         cards: position:absolute inset:0            │ │
   │  └──────────────────────────────────────────────────────┘ │
   └────────────────────────────────────────────────────────────┘

   The driver is TRANSPARENT. Its 300vh empty space below sticky
   is off-screen while scrolling. No background = no dark void.
   ============================================= */

/* ── Outer scroll driver ─────────────────────────────────────
   Height = num_cards × 100vh gives browser the scroll room.
   NO background, NO overflow manipulation (overflow:clip breaks
   position:sticky in Chrome/Edge/Safari).
   ─────────────────────────────────────────────────────────── */
/* ── Outer scroll driver ───────────────────────────────────── */
.care-scroll-driver {
  position: relative;
  height: 400vh;
  min-height: 400vh;
}

/* ── Sticky inner window (Light Premium Theme) ─────────────── */
.care-sticky-viewport.light-theme-viewport {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  z-index: 1;
}

/* ── Full Frame (holds all absolutely positioned cards) ────── */
.values-full-frame {
  position: relative;
  width: 100%;
  max-width: 1400px; /* Limit width for ultra-wide screens */
  height: 100%;
  margin: 0 auto;
}

/* ── Individual Cards (Full Screen Slide) ──────────────────── */
.scroll-card.light-theme-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  
  /* Initial state: waiting below */
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  will-change: opacity, transform;
  z-index: 2;
}

.scroll-card.light-theme-card.card-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 3;
}

.scroll-card.light-theme-card.card-exiting {
  opacity: 0;
  transform: translateY(-60px) scale(0.98);
  pointer-events: none;
  z-index: 2;
}

/* ── Inner Grid Layout ─────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  width: 100%;
  padding: 0 4rem;
}

/* ── Left Side Typography (Linear/Stripe style) ────────────── */
.values-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v-tag {
  color: var(--brand-blue);
  font-size: clamp(1rem, 0.8vw, 0.8rem);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.v-title {
  color: var(--text-dark);
  font-size: clamp(2.70rem, 5.4vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.v-desc {
  color: var(--text-medium);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.7;
  max-width: min(100%, 500px);
  margin-bottom: 3rem;
}

/* ── Stats Grid (Left Side) ────────────────────────────────── */
.v-stats {
  display: flex;
  gap: 3rem;
}

.v-stat-box h3 {
  color: var(--brand-blue);
  font-size: clamp(1.32rem, 2.6vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.v-stat-box p {
  color: var(--text-medium);
  font-size: clamp(1rem, 0.75vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ── Right Side Feature Card ───────────────────────────────── */
.values-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.feature-p-card {
  background: white;
  border-radius: 24px;
  padding: 3.5rem;
  width: 100%;
  max-width: 480px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0,0,0,0.02);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-p-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(59, 130, 246, 0.1);
}

.feature-icon-circle {
  width: 64px;
  height: 64px;
  background: #f0f7ff;
  color: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.08rem, 2.2vw, 1.8rem);
  margin-bottom: 2rem;
}

.feature-card-title {
  color: var(--text-dark);
  font-size: clamp(0.96rem, 1.9vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-bullets li {
  color: var(--text-medium);
  font-size: clamp(1rem, 1.05vw, 1.05rem);
  margin-bottom: 1rem;
  padding-left: 1.8rem;
  position: relative;
}

.feature-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  font-weight: 800;
}

/* ── Global Progress Dots Overlay ──────────────────────────── */
.values-progress-overlay {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.v-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.4s ease, transform 0.4s ease, width 0.4s ease;
}

.v-dot.active {
  background: var(--brand-blue);
  width: 24px;
  border-radius: 4px;
}

/* Updated Marquee */
.updated-marquee {
    background-color: #ffffff !important;
}
.updated-marquee .trust-tagline {
    background: #ffffff !important;
    box-shadow: 20px 0 30px #ffffff !important;
}

/* NUCLEAR FORCE TRANSPARENT SECTIONS - Requested by User */
section, .section, .section-standard,
.bg-deep-navy, .bg-shade-news, .bg-shade-values, 
.bg-white, .edu-miracle, .bg-light-blue, 
.bg-gray, .bg-cyan, .bg-news, .bg-shade-innovation, .bg-shade-edu {
    background-color: transparent !important;
    background-image: none !important;
    background: transparent !important;
}

/* Ensure text inside previously dark sections is still visible by forcing it to dark if the page is light */
/* Wait, we will only make backgrounds transparent, text color is up to their existing CSS unless it breaks */

/* NUCLEAR LIGHT THEME OVERRIDES FOR PREVIOUSLY DARK SECTIONS */
.accordion-viewport, .accordion-panel, .accordion-panel.active {
    background-color: transparent !important;
    background: transparent !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.text-white {
    color: var(--text-dark) !important;
}

.vertical-title, .panel-num-bg, .panel-number, .panel-main-title, .panel-sub-title, .panel-desc,
.bento-content h3, .bento-content p, .bento-tag, .stat-item .stat-num, .stat-item .stat-label,
.contact-cinematic h2, .contact-cinematic p, .form-group label, .contact-info p, .contact-info h3,
.eyebrow.text-cyan {
    color: var(--text-dark) !important;
}

.bento-glass-card {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
}

.scan-card {
    background: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.metrics-grid-bg { display: none !important; }
.impact-bg-animation { display: none !important; }

/* Ensure 03 Digital left sidebar is fully transparent if it has its own bg */
.accordion-viewport, .custom-accordion-container { background: transparent !important; }

/* In the Innovation section, the first screenshot has "03 Digital", which is actually accordion. */
/* Just making sure everything in accordion is fully transparent and dark text. */


/* USER FIX: Darken the headings in previously bg-shade sections that were forced to white */
[class*="bg-shade-"] .section-title,
[class*="bg-shade-"] .section-title .light-blue,
[class*="bg-shade-"] .hero-title,
[class*="bg-shade-"] h2 {
    color: #0b1a4a !important;
}

/* USER FIX: Remove the picture section (woman working on electronics) that was bleeding behind other elements */
.bento-bg-image { display: none !important; }
.story-bg-wrapper { display: none !important; }


/* USER FIX: Hide the empty scroll-story-section completely so there is no gap */
.scroll-story-section { display: none !important; }

/* USER FIX: Fix invisible button text 'EXPLORE ALL PROGRAMS' */
.btn-outline-glow-cyan {
    color: #0b1a4a !important;
    border-color: rgba(0, 0, 0, 0.3) !important;
}
.btn-outline-glow-cyan:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    color: #0b1a4a !important;
}



/* USER FIX: Darken the sub-headings in previously bg-shade sections */
[class*="bg-shade-"] .section-desc,
[class*="bg-shade-"] p.eyebrow,
[class*="bg-shade-"] p.text-medium,
[class*="bg-shade-"] p {
    color: #4a5568 !important;
}


/* NEW VALUES LAYOUT */
.care-sticky-viewport {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: transparent;
}

.values-left-static {
    z-index: 10;
}

.values-right-stack {
    perspective: 1000px;
}

.right-card {
    will-change: transform, opacity;
}

.card-active {
    pointer-events: auto;
}

.values-progress-overlay .v-dot {
    transition: background-color 0.3s ease;
}



/* ============================================================ */
/* VALUES PINNED STORYTELLING SECTION (DARK NAVY THEME)           */
/* ============================================================ */

/* ── Local background wave overlay inside the dark values section ── */
.values-contour-bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    background: url("../assets/images/wave-gif.gif") center center / cover no-repeat;
    opacity: 0.15;
    animation: none;
}

.values-contour-bg svg {
    display: none;
}
.values-section {
    height: 600vh !important;
    min-height: 600vh !important;
    background: #071B5A !important; /* Premium navy blue canvas — same as nav pill */
    position: relative !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
.values-sticky-wrapper {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    height: 100vh !important;
    width: 100% !important;
    overflow: hidden;
    background: #071B5A !important; /* Solid navy — ensures stickied wrapper matches section */
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    /* Stacking context so waves sit behind content */
    isolation: isolate;
}
.values-container {
    display: flex;
    align-items: stretch;
    width: 100% !important;
    height: 100% !important;
    position: relative;
    z-index: 1; /* Sit above the contour bg */
    background: transparent !important;
}

/* LEFT PANEL - Premium navy dark layout */
.values-left {
    width: 42%;
    min-width: min(100%, 380px);
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: clamp(120px, 10vw, 200px) !important;
    padding-right: 40px !important;
    border: none !important;
    border-right: none !important;
    box-shadow: none !important;
    flex-shrink: 0;
    position: relative;
    z-index: 1; /* Above the contour wave overlay */
}

@media (min-width: 901px) {
    .values-left {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 42% !important;
    }
    .values-right {
        width: 58% !important;
        flex: none !important;
    }
}
.values-eyebrow {
    color: #59D0FF !important; /* Light sky cyan on dark navy */
    font-size: clamp(1rem, 0.85vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.values-heading {
    font-size: clamp(3rem, 4vw, 4.5rem) !important;
    font-weight: 900 !important;
    color: #FFFFFF !important; /* White heading on dark navy canvas */
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: capitalize !important;
    border-left: 6px solid #4340F5 !important; /* Bright cyan vertical accent line */
    padding-left: 22px;
    letter-spacing: -0.02em;
}
.values-subtext {
    font-size: clamp(1rem, 1vw, 1rem);
    color: rgba(255, 255, 255, 0.75) !important; /* Soft white description on navy */
    line-height: 1.7;
    margin-bottom: 40px;
}
.values-stats {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.12); /* Subtle white divider on navy */
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 24px 0;
}
.vstat {
    display: flex;
    flex-direction: column;
}
.vstat-num {
    font-size: clamp(1.08rem, 2.2vw, 1.8rem);
    font-weight: 800;
    color: #FFFFFF !important; /* White numbers on dark navy */
    line-height: 1;
}
.vstat-num .text-cyan {
    color: #4340F5 !important; /* Bright cyan plus signs */
}
.vstat-label {
    font-size: clamp(1rem, 0.75vw, 0.75rem);
    color: rgba(255, 255, 255, 0.55) !important; /* Muted white stat labels */
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}
.values-progress {
    display: flex;
    gap: 10px;
    align-items: center;
}
.vp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25) !important; /* Dim white inactive dot on navy */
    transition: background 0.4s, width 0.4s;
    cursor: pointer;
}
.vp-dot.active {
    background: #4340F5 !important; /* Bright cyan active dot */
    width: 28px;
    border-radius: 4px;
}

/* RIGHT PANEL - Viewport Masked Frame */
.values-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    z-index: 1; /* Above the contour wave overlay */
}
.vslide {
    position: absolute;
    inset: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* card floats left-aligned inside right panel */
    padding: 0 60px 0 100px; /* outer frame spacing — card handles inner padding */
    opacity: 0;
    transform: translateY(120%);
    transition: none !important;
    pointer-events: none;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* ── Glassmorphism core value card ── */
.core-value-card {
    max-width: 650px;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 3rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.45s ease,
                box-shadow 0.45s ease;
}
.core-value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(30, 184, 255, 0.35);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(30, 184, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

@media (min-width: 901px) {
    .vslide {
        padding: 0 60px 0 80px !important;
    }
    .core-value-card {
        max-width: 650px;
    }
}
.vslide.active {
    opacity: 1;
    transform: translateY(0); /* Settle perfectly in the vertical center */
    pointer-events: auto;
}
.vslide.exiting {
    opacity: 0;
    transform: translateY(-120%); /* Slide completely out past the top edge before opacity reaches 0 */
}

/* Rearrange card order to match high-end corporate presentation layout (Label -> Title -> Desc -> List) */
.vslide-label {
    order: 1;
    color: rgba(255, 255, 255, 0.6) !important; /* Muted white label on navy */
    font-size: clamp(1rem, 0.75vw, 0.75rem);
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 14px;
    display: block;
    text-transform: uppercase;
}
.vslide-title {
    order: 2;
    font-size: clamp(3.00rem, 4.2vw, 4.6rem) !important; /* Premium scale, fits long words like INNOVATION perfectly */
    font-weight: 900 !important;
    letter-spacing: -0.03em !important;
    background: linear-gradient(135deg, #4340F5 0%, #2563EB 100%) !important; /* Premium electric cyan to brand blue gradient */
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-fill-color: transparent !important;
    margin-bottom: 20px;
    line-height: 1.05;
    text-transform: capitalize !important;
    display: inline-block;
    padding-bottom: 10px !important; /* Prevents descenders like 'y' from getting clipped by gradient background-clip */
    filter: drop-shadow(0 2px 12px rgba(14, 165, 233, 0.04));
}
.vslide-desc {
    order: 3;
    font-size: clamp(0.78rem, 1.6vw, 1.3rem) !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.75) !important; 
    line-height: 1.7 !important;
    max-width: 540px !important;
    margin-bottom: 30px;
    /* text-shadow removed to fix Windows ClearType jagged baseline rendering issue */
}
.vslide-list {
    order: 4;
    list-style: none;
    padding: 0;
    margin: 0;
}
.vslide-list li {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    font-weight: 600;
    color: #FFFFFF !important; /* White bullet text on dark canvas */
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateX(-15px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.vslide.active .vslide-list li {
    opacity: 1;
    transform: translateX(0);
}
.vslide.active .vslide-list li:nth-child(1) { transition-delay: 0.1s; }
.vslide.active .vslide-list li:nth-child(2) { transition-delay: 0.2s; }
.vslide.active .vslide-list li:nth-child(3) { transition-delay: 0.3s; }

.vslide-list li::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 3px;
    background: #4340F5 !important; /* Bright cyan bullet dash on dark canvas */
    flex-shrink: 0;
    border-radius: 2px;
}

@media (max-width: 1024px) {

    .mobile-break {
        display: block !important;
    }

    .values-sticky-wrapper { height: auto !important; position: relative !important; background: #071B5A !important; }
    .values-container { flex-direction: column !important; height: auto !important; }
    .values-section { height: auto !important; min-height: auto !important; }
    .values-stats { flex-direction: column !important; gap: 30px !important; }
    .values-left { width: 100% !important; min-width: unset; padding: 60px 5% !important; border: none !important; border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important; }
    .values-right { width: 100% !important; min-height: auto !important; position: relative !important; padding: 40px 5% !important; display: flex !important; flex-direction: column !important; gap: 60px !important; }
    .vslide { position: relative !important; inset: auto !important; opacity: 1 !important; transform: none !important; padding: 0 !important; margin-bottom: 60px !important; display: flex !important; flex-direction: column !important; width: 100% !important; max-width: 100% !important; }
    .core-value-card { max-width: 100% !important; }
    .vslide.exiting { display: none !important; }
    .values-progress { display: none !important; }
    
    /* Make bullet points static and fully visible on mobile */
    .vslide-list li {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* ============================================================ */
/* PRODUCT SHOWCASE PINNED STORYTELLING SECTION (LIGHT THEME)  */
/* ============================================================ */
.products-story-section {
    position: relative !important;
    width: 100% !important;
    background: transparent !important; /* Fully transparent to let WebGL molecules float behind */
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.products-story-pin-wrapper {
    height: 100vh !important;
    width: 100% !important;
    overflow: hidden !important; /* Mask translations outside viewport */
    display: flex !important;
    align-items: center !important;
    background: transparent !important; /* Fully transparent to let WebGL molecules float behind */
    box-sizing: border-box !important;
}

.products-story-container {
    margin-top: 100px !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1.15fr 0.85fr !important; /* Premium split-column layout */
    gap: 80px !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

.story-left {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
}

.story-title {
    font-size: clamp(3.2rem, 5.2vw, 5.4rem) !important;
    font-weight: 900 !important;
    color: #0B1F5B !important; /* Premium brand navy */
    line-height: 1.08 !important;
    text-transform: capitalize !important;
    letter-spacing: -0.03em !important;
    margin: 0 !important;
    text-align: left !important;
    border-left: 8px solid #4340F5 !important; /* Electric cyan highlight bar */
    padding-left: 28px !important;
}

.story-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: 100% !important;
    position: relative !important;
}

.story-description {
    font-size: clamp(1.8rem, 2.5vw, 2.6rem) !important;
    font-weight: 500 !important;
    color: #475569 !important; /* Modern clean corporate grey */
    line-height: 1.35 !important;
    letter-spacing: -0.01em !important;
    margin: 0 !important;
    text-align: left !important;
    transform: translate3d(0, 100vh, 0); /* Positioned completely below viewport initially */
    will-change: transform;
}

/* RESPONSIVE LAYOUT FOR PRODUCT STORYTELLING */
@media (max-width: 900px) {
    .products-story-section {
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
    }
    .products-story-pin-wrapper {
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
        display: block !important;
        padding-top: 40px !important;
        padding-bottom: 80px !important;
    }
    .products-story-container {
        grid-template-columns: 1fr !important; /* Stacked layout on tablets/mobile */
        gap: 40px !important;
        margin-top: 20px !important; /* Remove huge 100px desktop gap */
    }
    .story-title {
        font-size: clamp(2.4rem, 7vw, 3.6rem) !important;
        padding-left: 20px !important;
        border-left-width: 6px !important;
    }
    .story-description {
        font-size: clamp(1.4rem, 4.5vw, 2.0rem) !important;
        transform: none !important; /* Natural vertical flow on mobile without offsets */
        line-height: 1.4 !important;
    }
}

/* ============================================================ */
/* NEW MARKETING BANNER SLIDER SECTION                          */
/* ============================================================ */
.marketing-banners-section {
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    background: #FAF9F6 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    box-sizing: border-box !important;
    /* Fill exactly the remaining viewport below the 64px fixed navbar */
    height: calc(100vh - 64px) !important;
    max-height: calc(100vh - 64px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (max-width: 900px) {
    .marketing-banners-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
        height: 60vh !important;
        max-height: 60vh !important;
    }
}

.banner-slider-container {
    position: relative !important;
    width: 100% !important;
    height: 100% !important; /* fill height of section content area exactly */
    overflow: hidden !important;
}

.banner-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important; /* smooth premium cross-fade transition */
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #FAF9F6 !important;
}

.banner-slide.active {
    opacity: 1 !important;
    z-index: 2 !important;
}

.banner-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

/* Custom premium navigation dots */
.banner-dots {
    position: absolute !important;
    bottom: 24px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 12px !important;
    z-index: 10 !important;
}

.banner-dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: rgba(11, 31, 91, 0.2) !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
}

.banner-dot.active {
    background: #4340F5 !important; /* electric cyan active color */
    transform: scale(1.3) !important;
}

/* Custom premium arrow buttons */
.banner-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(11, 31, 91, 0.1) !important;
    color: #0B1F5B !important;
    font-size: clamp(0.90rem, 1.8vw, 1.5rem) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(11, 31, 91, 0.05) !important;
    outline: none !important;
}

.banner-arrow:hover {
    background: #0B1F5B !important;
    color: white !important;
    border-color: #0B1F5B !important;
    box-shadow: 0 6px 18px rgba(11, 31, 91, 0.15) !important;
}

.banner-arrow.prev-arrow {
    left: 24px !important;
}

.banner-arrow.next-arrow {
    right: 24px !important;
}

@media (max-width: 600px) {
    .banner-arrow {
        width: 36px !important;
        height: 36px !important;
        font-size: clamp(1rem, 1.125vw, 1.125rem) !important;
    }
    .banner-arrow.prev-arrow {
        left: 12px !important;
    }
    .banner-arrow.next-arrow {
        right: 12px !important;
    }
}

/* ============================================================ */
/* ANATOMY SHOWCASE PINNED HORIZONTAL SCROLL SECTION           */
/* ============================================================ */
.anatomy-section {
    position: relative !important;
    width: 100% !important;
    background: transparent !important; /* Fully transparent to let WebGL molecules float behind */
    overflow: visible !important;
}

.anatomy-pin-wrapper {
    height: 100vh !important;
    width: 100% !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    box-sizing: border-box !important;
    position: relative;
    background: transparent !important; /* Transparent to let WebGL molecules float behind */
}

.anatomy-scroll-container {
    display: flex !important;
    flex-direction: row !important;
    gap: 70px !important; /* Spacious layout */
    width: max-content !important;
    will-change: transform;
    padding-left: 100px !important; /* Spacious starting margin */
    padding-right: 200px !important; /* Spacious end padding */
    box-sizing: border-box !important;
}

/* Premium Medical Transparent Cards with Black Border Design */
.anatomy-card {
    position: relative !important; /* ensure relative for absolute meta */
    flex-shrink: 0 !important;
    width: 480px !important; /* Immersive card width */
    height: 600px !important; /* Immersive card height */
    background: rgba(255, 255, 255, 0.4) !important; /* Premium frosted glass base */
    backdrop-filter: blur(16px) !important; /* Glass blur effect */
    -webkit-backdrop-filter: blur(16px) !important;
    border-radius: 32px !important;
    border: 1.5px solid rgba(11, 31, 91, 0.18) !important; /* Soft premium navy-tinted charcoal border */
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important; /* Unified spaced columns */
    align-items: flex-start !important; /* Left-aligned elements just like user reference */
    padding: 40px !important; /* Premium generous padding inside the box */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease !important;
    box-sizing: border-box;
    text-decoration: none !important; /* Remove hyperlink underline */
}

.anatomy-card-index {
    font-size: clamp(3.00rem, 6.0vw, 5rem) !important;
    font-weight: 800 !important;
    line-height: 0.9 !important;
    color: #4340F5 !important; /* Premium brand electric cyan matching website theme */
    font-family: var(--font-primary) !important;
    letter-spacing: -0.04em !important;
    align-self: flex-start !important;
}

.anatomy-card:hover {
    border-color: rgba(67, 64, 245, 0.4) !important; /* Shifts gently to brand color on hover */
    box-shadow: 0 20px 40px rgba(11, 31, 91, 0.12), 0 8px 20px rgba(67, 64, 245, 0.05) !important; /* Elegant modern glow shadow */
    transform: translateY(-4px) !important;
}

.anatomy-img-wrapper {
    width: 100% !important;
    height: 330px !important; /* Occupies middle region of the card, leaving generous margins */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important; /* Centers image horizontally inside wrapper */
    background: transparent !important;
    overflow: hidden !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    border: none !important;
    transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease !important;
}

.anatomy-img-wrapper img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    filter: grayscale(100%) brightness(0.9) contrast(1.05) !important; /* Default grayscale state */
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.5s ease !important;
}



.anatomy-meta {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
}

.anatomy-label {
    width: 100% !important;
    height: auto !important; /* Sleek dynamic height within unified card */
    background: transparent !important;
    display: block !important; /* Block format for standard multiline alignment */
    text-align: left !important;
    font-size: clamp(1.6rem, 2.2vw, 2.2rem) !important;
    font-weight: 800 !important;
    color: #000000 !important; /* Bold black uppercase */
    text-transform: uppercase !important;
    letter-spacing: -0.01em !important; /* Modern tight typographic tracking */
    line-height: 1.15 !important;
    margin: 0 !important;
}

.anatomy-cta {
    font-size: clamp(1rem, 0.95vw, 0.95rem) !important;
    font-weight: 700 !important;
    color: #3b82f6 !important; /* Auxein light blue */
    display: flex !important;
    align-items: center !important;
    transition: color 0.3s ease, transform 0.3s ease !important;
    font-family: var(--font-primary) !important;
}

.anatomy-card:hover .anatomy-cta {
    color: #4340F5 !important; /* Electric cyan on hover */
    transform: translateX(4px) !important; /* Subtle slide right */
}

/* RESPONSIVE ANATOMY LAYOUT */
@media (max-width: 900px) {
    .anatomy-section {
        height: auto !important;
        overflow: visible !important;
    }
    .anatomy-pin-wrapper {
        height: auto !important;
        overflow: visible !important;
        display: block !important;
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
    .anatomy-scroll-container {
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 20px !important;
        width: 100% !important;
        padding-left: 5vw !important;
        padding-right: 5vw !important;
        padding-bottom: 30px !important; /* room for scrollbar */
        align-items: center !important;
        transform: none !important;
        scroll-behavior: smooth !important;
    }
    
    .anatomy-swipe-indicator {
        display: block !important;
        width: 120px;
        height: 4px;
        background: rgba(67, 64, 245, 0.15); /* light faint blue track */
        border-radius: 4px;
        margin: 20px auto 0 auto; /* space above and centered */
        position: relative;
        overflow: hidden;
    }
    
    .anatomy-swipe-progress {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 12.5%; /* 1/8 of width since there are 8 cards */
        background: #4340F5; /* bright blue thumb */
        border-radius: 4px;
        transition: transform 0.1s linear;
        transform: translateX(0);
    }
    .anatomy-card {
        width: 85vw !important;
        max-width: none !important;
        flex-shrink: 0 !important;
        scroll-snap-align: center !important;
        height: auto !important;
        padding: 24px !important; /* Compact interior padding on mobile */
    }
    .anatomy-img-wrapper {
        height: 300px !important;
    }
    .anatomy-label {
        height: auto !important;
        margin-top: 16px !important;
    }
}

/* ============================================================ */
/* COMBINED STORY & ANATOMY SECTION                             */
/* ============================================================ */
.story-anatomy-combined-section {
    position: relative !important;
    width: 100% !important;
    background: transparent !important;
    overflow: visible !important;
}



.combined-pin-wrapper {
    height: 100vh !important;
    width: 100% !important;
    overflow: hidden !important;
    position: relative;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
}

.story-layer {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    z-index: 1 !important;
}

.anatomy-layer {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    z-index: 2 !important;
    padding-top: 90px !important; /* Protect header area on zoom */
}

@media (max-width: 900px) {
    .combined-pin-wrapper {
        height: auto !important;
        display: block !important;
        overflow: visible !important;
        padding-top: 40px !important;
        padding-bottom: 80px !important;
    }
    .story-layer, .anatomy-layer {
        position: relative !important;
        height: auto !important;
    }
    .anatomy-layer {
        margin-top: 10px !important;
        padding-top: 0 !important;
        display: block !important; /* Stack elements vertically so indicator sits below cards */
    }
}

/* ============================================================ */
/* CLIENT ROUNDED PILL NAVIGATION STYLES                       */
/* ============================================================ */
@media (min-width: 1025px) {
    .navbar {
        height: 90px !important;
        display: flex !important;
        align-items: center !important;
        transition: background 0.3s, backdrop-filter 0.3s, height 0.3s !important;
    }
    
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        position: relative !important;
    }

    /* Nav pill — absolutely centered in the full navbar width */
    .nav-menu {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        background: #06154d !important;
        border-radius: 999px !important;
        padding: 18px 28px !important;
        display: flex !important;
        align-items: center !important;
        gap: 32px !important;
        box-shadow: 0 8px 30px rgba(6, 21, 77, 0.15) !important;
        margin: 0 !important;
        white-space: nowrap !important;
    }

    .nav-menu a {
        color: #ffffff !important;
        font-weight: 600 !important;
        font-size: clamp(1rem, 0.95vw, 0.95rem) !important;
        transition: color 0.25s ease !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 4px !important;
    }

    .nav-menu a:hover {
        color: #4340F5 !important; /* Premium brand electric cyan matching website theme */
    }

    /* Keep dropdown/mega menu link colors dark & legible on white background */
    .nav-menu .dropdown-v2 a,
    .nav-menu .sub-dropdown a {
        color: var(--text-dark) !important;
        font-weight: 500 !important;
        background: transparent !important;
        padding: 12px 20px !important;
        display: flex !important;
        justify-content: space-between !important;
        width: 100% !important;
    }

    .nav-menu .dropdown-v2 a:hover,
    .nav-menu .sub-dropdown a:hover {
        color: var(--light-blue) !important;
        background: #f8faff !important;
    }

    /* Search wrap stays on the right in flex layout */
    .nav-search-wrap {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        width: auto !important;
    }

    .nav-search-link {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: var(--text-dark) !important;
        transition: color 0.3s ease, transform 0.3s ease !important;
    }

    .nav-search-link:hover {
        color: var(--light-blue) !important;
        transform: scale(1.1) !important;
    }
}

@media (max-width: 1024px) {
    .nav-search-wrap {
        margin-left: auto !important; /* Push search icon next to the mobile menu toggle */
        margin-right: 15px !important;
        display: flex !important;
        align-items: center !important;
        z-index: 1001 !important;
    }

    .nav-links {
        justify-content: flex-start !important; /* Align to top so it's scrollable and readable */
        align-items: stretch !important;
        overflow-y: auto !important;
    }

    .nav-links > li {
        width: 100% !important;
        text-align: left !important;
    }

    .nav-links > li > a {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        font-size: clamp(1rem, 1.1vw, 1.1rem) !important;
        padding: 10px 0 !important;
        color: var(--text-dark) !important;
    }

    .dropdown-v2, .sub-dropdown {
        position: static !important;
        display: none !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(0, 0, 0, 0.02) !important;
        border-radius: 8px !important;
        padding: 5px 0 5px 15px !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transition: none !important;
        animation: none !important;
    }

    .dropdown-v2[style*="display: block"],
    .dropdown-v2[style*="display:block"],
    .sub-dropdown[style*="display: block"],
    .sub-dropdown[style*="display:block"] {
        display: block !important;
    }

    .dropdown-v2 li, .sub-dropdown li {
        padding: 0 !important;
        width: 100% !important;
    }

    .dropdown-v2 a, .sub-dropdown a {
        padding: 8px 12px !important;
        font-size: clamp(1rem, 0.95vw, 0.95rem) !important;
        color: var(--text-medium) !important;
        background: transparent !important;
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .dropdown-v2 a:hover, .sub-dropdown a:hover {
        color: var(--light-blue) !important;
        background: rgba(59, 130, 246, 0.05) !important;
    }
}

/* ============================================================ */
/* MEDICAL EDUCATION PINNED STORYTELLING SECTION (DAIS)         */
/* ============================================================ */
.med-ed-section {
    position: relative !important;
    width: 100% !important;
    background: transparent !important;
    overflow: visible !important;
}

/* Pinned Intro Overlay styling */
.med-ed-intro-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    z-index: 5;
    background: transparent !important;
    pointer-events: none;
}

.med-ed-scrub-desc {
    color: #475569 !important;
    font-size: clamp(1.8rem, 2.5vw, 2.6rem) !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.01em !important;
    margin: 0 !important;
    text-align: left !important;
    will-change: transform, opacity;
}

.med-ed-pin-wrapper {
    height: 100vh !important;
    width: 100% !important;
    position: relative;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Background video container */
.med-ed-video-container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    z-index: 0;
    overflow: hidden;
}

.med-ed-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 0;
    z-index: 1;
    will-change: opacity;
}

.med-ed-video.active {
    opacity: 1;
    z-index: 2;
}

/* Cinematic overlay to darken background video and ensure text is highly legible */
.med-ed-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: radial-gradient(circle at center, rgba(7, 27, 90, 0.45) 0%, rgba(0, 0, 0, 0.85) 100%) !important;
    z-index: 3;
}

.med-ed-title {
    font-size: clamp(4rem, 7vw, 7rem) !important;
    font-weight: 800 !important;
    line-height: 0.9 !important;
    white-space: nowrap !important;
    color: #ffffff !important;
    margin-bottom: 2rem !important;
    letter-spacing: -1px !important;
    text-transform: capitalize !important;
}

.med-ed-desc {
    font-size: clamp(0.78rem, 1.6vw, 1.3rem) !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.7 !important;
    margin-bottom: 2.5rem !important;
}

.mobile-break {
    display: none !important;
}

/* Content layer */
.med-ed-content-container {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 4;
}

.med-ed-slide {
    position: absolute !important;
    width: 100% !important;
    max-width: 1000px !important; /* Expanded to fit single-line titles beautifully */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 40px !important;
    box-sizing: border-box !important;
    opacity: 0;
    transform: translateY(120vh);
    pointer-events: none;
}

/* Hide mobile-specific videos on desktop layout */
.mobile-slide-video-wrapper {
    display: none !important;
}

.med-ed-slide.active-slide {
    pointer-events: auto;
}

.med-ed-eyebrow {
    font-size: clamp(1rem, 0.85vw, 0.85rem) !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    color: #ffffff !important;
    background-color: #4340F5 !important;
    padding: 6px 16px !important;
    border-radius: 50px !important;
    display: inline-block !important;
    margin-bottom: 1.5rem !important;
    text-transform: uppercase !important;
}

.med-ed-title {
    font-size: clamp(2.2rem, 5vw, 4.2rem) !important; /* Adjusted slightly to fit single line perfectly */
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: #ffffff !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: -1px !important;
    text-transform: uppercase;
    white-space: nowrap !important; /* Force single line on desktop */
}

.med-ed-desc {
    font-size: clamp(1.1rem, 2vw, 1.45rem) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 2.5rem !important;
    max-width: 680px !important;
}

.med-ed-cta {
    font-size: clamp(1rem, 1.1vw, 1.1rem) !important;
    font-weight: 700 !important;
    color: #4340F5 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    transition: color 0.3s ease, transform 0.3s ease !important;
    font-family: var(--font-primary) !important;
}

.med-ed-cta:hover {
    color: #4340F5 !important;
    transform: translateX(4px) !important;
}

/* Mobile adjustments (natural scrolling stack, no pin) */
@media (max-width: 900px) {
    .med-ed-section {
        height: auto !important;
    }

    .med-ed-intro-overlay {
        position: relative !important;
        height: auto !important;
        display: block !important;
        padding: 20px 0 0 0 !important; /* Reduced massive top and bottom gap */
    }
    
    .med-ed-pin-wrapper {
        height: auto !important;
        display: block !important;
        position: relative !important;
        overflow: visible !important;
    }
    
    .med-ed-video-container {
        display: none !important; /* Hide the generic background video on mobile */
    }
    
    .med-ed-content-container {
        height: auto !important;
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 20px !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important; /* full bleed */
        padding: 20px 5vw 40px 5vw !important; /* reduced massive top gap */
    }
    
    .med-ed-slide {
        position: relative !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        padding: 24px !important; /* reduced padding since video is inside */
        background: rgba(7, 27, 90, 0.85) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border-radius: 28px !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
        width: 85vw !important;
        flex-shrink: 0 !important;
        scroll-snap-align: center !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .mobile-slide-video-wrapper {
        display: block !important;
        width: 100% !important;
        height: 200px !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        margin-bottom: 24px !important;
        flex-shrink: 0 !important;
    }

    .mobile-slide-video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
}


/* ============================================================ */
/* RESEARCH & INNOVATION SECTION */
/* ============================================================ */
.research-innovation-section { position: relative !important; width: 100% !important; background: transparent !important; overflow: visible !important; }
.research-pin-wrapper { height: 100vh !important; width: 100% !important; position: relative; overflow: hidden !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.research-bg-container { position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; z-index: 0; overflow: hidden; }
.research-bg-img { position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; object-fit: cover !important; z-index: 1; }
.research-overlay { position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; background: radial-gradient(circle at center, rgba(7, 27, 90, 0.45) 0%, rgba(0, 0, 0, 0.85) 100%) !important; z-index: 2; }
.research-content-container { position: relative !important; width: 100% !important; height: 100% !important; display: flex !important; align-items: center !important; justify-content: center !important; z-index: 3; }
.research-slide { position: absolute !important; width: 100% !important; max-width: 850px !important; display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; padding: 0 40px !important; box-sizing: border-box !important; opacity: 0; pointer-events: none; }
.research-slide.active-slide { pointer-events: auto; }
@media (max-width: 900px) { .research-innovation-section { height: auto !important; } .research-pin-wrapper { height: auto !important; display: block !important; position: relative !important; overflow: visible !important; padding: 80px 0; background: #071B5A;} .research-bg-container { display: none !important; } .research-content-container { height: auto !important; display: flex !important; flex-direction: column !important; padding: 40px 0; } .research-slide { position: relative !important; transform: none !important; opacity: 1 !important; pointer-events: auto !important; } }

/* ============================================================ */
/* NEWS & EVENTS SECTION (REDESIGN) */
/* ============================================================ */
.news-events-section {
    position: relative;
    padding: 100px 0 120px 0;
    background-color: #EAF5FF;
    overflow: hidden;
}

.news-events-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/wave-gif.gif');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    animation: slowDrift 60s linear infinite;
}

@keyframes slowDrift {
    0% { transform: scale(1.05) translate(0, 0); }
    50% { transform: scale(1.05) translate(-1%, 1%); }
    100% { transform: scale(1.05) translate(0, 0); }
}

.news-events-container {
    position: relative;
    z-index: 1;
}

.news-events-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.news-events-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #071B5A;
    font-weight: 400;
    margin-bottom: 24px;
}

.news-events-header h2 strong {
    font-weight: 700;
}

.news-events-header p {
    font-size: clamp(1rem, 1.05vw, 1.05rem);
    line-height: 1.6;
    color: #475569;
}

@media (max-width: 900px) {
    .news-events-header {
        text-align: left !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

.news-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.news-card {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.news-card-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-card-img-wrapper img {
    transform: scale(1.03);
}

.news-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-content h3 {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    font-weight: 700;
    color: #071B5A;
    margin-bottom: 20px;
    line-height: 1.4;
}

.news-meta {
    font-size: clamp(1rem, 0.9vw, 0.9rem);
    color: #475569;
    margin: 4px 0;
    display: flex;
    align-items: flex-start;
}

.news-events-cta {
    text-align: center;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, #071B5A, #4340F5);
    color: #fff;
    font-size: clamp(1rem, 0.95vw, 0.95rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    box-shadow: 0 8px 20px rgba(30, 184, 255, 0.2);
}

.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(30, 184, 255, 0.3);
    filter: brightness(1.1);
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .news-events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .news-events-section {
        padding: 40px 0 20px 0 !important;
    }
    .news-events-grid {
        grid-template-columns: 1fr;
        max-width: min(100%, 500px);
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px !important;
    }
    .help-section {
        padding-top: 40px !important;
    }
}

/* ============================================================ */
/* CONTACT SECTION (GLASS REDESIGN) */
/* ============================================================ */
.contact-glass-section {
    position: relative;
    padding: 120px 0 60px 0;
    background-color: #EAF5FF;
    overflow: hidden;
}

.contact-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/wave-gif.gif');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.premium-glass-container {
    position: relative;
    z-index: 1;
    background: #06154d !important; /* Header Navy Box Color #06154d */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 36px;
    padding: 70px 80px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.premium-glass-container .text-white { color: #ffffff !important; }
.premium-glass-container .text-white-85 { color: rgba(255, 255, 255, 0.85) !important; }
.premium-glass-container .text-white-75 { color: rgba(255, 255, 255, 0.75) !important; }

.premium-glass-container .split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.glass-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: clamp(1rem, 1vw, 1rem);
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.glass-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(30, 184, 255, 0.2);
}

/* Responsive */
@media (max-width: 900px) {
    .premium-glass-container {
        padding: 40px 30px;
    }
    .premium-glass-container .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}



/* ============================================================ */
/* MOBILE POLISH REFINEMENT PASS (ADDED PROGRAMMATICALLY) */
/* ============================================================ */

@media (max-width: 900px) {

    /* Universal fix for 100vw overflow */
    .med-ed-content-container,
    .anatomy-scroll-container,
    .news-events-grid {
        box-sizing: border-box !important;
    }

    /* 1. Medical Education Hero Section */
    #med-ed-intro-title .story-title, .med-ed-intro-title, .story-title {
        font-size: clamp(2.2rem, 6vw, 3rem) !important; /* Smaller to prevent huge text */
        line-height: 0.95 !important;
        margin-bottom: 8px !important;
    }
    
    #med-ed-intro-desc, .med-ed-intro-description, .story-description {
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
        max-width: 95% !important;
        margin-bottom: 16px !important;
    }
    
    .products-story-container, .med-ed-intro-container {
        padding-bottom: 16px !important;
        gap: 12px !important;
        min-height: auto !important;
    }

    /* 2. Medical Education Video */
    .med-ed-video-container {
        display: none !important; /* Hide generic background video on mobile */
    }
    
    #med-ed-vid-1 {
        opacity: 1 !important;
        display: block !important;
    }
    
    #med-ed-vid-2 {
        display: none !important;
    }

    /* 3. Research & Innovation / Clinical Training Cards */
    .med-ed-slide, .vslide {
        width: 82vw !important;
        min-width: 82vw !important;
        max-width: 82vw !important;
        flex-shrink: 0 !important;
        scroll-snap-align: center !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        transform: none !important;
    }
    
    .med-ed-content-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        padding: 20px 10vw 20px 5vw !important; /* Right padding 10vw for peek effect */
    }

    /* 4. Card Typography */
    .med-ed-title, .research-title, .clinical-title, .vslide-title {
        font-size: 1.8rem !important; /* Prevent text clipping */
        line-height: 1.1 !important;
        margin-bottom: 12px !important;
        white-space: normal !important; /* Allow wrapping on mobile */
    }
    
    .med-ed-desc, .research-desc, .clinical-desc, .vslide-description {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    /* 5 & 6. Hide Horizontal Scrollbar */
    .med-ed-content-container::-webkit-scrollbar,
    .anatomy-scroll-container::-webkit-scrollbar,
    .news-events-grid::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    .med-ed-content-container,
    .anatomy-scroll-container,
    .news-events-grid {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    /* 7. News & Events Spacing */
    .news-events-section {
        padding-top: 40px !important;
        padding-bottom: 20px !important;
    }
    .med-ed-section {
        padding-bottom: 0 !important; /* Remove gap before news */
    }

    /* 8. News Cards Swipe */
    .news-events-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        padding: 10px 10vw 10px 5vw !important; /* reduced bottom padding */
        margin-bottom: 10px !important; /* reduced margin */
    }
    
    .news-card {
        width: 82vw !important;
        min-width: 82vw !important;
        max-width: 82vw !important;
        flex-shrink: 0 !important;
        scroll-snap-align: center !important;
        height: auto !important;
        margin: 0 !important;
    }

    /* 9. Navbar */
}

.premium-glass-container .text-white { color: #ffffff !important; }
.premium-glass-container .text-white-85 { color: rgba(255, 255, 255, 0.85) !important; }
.premium-glass-container .text-white-75 { color: rgba(255, 255, 255, 0.75) !important; }

.premium-glass-container .split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.glass-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: clamp(1rem, 1vw, 1rem);
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.glass-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(30, 184, 255, 0.2);
}

/* Responsive */
@media (max-width: 900px) {
    .premium-glass-container {
        padding: 40px 30px;
    }
    .premium-glass-container .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}



/* ============================================================ */
/* MOBILE POLISH REFINEMENT PASS (ADDED PROGRAMMATICALLY) */
/* ============================================================ */

@media (max-width: 900px) {

    /* Universal fix for 100vw overflow */
    .med-ed-content-container,
    .anatomy-scroll-container,
    .news-events-grid {
        box-sizing: border-box !important;
    }

    /* 1. Medical Education Hero Section */
    #med-ed-intro-title .story-title, .med-ed-intro-title, .story-title {
        font-size: clamp(2.2rem, 6vw, 3rem) !important; /* Smaller to prevent huge text */
        line-height: 0.95 !important;
        margin-bottom: 8px !important;
    }
    
    #med-ed-intro-desc, .med-ed-intro-description, .story-description {
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
        max-width: 95% !important;
        margin-bottom: 16px !important;
    }
    
    .products-story-container, .med-ed-intro-container {
        padding-bottom: 16px !important;
        gap: 12px !important;
        min-height: auto !important;
    }

    /* 2. Medical Education Video */
    .med-ed-video-container {
        display: none !important; /* Hide generic background video on mobile */
    }
    
    #med-ed-vid-1 {
        opacity: 1 !important;
        display: block !important;
    }
    
    #med-ed-vid-2 {
        display: none !important;
    }

    /* 3. Research & Innovation / Clinical Training Cards */
    .med-ed-slide, .vslide {
        width: 82vw !important;
        min-width: 82vw !important;
        max-width: 82vw !important;
        flex-shrink: 0 !important;
        scroll-snap-align: center !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        transform: none !important;
    }
    
    .med-ed-content-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        padding: 20px 10vw 20px 5vw !important; /* Right padding 10vw for peek effect */
    }

    /* 4. Card Typography */
    .med-ed-title, .research-title, .clinical-title, .vslide-title {
        font-size: 1.8rem !important; /* Prevent text clipping */
        line-height: 1.1 !important;
        margin-bottom: 12px !important;
        white-space: normal !important; /* Allow wrapping on mobile */
    }
    
    .med-ed-desc, .research-desc, .clinical-desc, .vslide-description {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    /* 5 & 6. Hide Horizontal Scrollbar */
    .med-ed-content-container::-webkit-scrollbar,
    .anatomy-scroll-container::-webkit-scrollbar,
    .news-events-grid::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    .med-ed-content-container,
    .anatomy-scroll-container,
    .news-events-grid {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    /* 7. News & Events Spacing */
    .news-events-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .med-ed-section {
        padding-bottom: 0 !important; /* Remove gap before news */
    }

    /* 8. News Cards Swipe */
    .news-events-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        padding: 10px 10vw 30px 5vw !important; /* 10vw right padding for peek */
    }
    
    .news-card {
        width: 82vw !important;
        min-width: 82vw !important;
        max-width: 82vw !important;
        flex-shrink: 0 !important;
        scroll-snap-align: center !important;
        height: auto !important;
        margin: 0 !important;
    }

    /* 9. Navbar */
    .site-logo img, .navbar-brand img, .logo img {
        height: 38px !important; /* Slightly smaller for premium feel */
    }
    
    .site-header, .navbar {
        height: 64px !important;
        max-height: 64px !important;
    }
    
    /* Extra: Anatomy scroll container fix */
    .anatomy-scroll-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        padding: 10px 10vw 30px 5vw !important;
    }
    .anatomy-card {
        width: 82vw !important;
        min-width: 82vw !important;
        max-width: 82vw !important;
        flex-shrink: 0 !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
    }

}


/* ============================================================ */
/* DAIS ACADEMY INTRO LOGO */
/* ============================================================ */
.dais-intro-logo {
    display: block;
    width: clamp(260px, 18vw, 340px);
    height: auto;
    margin: 0 0 28px 0; /* Left aligned instead of centered */
    filter: drop-shadow(0 8px 16px rgba(11, 31, 91, 0.18)) drop-shadow(0 4px 8px rgba(67, 64, 245, 0.1));
    transition: transform 0.3s ease, filter 0.3s ease;
    clip-path: none !important;
}

.dais-intro-logo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 12px 20px rgba(11, 31, 91, 0.22)) drop-shadow(0 6px 10px rgba(67, 64, 245, 0.15));
}

@media (max-width: 900px) {
    .dais-intro-logo {
        width: 180px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 30px !important;
        display: block !important;
    }
}



/* ============================================================ */
/* FLAWLESS ANATOMY REVEAL: FIXED LAYOUT, PUSH TITLE UP         */
/* ============================================================ */

/* Transition image wrapper height and position on hover */
.anatomy-card:hover .anatomy-img-wrapper {
    height: 190px !important; /* Shakes and shrinks on hover to yield space for description */
    transform: translateY(-20px) !important;
    opacity: 0.25 !important;
}

/* Force image to remain completely static inside wrapper */
.anatomy-card:hover .anatomy-img-wrapper img {
    transform: none !important;
    filter: grayscale(0%) brightness(1) contrast(1) !important; /* Restore the beautiful blue color on hover */
}

/* Make the text container relative in the flex flow so the image stays in its original place! */
.anatomy-meta {
    position: relative !important;
    width: 100% !important;
    height: 110px !important; /* Sleek reserved space by default */
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-end !important; /* Anchors the title to the BOTTOM of this box */
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    gap: 0 !important;
    z-index: 10 !important;
    background: transparent !important;
    overflow: visible !important;
    transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.anatomy-card:hover .anatomy-meta {
    height: 250px !important; /* Expand text area significantly on hover to show full descriptions */
}

/* Description and CTA hidden by default */
.anatomy-desc {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease, margin 0.4s ease !important;
    transform: none !important;
}

.anatomy-cta {
    position: relative !important;
    height: auto !important;
    max-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease, margin 0.4s ease !important;
    transform: none !important;
}

/* On hover, expand max-height, pushing the title UP automatically inside the fixed container */
.anatomy-card:hover .anatomy-desc {
    max-height: 160px !important; /* Plenty of room for full descriptions */
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 12px !important;
}

.anatomy-card:hover .anatomy-cta {
    max-height: 30px !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 12px !important;
}

/* ============================================================ */
/* WORKSHOP 2026 SECTION                                        */
/* ============================================================ */

.workshop-section {
    position: relative;
    width: 100%;
    /* Fill exactly the remaining screen after the navbar */
    height: calc(100vh - 90px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    background-color: #fcfcfc;
    background-image: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
    overflow: hidden;
    margin-top: 90px;
    font-family: var(--font-primary);
    box-sizing: border-box;
}

.workshop-path-container {
    position: relative;
    width: 100%;
    height: 65vh;
    flex: 1;
    overflow: hidden;
    margin-bottom: 60px; /* Space for marquee */
}

#workshopArcSvg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.workshop-marquee {
    width: 100%;
    background: #06154d;
    color: #4340F5;
    padding: 15px 0;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    white-space: nowrap;
    border-top: 1px solid rgba(67, 64, 245, 0.2);
    border-bottom: 1px solid rgba(67, 64, 245, 0.2);
    z-index: 10;
}

.marquee-content {
    display: flex;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-content span {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding-right: 50px;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

.workshop-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 3vh 0 0 0;
    box-sizing: border-box;
}

.workshop-header {
    text-align: center;
    margin-bottom: 1vh;
    flex-shrink: 0;
}

.workshop-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #000;
    letter-spacing: -0.02em;
    margin: 0 0 4px 0;
    line-height: 1;
}

.workshop-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: clamp(0.9rem, 1vw, 1rem);
    font-weight: 600;
    color: #333;
}







.workshop-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    padding: 20px;
    color: #fff;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform-origin: center center;
    will-change: transform, opacity;
    cursor: pointer;
    /* Remove hover transform since GSAP controls it, we just add a slight brightness on hover */
    transition: filter 0.3s ease;
}

/* Glare overlay element injected by JS */
.card-glare {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

/* Featured badge on the NEXT EVENT card */
.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #4340F5;
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(67, 64, 245, 0.5);
    z-index: 10;
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(67, 64, 245, 0.5); }
    50%       { box-shadow: 0 4px 25px rgba(67, 64, 245, 0.9); }
}

/* Location Icon Pulse */
.location-icon {
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%   { transform: scale(1); opacity: 1; }
    50%  { transform: scale(1.15); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* Staggered Card Reveal Animation */
@keyframes cardReveal {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.workshop-column:nth-child(1) .workshop-card:nth-child(1) { animation: cardReveal 0.6s 0.1s  ease forwards; }
.workshop-column:nth-child(1) .workshop-card:nth-child(2) { animation: cardReveal 0.6s 0.2s  ease forwards; }
.workshop-column:nth-child(1) .workshop-card:nth-child(3) { animation: cardReveal 0.6s 0.3s  ease forwards; }
.workshop-column:nth-child(2) .workshop-card:nth-child(1) { animation: cardReveal 0.6s 0.25s ease forwards; }
.workshop-column:nth-child(2) .workshop-card:nth-child(2) { animation: cardReveal 0.6s 0.35s ease forwards; }
.workshop-column:nth-child(3) .workshop-card:nth-child(1) { animation: cardReveal 0.6s 0.4s  ease forwards; }
.workshop-column:nth-child(3) .workshop-card:nth-child(2) { animation: cardReveal 0.6s 0.5s  ease forwards; }




.card-dark {
    background-color: #06154d; /* Premium Navy */
}

.card-blue {
    background-color: #4340F5; /* Premium Workshop Blue */
}

.card-date {
    font-size: clamp(0.8rem, 1vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: clamp(8px, 1vh, 14px);
}

.card-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    margin-bottom: clamp(8px, 1vh, 14px);
}

.card-course {
    font-size: clamp(0.78rem, 0.95vw, 0.95rem);
    font-weight: 500;
    line-height: 1.4;
}



.participation-fee {
    padding: 10px 24px;
    border: 2px solid #333;
    border-radius: 50px;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    display: inline-block;
}

.cinematic-scroll-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.cinematic-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: transparent !important;
    visibility: hidden;
}

.cinematic-panel img.banner-img {
    width: 95vw !important;
    height: 90vh !important;
    max-width: 95vw !important;
    max-height: 90vh !important;
    object-fit: contain !important;
    image-rendering: auto !important;
}

.panel-assembly {
    visibility: visible;
    background: transparent;
    line-height: 1.5;
}

.contact-info {
    text-align: right;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.contact-info strong {
    font-weight: 700;
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
    
    .workshop-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    
    .workshop-footer {
        align-items: center;
        text-align: center;
    }
    .contact-info {
        text-align: center;
    }
}

/* Global Override for any remaining cyan text classes */
.text-cyan {
    color: #4340F5 !important;
}


/* =========================================
   CINEMATIC SCROLL STORY SECTION
   ========================================= */
/* Static Hero Section */
/* Static Hero Section (Wiselock Design) */
#hero-static.hero-wiselock {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    background-color: transparent; /* Let global canvas waves show through */
    overflow: visible;
    z-index: 100;
    margin-top: -64px; /* Cancel body padding-top so hero starts flush at top */
    padding-top: 64px;
}

.hero-wiselock .hero-container {
    position: relative;
    z-index: 2;
    display: block;
    width: 110%;
    height: 85vh;
    /* min-height: calc(110vh - 64px); */
}

.wiselock-head-img {
    position: absolute;
    top: 15%;
    left: 4%;
    width: 35%;
    z-index: 10;
}

.wiselock-title {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 800;
    color: #0b1a4a;
    letter-spacing: 0.02em;
    margin: 0 0 0.3em 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.wiselock-subtitle {
    font-size: clamp(0.75rem, 1.2vw, 1rem);
    font-weight: 500;
    color: #0b1a4a;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
}


.wl-img1 {
    position: absolute;
    bottom: 12%;
    left: 8%;
    width: 35%;
    max-width: 550px;
    z-index: 5;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.12));
    animation: floatTool1 6s ease-in-out infinite;
}

.wl-img2 {
    position: absolute;
    bottom: 22%;
    left: 50%;
    width: 12%;
    max-width: 180px;
    z-index: 4;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.12));
    animation: floatTool2 5s ease-in-out infinite 1s; /* Delayed start for organic feel */
}

.wl-img3 {
    position: absolute;
    top: 5%;
    right: 2%;
    height: 50%;
    width: auto;
    z-index: 3;
    filter: drop-shadow(-10px 20px 30px rgba(0,0,0,0.1));
    animation: floatTool3 7s ease-in-out infinite 0.5s;
}

.assembly-text span {
    color: #4340F5;
}

/* Assembly Models */
.models-container {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    width: 60vh;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.model-bone {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    z-index: 1;
    transform-origin: center center;
    will-change: transform;
}

.model-plate {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    z-index: 2;
    opacity: 0;
    /* Plate starts way off to the top right */
    transform: translate(20vw, -20vh) rotate(35deg);
    will-change: transform, opacity;
}

/* Horizontal Panels Content */
.h-content {
    width: 100vw; /* Keep content constrained to viewport width inside the 120vw panel */
    padding: 0 10%;
    box-sizing: border-box;
}

.h-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.panel-education .h-title { color: #fff; }
.panel-dais .h-title { color: #000; }

/* ============================================================ */
/* STATS MARQUEE BANNER */
/* ============================================================ */
    .stats-marquee-section {
    width: 100%;
    /* background-color: #FAF9F6 !important; */
    /* background: #FAF9F6 !important; */
    padding: 30px 0;
    overflow: hidden;

    position: relative;
    top: 0;

    left: 0;
    z-index: 1;

    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
    #stats-banner-section{
    width:100%;
    /* background:#FAF9F6; */
    position:relative;
    z-index:1;
    margin-top:0;
    margin-bottom:0;
}
    .stats-marquee {
        display: flex;
        width: 100%;
        overflow: hidden;
        /* background: #FAF9F6 !important; */
    }

    .stats-track {
        display: flex;
        gap: 30px;
        padding-left: 30px;
        animation: scroll-stats 15s linear infinite;
        width: max-content;
        /* background: #FAF9F6 !important; */
    }



    .stat-card {
        /* background: #FAF9F6 !important; */
        /* background-color: #FAF9F6 !important; */
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 10px 60px !important;
        width: auto !important;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        box-shadow: none !important;
        transition: transform 0.3s ease !important;
    }

    .stat-card:hover {
        transform: scale(1.08) !important;
    }

    .stat-card h3 {
        font-size: clamp(2.8rem, 4vw, 4rem) !important; /* Larger text size */
        font-weight: 800 !important;
        color: #4340F5 !important;
        margin: 0 !important;
        line-height: 1 !important;
        text-align: left !important;
        letter-spacing: -0.02em !important;
    }

    .stat-card h4 {
        font-size: clamp(1rem, 1.3vw, 1.3rem) !important; /* Larger title size */
        font-weight: 700 !important;
        color: #0a194f !important;
        margin: 8px 0 0 0 !important;
        text-align: center !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
    }

    /* ============================================================ */
    /* BANNER PANELS */
    /* ============================================================ */

    .banner-panel,
    .panel-isakos,


    .banner-img {
        width: 95vw !important;
        height: 90vh !important;
        max-width: 95vw !important;
        max-height: 90vh !important;
        object-fit: contain !important;
        image-rendering: auto !important;
    }

    /* Floating Light Sweep */
    .light-sweep {
        position: absolute;
        top: 0;
        left: -150%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
        transform: skewX(-25deg);
        z-index: 10;
        pointer-events: none;
    }
    .active-sweep {
        animation: sweepAnim 2.5s ease-in-out forwards;
    }
    @keyframes sweepAnim {
        0% { left: -150%; }
        100% { left: 200%; }
    }

/* ============================================================ */
/* WORKSHOP 2026 HTML PANEL */
/* ============================================================ */



.workshop-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90vw;
    max-width: 1200px;
    z-index: 2;
}

.ws-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.ws-location {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 3rem;
    font-weight: 500;
}

.ws-grid {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
}

.ws-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    max-width: 350px;
}

.workshop-card {
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    will-change: transform;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.workshop-card:hover {
    box-shadow: 0 15px 40px rgba(67, 64, 245, 0.15);
}

.dark-card {
    background: #0a1128;
    color: #ffffff;
}

.light-card {
    background: #4340F5;
    color: #ffffff;
}

.workshop-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 12px;
}

.workshop-card p {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.ws-footer-text {
    margin-top: auto;
    text-align: right;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fee-badge {
    border: 1px solid #333;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.ws-footer-text p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

@keyframes scroll-stats {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

@media (max-width: 768px) {
    .stat-card {
        padding: 10px 30px !important; /* Slightly more compact on mobile */
    }
    .stat-card h3 {
        font-size: 2.2rem !important;
    }
    .stat-card h4 {
        font-size: 0.95rem !important;
    }
    
    /* Shift Hero Bone right to avoid text overlap */
    .models-container {
        right: -20% !important;
        transform: translateY(-55%) scale(0.75) !important;
    }
    
    /* Reduce empty space below hero animation on mobile */
    #cinematic-story {
        height: 72vh !important;
        min-height: auto !important;
    }
    
    /* Move Text to top to prevent overlapping the animation */
    .assembly-text-container {
        top: 10% !important;
        transform: none !important;
        width: 90% !important;
        left: 5% !important;
    }
}

/* ============================================================ */
/* MOBILE VERTICAL FALLBACKS - Ensuring all content is visible  */
/* ============================================================ */
@media (max-width: 1024px) {
    /* Rolex Card Stack - Convert to simple vertical scroll */
    .rolex-card {
        position: relative !important;
        top: auto !important;
        min-height: auto !important;
        margin-bottom: 40px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    }
    .rolex-card-deck {
        padding-block: 60px !important;
    }

    /* DAIS Academy / Medical Education */
    .med-ed-content-container {
        display: flex !important;
        flex-direction: column !important;
        overflow-x: visible !important;
        width: 100% !important;
        margin-left: 0 !important;
        padding: 20px 5% !important;
        gap: 30px !important;
    }
    .med-ed-slide {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        margin: 0 !important;
    }

    /* News & Events */
    .news-events-grid {
        display: flex !important;
        flex-direction: column !important;
        overflow-x: visible !important;
        width: 100% !important;
        margin-left: 0 !important;
        padding: 20px 5% !important;
        gap: 40px !important;
    }
    .news-card {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
}
h2 {
    font-size: clamp(3.2rem, 5.2vw, 5.4rem) !important;
    font-weight: 900 !important;
}
/* .products-story-container {
    display:none !important;
} */