/* DMFT Dhanbad Redesign — Core Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Inter:wght@300;400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap');

:root {
  --color-primary: #0D9488;
  --color-primary-dark: #0F766E;
  --color-primary-light: #14B8A6;
  --color-accent: #D97706;
  --color-accent-hover: #F59E0B;
  --color-navy: #080E14;
  --color-navy-light: #101F2C;
  --color-paper: #F8FAFC;
  --color-paper-card: #FFFFFF;
  --color-green: #10B981;
  --color-red: #EF4444;

  --font-display: 'Open Sans', 'Inter', sans-serif;
  --font-body: 'Open Sans', 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

/* Base Setup */
html {
  scroll-behavior: auto;
  /* Handled by Lenis */
  font-family: 'Open Sans', 'Inter', sans-serif !important;
  font-size: 16px;
  background-color: var(--color-navy);
  color: var(--color-paper);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', 'Inter', sans-serif !important;
  font-size: 0.95rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.font-display,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', 'Inter', sans-serif !important;
}

.font-body {
  font-family: 'Open Sans', 'Inter', sans-serif !important;
}

/* ══════════════════════════════════════════
   AMBIENT HD VIDEO BACKGROUND — OPTIMIZED
   Lazy-loads on desktop, poster on mobile/slow
══════════════════════════════════════════ */
.video-bg-layer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Default video opacity (overridden by JS fade-in) */
.video-bg-layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(1.15) contrast(1.1) brightness(1.05);
  position: absolute;
  top: 0;
  left: 0;
  /* GPU-accelerated compositing */
  will-change: opacity;
  transform: translateZ(0);
}

/* Poster fallback — shown on mobile or while video loads */
.video-poster-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Premium cinematic dark gradient as fallback background */
  background:
    radial-gradient(ellipse at 20% 80%, rgba(13, 148, 136, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(217, 119, 6, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(30, 41, 59, 0.5) 0%, transparent 80%),
    linear-gradient(135deg, #080E14 0%, #0d1a26 50%, #080E14 100%);
  opacity: 1;
  transition: opacity 1.2s ease;
  z-index: 0;
}

/* Mobile poster-only mode (no video downloaded) */
.video-bg-layer.video-poster-mode .video-poster-fallback {
  opacity: 1;
}

/* Hide video on phones via CSS media query as additional safety net */
@media (max-width: 767px) {
  .video-bg-layer video {
    display: none;
  }
}

/* Respect data saver preference */
@media (prefers-reduced-data: reduce) {
  .video-bg-layer video {
    display: none;
  }
}

/* Respect reduced-motion: pause video via CSS */
@media (prefers-reduced-motion: reduce) {
  .video-bg-layer video {
    animation: none !important;
    display: none;
  }
}

.video-vignette-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8, 14, 20, 0.40) 0%, rgba(8, 14, 20, 0.18) 25%, rgba(8, 14, 20, 0.18) 60%, rgba(8, 14, 20, 0.50) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(13, 148, 136, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

/* Quantum Canvas (Combined Layer) */
#ambientSolarCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

/* ══════════════════════════════════════════
   CINEMATIC PARALLAX BANNER SECTIONS
   isolation:isolate prevents fixed video bleed-through
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   CINEMATIC PARALLAX BANNER & IMPACT CAROUSEL
   isolation:isolate prevents fixed video bleed-through
══════════════════════════════════════════ */
.parallax-banner {
  position: relative;
  z-index: 20;
  isolation: isolate;
  /* creates own stacking context — stops video bleed */
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-banner-img {
  position: absolute;
  top: -15%;
  left: 0;
  z-index: 0;
  width: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  height: 130%;
  object-fit: cover;
  will-change: transform;
  filter: brightness(0.72) saturate(1.3);
}

.parallax-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
      rgba(8, 14, 20, 0.90) 0%,
      rgba(13, 148, 136, 0.30) 50%,
      rgba(217, 119, 6, 0.25) 100%);
}

.parallax-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 880px;
}

/* Impact Swiper Custom Navigation & Bullets */
.impact-banner-swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 20;
  isolation: isolate;
}

.impact-banner-swiper .swiper-slide {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.impact-swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #F59E0B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.impact-swiper-btn:hover {
  background: #F59E0B;
  color: #0F172A;
  border-color: #FBBF24;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.65), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.impact-swiper-prev {
  left: 24px;
}

.impact-swiper-next {
  right: 24px;
}

.impact-swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.35);
  opacity: 0.7;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.impact-swiper-pagination .swiper-pagination-bullet-active {
  background: #F59E0B;
  opacity: 1;
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

/* ══════════════════════════════════════════
   ENHANCED GALLERY SWIPER CARDS
══════════════════════════════════════════ */
.gallery-card-glow {
  box-shadow:
    0 0 0 1px rgba(217, 119, 6, 0.25),
    0 20px 60px -15px rgba(0, 0, 0, 0.7),
    0 0 40px -20px rgba(13, 148, 136, 0.3);
}

/* ══════════════════════════════════════════
   DMFT IN ACTION — 3D COVERFLOW SLIDER
══════════════════════════════════════════ */
.mySwiper {
  width: 100%;
  padding: 40px 0 60px;
  margin: 0 auto;
}

.mySwiper .swiper-slide {
  background: #0f172a;
  border-radius: 16px;
  width: 340px;
  height: 420px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(217, 119, 6, 0.15),
    0 24px 60px -12px rgba(0, 0, 0, 0.8);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mySwiper .swiper-slide-active {
  box-shadow:
    0 0 0 2px rgba(245, 158, 11, 0.5),
    0 32px 80px -12px rgba(0, 0, 0, 0.9),
    0 0 60px -20px rgba(245, 158, 11, 0.3);
}

.mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mySwiper .swiper-pagination {
  bottom: 10px;
}

.mySwiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
}

.mySwiper .swiper-pagination-bullet-active {
  background: #F59E0B;
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

/* DMFT IN ACTION NAV BUTTONS & RESPONSIVE */
.mySwiper-btn {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #F59E0B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  z-index: 30;
}

.mySwiper-btn:hover {
  background: #F59E0B;
  color: #0F172A;
  border-color: #F59E0B;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

@media (max-width: 640px) {
  .mySwiper .swiper-slide {
    width: 290px;
    height: 380px;
  }
}


/* Video poster shimmer while loading */
.vid-poster-shimmer {
  background: linear-gradient(120deg, #0D1B2A 0%, #1a2f3f 50%, #0D1B2A 100%);
  animation: vidShimmer 2s infinite;
}

@keyframes vidShimmer {

  0%,
  100% {
    background-position: 0 0;
  }

  50% {
    background-position: 100% 0;
  }
}

/* Kinetic & Display Typography */
.font-display {
  font-family: var(--font-display);
}

.font-body {
  font-family: var(--font-body);
}

.font-mono {
  font-family: var(--font-mono);
}

/* Gradient Text FX */
.text-gradient-amber {
  background: linear-gradient(135deg, #FDE047 0%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-teal {
  background: linear-gradient(135deg, #2DD4BF 0%, #0D9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Translucent Glassmorphism Classes */
.glass-nav,
#mainNavbar {
  background: rgba(8, 14, 20, 0.92) !important;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(245, 158, 11, 0.15);
}

.brand-logo-badge {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border: 2px solid rgba(245, 158, 11, 0.8);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4), inset 0 0 10px rgba(13, 148, 136, 0.3);
  transition: all 0.3s ease;
}

.brand-logo-badge:hover {
  transform: scale(1.06);
  border-color: #F59E0B;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.7);
}

.glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-dark {
  background: rgba(10, 18, 30, 0.45);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(217, 119, 6, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 20px 40px rgba(0, 0, 0, 0.45);
}

.glass-dark-glow {
  background: rgba(10, 18, 30, 0.50);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(13, 148, 136, 0.40);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 15px 35px -10px rgba(13, 148, 136, 0.35);
}

/* Next-Gen Neo Data Pods — Sector Cards with Animated Background Image */
.neo-data-pod {
  background: rgba(10, 15, 28, 0.45);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(13, 148, 136, 0.35);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.neo-data-pod:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 24px 50px -10px rgba(13, 148, 136, 0.35),
    0 0 25px rgba(217, 119, 6, 0.25);
  border-color: rgba(217, 119, 6, 0.65);
}

.neo-data-pod::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0D9488, #D97706, #38BDF8);
  opacity: 1;
  z-index: 10;
}

/* Background Image with Slow Pan/Zoom Idle & Hover Animation */
.sector-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  filter: saturate(1.2) brightness(0.85);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, filter 0.5s ease;
  animation: sectorBgPan 22s ease-in-out infinite alternate;
  z-index: 1;
}

.neo-data-pod:nth-child(2n) .sector-card-bg {
  animation-duration: 28s;
  animation-direction: alternate-reverse;
}

.neo-data-pod:nth-child(3n) .sector-card-bg {
  animation-duration: 20s;
}

@keyframes sectorBgPan {
  0% {
    transform: scale(1) translate(0, 0);
  }

  50% {
    transform: scale(1.08) translate(-1.5%, -1.5%);
  }

  100% {
    transform: scale(1.04) translate(1.5%, 1%);
  }
}

.sector-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.65;
  filter: saturate(1.2) brightness(0.95);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, filter 0.4s ease;
  z-index: 1;
}

.neo-data-pod:hover .sector-card-bg {
  transform: scale(1.12) translate(0, 0);
  opacity: 0.85;
  filter: saturate(1.4) brightness(1.1);
}

/* Balanced Gradient Overlay for Clear Image Visibility & High Text Contrast */
.sector-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 26, 0.35) 0%, rgba(8, 14, 26, 0.65) 60%, rgba(8, 14, 26, 0.92) 100%);
  transition: background 0.4s ease;
  z-index: 2;
}

.neo-data-pod:hover .sector-card-overlay {
  background: linear-gradient(180deg, rgba(8, 14, 26, 0.20) 0%, rgba(8, 14, 26, 0.50) 60%, rgba(8, 14, 26, 0.85) 100%);
}

/* Subtle Shimmer Overlay on Hover */
.neo-data-pod::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 45%,
      rgba(255, 255, 255, 0.06) 50%,
      transparent 55%);
  transform: rotate(25deg) translateY(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 5;
}

.neo-data-pod:hover::after {
  transform: rotate(25deg) translateY(100%);
}

/* Interactive Chart Glass Cards */
.chart-glass-card {
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(217, 119, 6, 0.35);
  border-radius: 24px;
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 15px 35px -10px rgba(0, 0, 0, 0.5);
}

/* Magnetic Buttons */
.btn-magnetic {
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}

.btn-magnetic:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.35);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  box-shadow: 0 6px 22px rgba(13, 148, 136, 0.45);
}

.btn-accent {
  background-color: var(--color-accent);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.35);
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  box-shadow: 0 6px 22px rgba(217, 119, 6, 0.45);
}

/* Progress Bar Animations */
.statutory-bar-fill {
  transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Leaderboard Ranking Badges */
.rank-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #000;
  font-weight: 800;
}

.rank-silver {
  background: linear-gradient(135deg, #94A3B8 0%, #64748B 100%);
  color: #000;
  font-weight: 800;
}

.rank-bronze {
  background: linear-gradient(135deg, #B45309 0%, #78350F 100%);
  color: #FFF;
  font-weight: 800;
}

/* Skeleton Shimmer */
.skeleton-shimmer {
  background: linear-gradient(90deg, #1E293B 25%, #334155 50%, #1E293B 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite linear;
  border-radius: 6px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Status Badges */
.badge-ongoing {
  background-color: rgba(217, 119, 6, 0.15);
  color: #F59E0B;
  border: 1px solid rgba(217, 119, 6, 0.35);
}

.badge-completed {
  background-color: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

/* 3D Flipbook Modal */
.flipbook-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 14, 20, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.flipbook-overlay.active {
  opacity: 1;
  visibility: visible;
}

.flipbook-stage {
  width: 96vw;
  height: 88vh;
  max-width: 1600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* White mat-board background the book rests on */
  background: #f0f4f8;
  border-radius: 16px;
  padding: 24px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.3);
}

.flipbook-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#stPageFlipStage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff !important;
  border-radius: 6px;
  /* Hardcover binding: dark leather + gold foil trim */
  box-shadow: 
    0 0 0 8px #0d1b2a,
    0 0 0 11px #d97706,
    0 30px 80px rgba(0, 0, 0, 0.75),
    0 8px 20px rgba(0, 0, 0, 0.5);
}

/* StPageFlip Canvas & Wrapper Background Fix */
#stPageFlipStage canvas,
#stPageFlipStage > div {
  background-color: #ffffff !important;
}

.stpageflip-page {
  box-sizing: border-box !important;
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 4px;
}

/* Left Page (Spine Shadow on Right + Paper Stack Effect on Left) */
.stpageflip-page.--left,
.stpageflip-page[data-density="hard"] {
  border-right: 3px solid #cbd5e1 !important;
  box-shadow: 
    inset -18px 0 25px -10px rgba(0, 0, 0, 0.18),
    -4px 0 0 #f1f5f9,
    -8px 0 0 #e2e8f0,
    -12px 0 0 #cbd5e1,
    -16px 0 20px rgba(0, 0, 0, 0.25) !important;
}

/* Right Page (Spine Shadow on Left + Paper Stack Effect on Right) */
.stpageflip-page.--right {
  border-left: 3px solid #cbd5e1 !important;
  box-shadow: 
    inset 18px 0 25px -10px rgba(0, 0, 0, 0.18),
    4px 0 0 #f1f5f9,
    8px 0 0 #e2e8f0,
    12px 0 0 #cbd5e1,
    16px 0 20px rgba(0, 0, 0, 0.25) !important;
}

/* Page 1 Front Cover & Page 20 Back Cover Shiny Green Styling */
.flipbook-cover-green {
  background: linear-gradient(135deg, #02381e 0%, #059669 40%, #10b981 70%, #022c22 100%) !important;
  color: #ffffff !important;
}

/* Inside Pages Shiny White Background */
.flipbook-page-white {
  background-color: #FAFAFA !important;
  color: #0f172a !important;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #080E14;
}

::-webkit-scrollbar-thumb {
  background: #0D9488;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #D97706;
}

/* Swiper Slide 3D Coverflow Stage (Clean 3 Cards: 1 Left, 1 Center, 1 Right) */
.mySwiper {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding-top: 25px !important;
  padding-bottom: 55px !important;
  overflow: hidden !important;
  /* Clips any far-edge cards */
}

.mySwiper .swiper-slide {
  width: 380px !important;
  height: 280px !important;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(217, 119, 6, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* High-Tech 4-5s Cinematic Intro Preloader */
#dmftIntroModal {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

#introLettersContainer span {
  display: inline-block;
  will-change: transform, opacity;
  transform-style: preserve-3d;
}

#introLogoWrapper {
  will-change: transform, opacity;
}

#introCursor {
  animation: blinkCursor 0.8s infinite steps(2, start);
}

@keyframes blinkCursor {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .video-bg-layer {
    display: none !important;
  }
}

/* DMFT in Action — Infinite Auto-Scrolling Marquee with Hover-Pause */
@keyframes marqueeScrollHorizontal {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.action-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  user-select: none;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.action-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScrollHorizontal 35s linear infinite;
  will-change: transform;
}

/* STOP ON HOVER, RESUME ON REMOVING HOVER */
.action-marquee-container:hover .action-marquee-track,
.action-marquee-track:hover,
.action-card:hover {
  animation-play-state: paused !important;
}

body {
  background-image: radial-gradient(circle at center, #0D9488 0%, #080E14 100%);
}

*,
::before,
::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}
}

/* STICKY TABLE COLUMNS & SKELETON SHIMMER UI */
.table-sticky-col-left {
  position: sticky;
  left: 0;
  z-index: 20;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
}

.table-sticky-col-right {
  position: sticky;
  right: 0;
  z-index: 20;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.3);
}

.skeleton-shimmer {
  background: linear-gradient(90deg, rgba(30, 41, 59, 0.6) 0%, rgba(51, 65, 85, 0.8) 50%, rgba(30, 41, 59, 0.6) 100%);
  background-size: 200% 100%;
  animation: skeletonLoading 1.5s infinite ease-in-out;
}

@keyframes skeletonLoading {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}