/* Modern Clean CSS Custom Reset & Theme Variables */
:root {
    --bg-dark: #05080f;
    --bg-card: #0b0f19;
    --text-light: #f3f4f6;
    --text-muted: #232328;
    --primary-teal: #0d9488;
    --primary-blue: #1d4ed8;
    --primary-gradient: linear-gradient(135deg, #0aa0a5 0%, #1e40af 100%);
    --accent-glow: 0 0 20px rgba(10, 160, 165, 0.35);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Plus Jakarta Sans', 'Outfit', 'Overpass', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Global Zero Border Radius for All Images & Image Card Containers */
img,
.infra-card,
.infra-img-wrapper,
.featured-image-wrapper,
.portfolio-card,
.video-card,
.news-img-wrapper,
.collab-seq-img {
    border-radius: 0 !important;
}

/* Scroll-Snap Point Container & Alignment */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    scroll-snap-type: y proximity;
    overflow-x: hidden;
    width: 100%;
}

.hero-section,
.about-banner-header,
.disa-line-section,
.masta-alloy-section,
.snap-section,
section[id] {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

body {
    background-color:#000;
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--primary-gradient);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, background 0.3s ease, padding 0.3s ease;
    will-change: transform, opacity;
}

.header.header-hidden {
    transform: translateY(-140px);
    opacity: 0;
    pointer-events: none;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    text-decoration: none;
    color: white;
}

.header-logo {
    height: 52px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.logo-area:hover .header-logo {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown styling */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-icon {
    width: 14px;
    height: 14px;
    transition: var(--transition-smooth);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.dropdown-content a:hover {
    background: rgba(10, 160, 165, 0.15);
    color: #fff;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    transform: scale(1.1);
}

.enquiry-btn {
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.enquiry-btn:hover {
    background: white;
    color: var(--primary-teal);
    border-color: white;
    box-shadow: var(--accent-glow);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
}

.hero-background-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1800px;
    
}

.hero-image-wrapper {
    margin-bottom: 2.5rem;
    animation: float 6s ease-in-out infinite;
}

.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-title {
    
    font-size: 50px;
    font-weight: 300;
    margin-bottom: -15px;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    /*font-size: 16px;
     color: var(--text-muted); 
    margin-bottom: 2.5rem;
    /* max-width: 600px; */
   /* margin-left: auto;
    margin-right: auto;*/
        font-weight: 100;
    margin-bottom: 10px;
}

.cta-btn {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(10, 160, 165, 0.3);
    transition: var(--transition-smooth);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 160, 165, 0.5);
}

/* Modern Page Banner Headers (About, Contact, Infrastructure, Products, Bearing Housing) */
.about-banner-header,
.contact-banner-header,
.infrastructure-banner-header,
.products-banner-header,
.bearing-banner-header {
   /* position: relative;*/
    min-height: 360px;
    padding: 160px 20px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-banner-header::after,
.contact-banner-header::after,
.infrastructure-banner-header::after,
.products-banner-header::after,
.bearing-banner-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
    pointer-events: none;
}

.about-banner-breadcrumb,
.contact-banner-breadcrumb,
.infrastructure-banner-breadcrumb,
.products-banner-breadcrumb,
.bearing-banner-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 2;
}

.about-banner-breadcrumb .crumb-home,
.contact-banner-breadcrumb .crumb-home,
.infrastructure-banner-breadcrumb .crumb-home,
.products-banner-breadcrumb .crumb-home,
.bearing-banner-breadcrumb .crumb-home {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-banner-breadcrumb .crumb-home:hover,
.contact-banner-breadcrumb .crumb-home:hover,
.infrastructure-banner-breadcrumb .crumb-home:hover,
.products-banner-breadcrumb .crumb-home:hover,
.bearing-banner-breadcrumb .crumb-home:hover {
    color: #F08B19;
}

.about-banner-breadcrumb .crumb-sep,
.contact-banner-breadcrumb .crumb-sep,
.infrastructure-banner-breadcrumb .crumb-sep,
.products-banner-breadcrumb .crumb-sep,
.bearing-banner-breadcrumb .crumb-sep {
    color: #F08B19;
    font-weight: 800;
}

.about-banner-breadcrumb .crumb-active,
.contact-banner-breadcrumb .crumb-active,
.infrastructure-banner-breadcrumb .crumb-active,
.products-banner-breadcrumb .crumb-active,
.bearing-banner-breadcrumb .crumb-active {
    color: #F08B19;
    letter-spacing: 2px;
}

.about-banner-title,
.contact-banner-title,
.infrastructure-banner-title,
.products-banner-title,
.bearing-banner-title {
    font-family: 'Oswald', 'Outfit', 'Inter', sans-serif;
    font-size: clamp(65px, 10vw, 60px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.9), 0 0 50px rgba(24, 100, 220, 0.4);
}

/* ==========================================================================
   Hero Interactive 3D Frame Sequence Section
   ========================================================================== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #0aa0a5, #1e40af);
    width: 0%;
    z-index: 1000;
    transition: width 0.1s ease-out;
}

.hero-container {
    position: relative;
    height: 200vh;
    background: #000000;
}

.sticky-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#frameCanvas {
    width: 1735px;
   /* height: 618px;*/
    max-width: 95%;
    max-height: calc(100vh - 100px);
    object-fit: contain;
    z-index: 1;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.hero-overlay-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
    width: 90%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.frame-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background: rgba(11, 17, 32, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: monospace;
    font-size: 0.85rem;
    color: #0aa0a5;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.featured-section,
.collab-section,
.products-section,
.industries-section,
.infra-section,
.video-section,
.cert-section,
.contact-section,
.section,
.footer {
    position: relative;
    z-index: 10;
}

.collab-section {
    padding: 100px 0;
    position: relative;
}

.collab-title {
    font-family: 'Overpass', sans-serif;
    font-size: 50px;
    font-weight: 300;
    color: #F08B19;
    text-align: center;
   
    line-height: 1.25;
}

.section-tagline {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #F08B19; /* amber-700 / dark orange */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    text-align: center;
}

.section-title {
    font-family: 'Overpass', sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: #F08B19; /* Gold/Amber */
    
}

/* Premium Text Display Animation on Scroll (Huts.com style) */
.reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 45px, 0) scale(0.98);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.section-title.reveal-on-scroll.revealed {
    background: linear-gradient(135deg, #0aa0a5 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    width: 100%;
}

.collab-title.reveal-on-scroll.revealed {
    background: linear-gradient(135deg, #0aa0a5 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    width: 100%;
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.section-title-white {
    font-family: 'Overpass', sans-serif;
    font-size: 50px;
    font-weight: 300;
    color: #232328;
}

.text-center {
    text-align: center;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-desc-small {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    letter-spacing: 0.02em;
}

.collab-display {
    display: flex;
    justify-content: center;
    
}

.collab-image-container {
    max-width: 500px;
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.collab-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.collab-image-container:hover .collab-image {
    transform: scale(1.05);
}

/* Stats Grid Section Banner */
.stats-banner-wrapper {
    background: linear-gradient(135deg, #0aa0a5 0%, #1e40af 100%);
    border-radius: 16px;
    padding: 3rem 2.5rem 3rem 3.5rem;
    margin-top: 4rem;
    box-shadow: 0 15px 40px rgba(10, 160, 165, 0.35);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    text-align: left;
}

.stat-card {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    padding: 1.25rem 1.25rem 1.25rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: var(--transition-smooth);
    min-height: 105px;
    border: none;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-icon-badge {
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #0aa0a5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0aa0a5;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.stat-icon-badge svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.2;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 0.2rem;
    text-align: left;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4b5563;
    text-align: left;
    white-space: nowrap;
}

/* Infrastructure Section */
.infra-section {
    padding: 100px 0;
    
}

.infra-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0.75rem 0.25rem;
}

.infra-slider-track {
    display: flex;
    gap: 1.75rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.infra-slider-track .infra-card {
    flex: 0 0 calc((100% - 3.5rem) / 3);
    min-width: calc((100% - 3.5rem) / 3);
    position: relative;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.infra-nav-btn,
.infra-slider-dots {
    display: none !important;
}

/* Horizon Slat Carousel Styles */
.horizon-slat {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 280px;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  outline: none;
  user-select: none;
  touch-action: pan-y;
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(255, 255, 255, 0.07),
      transparent 30%
    ),
    radial-gradient(
      circle at 50% 110%,
      rgba(110, 126, 156, 0.12),
      transparent 44%
    ),
    #fff;
}

.horizon-slat::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    );
  background-size: 54px 54px;
  mask-image: radial-gradient(
    circle at center,
    black,
    transparent 72%
  );
}

.horizon-slat::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 57px;
  width: min(660px, 72vw);
  height: 70px;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  filter: blur(37px);
  transform: translateX(-50%);
}

.horizon-slat__stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
}

.horizon-slat__card {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 0;
  border: 0;
  overflow: hidden;
  appearance: none;
  background: #15171a;
  transform-origin: center;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform var(--slat-duration, 560ms)
      cubic-bezier(0.22, 1, 0.36, 1),
    width var(--slat-duration, 560ms)
      cubic-bezier(0.22, 1, 0.36, 1),
    height var(--slat-duration, 560ms)
      cubic-bezier(0.22, 1, 0.36, 1),
    border-radius var(--slat-duration, 560ms)
      cubic-bezier(0.22, 1, 0.36, 1),
    opacity var(--slat-duration, 560ms) ease,
    filter var(--slat-duration, 560ms) ease,
    box-shadow var(--slat-duration, 560ms) ease;
  will-change:
    transform,
    width,
    height,
    opacity,
    filter;
}

.horizon-slat__card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 5px;
}

.horizon-slat__card--active {
  box-shadow:
    0 35px 95px rgba(0, 0, 0, 0.58),
    0 12px 30px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.horizon-slat__card--side {
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.46),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.horizon-slat__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  transform: scale(1.035);
  transition:
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1),
    filter var(--slat-duration, 560ms) ease;
}

.horizon-slat__card--active
  .horizon-slat__image {
  transform: scale(1);
}

.horizon-slat__surface {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      112deg,
      rgba(255, 255, 255, 0.18),
      transparent 22%,
      transparent 68%,
      rgba(255, 255, 255, 0.035)
    );
  mix-blend-mode: screen;
  opacity: 0.36;
}

.horizon-slat__side-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.18);
  transition:
    opacity var(--slat-duration, 560ms) ease;
}

.horizon-slat__card--active
  .horizon-slat__side-shade {
  opacity: 0;
}

.horizon-slat__content-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 34%,
      rgba(0, 0, 0, 0.82) 100%
    );
  opacity: 0;
  transition:
    opacity 400ms ease;
}

.horizon-slat__card--active
  .horizon-slat__content-gradient {
  opacity: 1;
}

.horizon-slat__content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 27px;
  z-index: 3;
  color: #ffffff;
  text-align: left;
  pointer-events: none;
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 380ms ease 120ms,
    transform 520ms
      cubic-bezier(0.22, 1, 0.36, 1)
      80ms;
}

.horizon-slat__card--active
  .horizon-slat__content {
  opacity: 1;
  transform: translateY(0);
}

.horizon-slat__label {
  display: block;
  margin-bottom: 10px;
  font-family:
    Inter, Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.68;
}

.horizon-slat__title {
  display: block;
  white-space: pre-line;
  font-family:
    Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 650;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-shadow:
    0 5px 28px rgba(0, 0, 0, 0.52);
}

.horizon-slat__arrow {
  position: absolute;
  top: 50%;
  z-index: 1000;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #111111;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 13px 35px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(15px);
  transform: translateY(-50%);
  cursor: pointer;
  transition:
    transform 220ms ease,
    background-color 220ms ease;
}

.horizon-slat__arrow:hover {
  transform: translateY(-50%) scale(1.06);
  background: #ffffff;
}

.horizon-slat__arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.horizon-slat__arrow--left {
  left: clamp(14px, 3.5vw, 54px);
}

.horizon-slat__arrow--right {
  right: clamp(14px, 3.5vw, 54px);
}

.horizon-slat__arrow svg {
  width: 21px;
  height: 21px;
  pointer-events: none;
}

.horizon-slat__counter {
  position: absolute;
  left: 50%;
  bottom: 27px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.58);
  font-family:
    Inter, Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  transform: translateX(-50%);
  pointer-events: none;
}

.horizon-slat__counter-line {
  width: 34px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.horizon-slat__counter-progress {
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  transform-origin: left;
  transition:
    transform var(--slat-duration, 560ms)
    cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 680px) {
  .horizon-slat {
    min-height: 480px;
  }

  .horizon-slat__arrow {
    width: 45px;
    height: 45px;
  }

  .horizon-slat__content {
    left: 21px;
    right: 21px;
    bottom: 21px;
  }

  .horizon-slat__counter {
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .horizon-slat__card,
  .horizon-slat__image,
  .horizon-slat__content,
  .horizon-slat__counter-progress {
    transition-duration: 1ms !important;
  }
}

.infra-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

.infra-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.infra-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    padding: 1.25rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 100%);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    text-align: center;
    z-index: 2;
    transition: var(--transition-smooth);
}

.infra-info-overlay h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    letter-spacing: 0.05em;
}

.infra-card:hover .infra-img {
    transform: scale(1.06);
}

.infra-card:hover .infra-info-overlay {
    background: linear-gradient(to top, rgba(10, 160, 165, 0.8) 0%, rgba(10, 160, 165, 0.1) 100%);
}

/* Featured Product Section */
.featured-section {
    background-color: #b5b3b4;
}

.featured-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.featured-image-wrapper:hover .featured-image {
    transform: scale(1.02);
}

/* Product Portfolio Full Screen Auto Slide Section */
.portfolio-section {
    background-color: #080911 !important;
    background: radial-gradient(ellipse at 20% 0%, rgba(10, 160, 165, 0.25) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 0%, rgba(30, 64, 175, 0.3) 0%, transparent 55%),
                #080911 !important;
    padding: 90px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.portfolio-container-full {
    width: 100%;
    max-width: 100%;
}

.portfolio-header {
    margin-bottom: 3.5rem;
    padding: 0 2rem;
}

.section-tagline,
.portfolio-tagline {
    display: block;
    color: #0aa0a5 !important;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    text-align: center;
}

.portfolio-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    text-align: center;
}

.portfolio-carousel-wrapper {
    position: relative;
    width: 100vw;
    overflow: hidden;
}

.portfolio-carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: autoSlidePortfolio 26s linear infinite;
    will-change: transform;
}

.portfolio-carousel-wrapper:hover .portfolio-carousel-track {
    animation-play-state: paused;
}

.portfolio-carousel-card {
    flex: 0 0 380px;
    width: 380px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3.2 / 4;
    border-radius: 28px; /* Rounded image corners */
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
    background: #0f131f;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-carousel-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(10, 160, 165, 0.35);
    border-color: rgba(10, 160, 165, 0.5);
}

.portfolio-carousel-card .portfolio-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 28px; /* Rounded corners on image */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-carousel-card:hover .portfolio-card-img {
    transform: scale(1.08);
}

@keyframes autoSlidePortfolio {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Floating Top Bar (Category Pill + Option Circle) */
.portfolio-card-top-bar {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.portfolio-card-category {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-card-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.portfolio-card-more:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.08);
}

/* Bottom Card Overlay with Play/Action Circle Button */
.portfolio-carousel-card .portfolio-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 2rem 1.5rem 1.75rem 1.5rem;
   
    z-index: 2;
    transition: var(--transition-smooth);
    gap: 1rem;
}

.portfolio-carousel-card:hover .portfolio-card-overlay {
    background: linear-gradient(to top, rgba(10, 160, 165, 0.92) 0%, rgba(10, 160, 165, 0.5) 55%, rgba(10, 160, 165, 0.15) 100%);
}

.portfolio-card-text {
    flex: 1;
    text-align: left;
}

.portfolio-card-text h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.4rem;
    line-height: 1.25;
}

.portfolio-card-text p {
    font-size: 0.88rem;
    color: rgba(0, 0, 0, 0.88);
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

.portfolio-card-action-btn {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.portfolio-carousel-card:hover .portfolio-card-action-btn {
    transform: scale(1.12);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    background: #ffffff;
    color: #0aa0a5;
}

/* Accordion Slat Product Showcase Section (New Section) */
.accordion-showcase-section {
    padding: 100px 0;
    background: #090a10;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.accordion-slat-container {
    display: flex;
    gap: 1.25rem;
    width: 100%;
    height: 540px;
    border-radius: 24px;
    overflow: hidden;
}

.accordion-slat-card {
    flex: 1;
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-slat-card.active {
    border-color: rgba(240, 139, 25, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.accordion-slat-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.accordion-slat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.25rem 1.5rem 1.75rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    z-index: 3;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.accordion-badge-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion-num-badge {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f08b19 0%, #ea580c 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(240, 139, 25, 0.4);
}

.accordion-titles h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.05em;
    line-height: 1.2;
    white-space: nowrap;
}

.accordion-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.2rem;
    white-space: nowrap;
}

.accordion-desc-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.45;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1024px) {
    .accordion-slat-container {
        height: 450px;
    }
    .accordion-titles h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .accordion-slat-container {
        flex-direction: column;
        height: auto;
    }
    .accordion-slat-card {
        height: 200px;
    }
}

@media (max-width: 1400px) {
    .portfolio-section {
        padding: 80px 2rem;
    }
}

@media (max-width: 1024px) {
    .portfolio-carousel-track {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .portfolio-section {
        padding: 60px 1.25rem;
    }
    .portfolio-carousel-track {
        grid-template-columns: 1fr;
    }
}



/* Videos / The Way We Work Section - 3D Stacked Cards */
.performance-section {
    padding: 100px 0;
    background-color: #b5b3b4;
    overflow: hidden;
}

.stacked-cards-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    width: 100%;
    
    margin: 0 auto;
    height: 520px;
    position: relative;
    padding-top: 30px;
}

.stacked-card {
    position: relative;
    width: 380px;
    height: 480px;
    border-radius: 40px 40px 24px 24px; /* Ultra smooth rounded top matching reference image */
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: #111827;
    margin: 0 -35px; /* Overlap effect */
}

.stacked-card-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.stacked-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 40px 40px 24px 24px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card Positioning & Rotations matching reference screenshot */
.stacked-card.card-left {
    transform: rotate(-6deg) translateY(15px) scale(0.94);
    z-index: 1;
    opacity: 0.92;
}

.stacked-card.card-center {
    transform: rotate(0deg) translateY(-15px) scale(1.05);
    z-index: 3;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.stacked-card.card-right {
    transform: rotate(6deg) translateY(15px) scale(0.94);
    z-index: 1;
    opacity: 0.92;
}

/* Hover Interaction: Bringing any hovered card to the front seamlessly */
.stacked-cards-container:hover .stacked-card {
    opacity: 0.75;
    transform: rotate(0deg) scale(0.92);
    z-index: 1;
}

.stacked-cards-container .stacked-card:hover {
    opacity: 1 !important;
    transform: rotate(0deg) translateY(-25px) scale(1.08) !important;
    z-index: 10 !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(10, 160, 165, 0.4) !important;
}

.stacked-card:hover .stacked-card-img {
    transform: scale(1.08);
}

/* Card Overlay Content */
.stacked-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 2.25rem 1.75rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    color: #ffffff;
    z-index: 2;
}

.stacked-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.stacked-card-overlay h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.stacked-card-overlay p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.stacked-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0aa0a5;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(10, 160, 165, 0.5);
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-center-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 5;
    pointer-events: none;
}

.video-center-play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 2px;
}

.accordion-slat-card:hover .video-center-play-btn,
.stacked-card:hover .video-center-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: #ffffff;
}

.stacked-card:hover .stacked-play-btn {
    transform: scale(1.15);
    background: #ffffff;
    color: #0aa0a5;
}

@media (max-width: 992px) {
    .stacked-cards-container {
        flex-direction: column;
        height: auto;
        align-items: center;
        gap: 1.5rem;
    }
    .stacked-card {
        margin: 0;
        transform: none !important;
        width: 100%;
        max-width: 450px;
        height: 380px;
        opacity: 1 !important;
    }
}
    justify-content: center;
    box-shadow: 0 0 15px rgba(10, 160, 165, 0.5);
    transition: var(--transition-smooth);
}

.play-btn svg {
    fill: currentColor;
    width: 20px;
    height: 20px;
    margin-left: 2px;
}

.video-card:hover .video-thumb {
    transform: scale(1.05);
}

.video-card:hover .video-overlay-play {
    background: rgba(0,0,0,0.3);
}

.video-card:hover .play-btn {
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(10, 160, 165, 0.8);
}

/* Trusted By Industry (Logo ticker) */
/* Trusted By Industry Infinite Marquee Ticker */
.partners-section {
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

.partners-logos-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Side Gradient Fade Masks */
.partners-logos-container::before,
.partners-logos-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 10;
    pointer-events: none;
}

.partners-logos-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-logos-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
}

.marquee-track {
    display: flex;
    align-items: center;
    
    flex-shrink: 0;
    min-width: 100%;
    will-change: transform;
}

.trusted-logos-img {
    height: 65px;
    width: auto;
    max-width: none;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.85);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.trusted-logos-img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Row 1: Right to Left Infinite Scroll */
.marquee-left .marquee-track {
    animation: marqueeScrollLeft 47s linear infinite;
}

/* Row 2: Left to Right Infinite Scroll */
.marquee-right .marquee-track {
    animation: marqueeScrollRight 47s linear infinite;
}

/* Interactive Pause on Hover */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScrollLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeScrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* Insights & News */
.news-section {
    padding: 100px 0;
    background-color: #b5b3b4;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.news-card {
    background: transparent;
    border: none;
    transition: var(--transition-smooth);
    text-align: center;
}

.news-img-wrapper {
    aspect-ratio: 361/335;
    
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.news-content {
    padding: 0;
}

.news-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.news-content p {
    font-size: 0.85rem;
    color: #374151;
    line-height: 1.6;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card:hover .news-img {
    transform: scale(1.05);
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #0aa0a5 0%, #1e40af 100%);
    color: white;
    padding: 80px 0 0 0;
    position: relative;
}
.footer-top-brand {
    text-align: center;
    padding-bottom: 3rem;
    
    margin-bottom: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-top-brand img {
    max-width: 100%;
    height: auto;
   
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15));
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.footer-logo-img {
    height: 62px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 5rem;
    text-align: right;
}

.footer-col {
    text-align: right;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 31px;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition-smooth);
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(-4px);
}

.footer-col .bullet {
    margin-right: 0.25rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-links-simple {
    display: flex;
    justify-content: flex-end;
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.social-links-simple a {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-links-simple svg {
    width: 20px;
    height: 20px;
}

.social-links-simple a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.25rem 0;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.copyright-text, .credits-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.back-to-top {
    position: absolute;
    right: 0;
    top: -55px; /* Floats above the copyright bar */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: none;
    color: rgb(30, 64, 175);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
    z-index: 5;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Modals & Overlays */
.video-modal, .search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.video-modal.active, .search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay, .search-overlay-close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 800px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 2;
    transition: var(--transition-smooth);
}

.video-modal.active .video-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.video-player-container {
    aspect-ratio: 16/9;
}

.mock-player {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #020408;
    color: var(--text-light);
    gap: 1.5rem;
}

.mock-play-icon {
    width: 64px;
    height: 64px;
    color: #0aa0a5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Search Box */
.search-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.search-input {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
    color: white;
    font-size: 1.1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.search-input:focus {
    border-color: #0aa0a5;
    background: rgba(255,255,255,0.12);
    box-shadow: var(--accent-glow);
}

.search-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(10, 160, 165, 0.3);
    transition: var(--transition-smooth);
}

.search-btn:hover {
    transform: scale(1.05);
}

/* Responsive Styling Grid Breakpoints */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .infra-grid, .performance-grid, .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transition: var(--transition-smooth);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-content {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        background: transparent;
        border: none;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .hero-title {
        font-size: 32px !important;
        line-height: 1.2;
    }

    .section-title,
    .section-title-white,
    .collab-title {
        font-size: 30px !important;
        line-height: 1.25;
        padding: 0 1rem;
    }

    .collab-sequence-wrapper {
        height: 320px;
    }

    .collab-seq-img {
        max-height: 270px;
    }

    .about-banner-header {
        height: 420px !important;
    }

    .section-title {
        font-size: 32px !important;
    }

    .timeline-winding-wrapper {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    .timeline-winding-wrapper svg {
        min-width: 900px !important;
        height: auto;
    }

.industries-slider-wrapper {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.industries-slider-wrapper:active {
    cursor: grabbing;
}

.industries-slider-wrapper img {
    pointer-events: none;
}

    .industries-slider-track .industry-card {
        flex: 0 0 100% !important;
    }

    .stats-grid,
    .about-story-grid,
    .timeline-grid,
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .timeline-labels-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    .footer-container {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-col,
    .footer-col-title,
    .footer-col ul {
        text-align: center !important;
    }

    .footer-socials {
        justify-content: center !important;
    }
}

/* Off-Canvas Desktop & Mobile Drawer */
.offcanvas-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.4s ease, opacity 0.4s ease;
}

.offcanvas-drawer.active {
    visibility: visible;
    opacity: 1;
}

.offcanvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 4, 8, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.offcanvas-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 450px;
    max-width: 90vw;
    height: 100%;
    background: linear-gradient(180deg, #050b14 0%, #0a1726 100%);
    border-left: 1px solid rgba(10, 160, 165, 0.2);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    overflow-y: auto;
}

.offcanvas-drawer.active .offcanvas-content {
    transform: translateX(0);
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas-logo-img {
    height: 48px;
    width: auto;
}

.offcanvas-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.offcanvas-close:hover {
    background: #0aa0a5;
    border-color: #0aa0a5;
    color: #fff;
    transform: rotate(90deg);
}

.offcanvas-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.offcanvas-nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.offcanvas-link {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
    letter-spacing: 0.05em;
}

.offcanvas-link:hover {
    color: #0aa0a5;
    transform: translateX(8px);
}

.offcanvas-link .link-num {
    font-size: 0.85rem;
    color: #F08B19; /* Gold accent */
    font-weight: 700;
}

.offcanvas-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.offcanvas-dropdown-toggle-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.offcanvas-dropdown-toggle-btn:hover,
.offcanvas-dropdown.open .offcanvas-dropdown-toggle-btn,
.offcanvas-dropdown.active .offcanvas-dropdown-toggle-btn {
    color: #0aa0a5;
    background: rgba(255, 255, 255, 0.05);
}

.offcanvas-chevron {
    transition: transform 0.3s ease;
}

.offcanvas-dropdown.open .offcanvas-chevron,
.offcanvas-dropdown.active .offcanvas-chevron {
    transform: rotate(180deg);
}

.offcanvas-sub-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
    padding-left: 2.5rem;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.offcanvas-dropdown.open .offcanvas-sub-menu,
.offcanvas-dropdown.active .offcanvas-sub-menu {
    max-height: 300px;
    opacity: 1;
    margin-top: 0.75rem;
}

.offcanvas-sub-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.offcanvas-sub-menu a:hover {
    color: #fff;
    transform: translateX(4px);
}

.offcanvas-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas-contact-info h4 {
    color: #F08B19;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.offcanvas-contact-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

.offcanvas-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.offcanvas-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.offcanvas-socials a:hover {
    background: #0aa0a5;
    transform: translateY(-3px);
}

/* Lenis Smooth Scroll Core Styles */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* Smooth Scroll Reveal Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(35px) scale(0.97);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

body.scrolling-up .reveal-on-scroll:not(.revealed) {
    transform: translateY(-35px) scale(0.97);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* Scroll-Driven Sequential Image Animation */
.collab-sequence-wrapper {
    position: relative;
    width: 100%;
    max-width: 850px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collab-seq-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.collab-seq-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.collab-seq-img {
    max-width: 100%;
    max-height: 333px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.7));
    transition: transform 0.6s ease;
}

.collab-seq-badge {
    position: absolute;
    bottom: 10px;
    background: rgba(10, 160, 165, 0.2);
    border: 1px solid rgba(10, 160, 165, 0.5);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.4rem 1.4rem;
    border-radius: 20px;
    letter-spacing: 0.1em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.collab-seq-dots {
    display: none !important;
}
/* ==================================================
   INFRASTRUCTURE STICKY SCROLL SECTION
================================================== */

.disa-scroll-section {
    position: relative;
    width: 100%;
    background-color: #000000;
}

/* Heading stays fixed while all items scroll */

.disa-scroll-section .disa-sticky-title-wrapper {
    position: relative;
    width: 100%;
    z-index: 50;
}

/* Image + content will behave as one complete item */

.disa-scroll-section .disa-scroll-item {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 140px);
    padding-top: 70px;
    padding-bottom: 100px;
    margin-left: auto !important;
    margin-right: auto !important;
    scroll-snap-align: none;
}

/* Image and content remain together */

.disa-scroll-section .disa-scroll-item .disa-image-wrapper,
.disa-scroll-section .disa-scroll-item .disa-content-box {
    position: relative;
}

/* Mobile adjustment */

@media (max-width: 768px) {
    .disa-scroll-section .disa-sticky-title-wrapper {
        
        padding: 1rem 0 !important;
    }

    .disa-scroll-section .disa-scroll-item {
        min-height: auto;
        padding: 50px 15px 80px;
    }
}

/* Disable old separate reveal inside infrastructure scroll items */

.disa-scroll-item .reveal-on-scroll,
.disa-scroll-item .reveal-on-scroll.revealed {
    opacity: 1;
    transform: none;
    transition: none;
}

.disa-sticky-title-wrapper {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
    pointer-events: none;
}

.disa-sticky-title-wrapper {
    padding: 0 !important;
}
.disa-sticky-title-wrapper .section-title {
    line-height: 1.15;
}

/* Show upper cover only while GSAP heading is fixed */

.disa-sticky-title-wrapper:not([style*="position: fixed"])::before {
    display: none;
}

.disa-sticky-title-wrapper[style*="position: fixed"]::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 75px;
    background-color: #000000;
    pointer-events: none;
}

.disa-sticky-title-wrapper[style*="position: fixed"]::before {
    height: 90px !important;
}

.disa-sticky-title-wrapper.disa-pin-active::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 90px;
    background-color: #000000;
    pointer-events: none;
}

/* Last image reverse-scroll fix */
.disa-last-boundary-hidden {
    visibility: hidden !important;
}

/* What We Stand For (Mission, Vision & Goals Split Cards) */
.what-we-stand-for-section {
    padding: 90px 0 0 0;
    background-color: #0b0f17;
    color: #ffffff;
    overflow: hidden;
}

.stand-for-container {
    width: 100%;
}

.stand-for-wrapper {
    display: flex;
    min-height: 560px;
    width: 100%;
    overflow: hidden;
}

.stand-for-card {
    flex: 1;
    position: relative;
    height: 560px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stand-for-card:last-child {
    border-right: none;
}

.stand-for-card.active,
.stand-for-card:hover {
    flex: 1.8;
}

.stand-for-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.stand-for-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.stand-for-card:hover .stand-for-bg-img,
.stand-for-card.active .stand-for-bg-img {
    transform: scale(1.08);
}

.stand-for-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 15, 23, 0.75) 0%, rgba(11, 15, 23, 0.88) 100%);
    transition: background 0.5s ease;
}

.stand-for-card:hover .stand-for-overlay,
.stand-for-card.active .stand-for-overlay {
    background: linear-gradient(180deg, rgba(11, 15, 23, 0.6) 0%, rgba(11, 15, 23, 0.82) 100%);
}

.stand-for-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.5s ease, transform 0.5s ease;
    width: 100%;
    text-align: center;
}

.stand-for-watermark h4 {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    font-size: clamp(4rem, 10vw, 11rem);
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin: 0;
    line-height: 1;
    letter-spacing: 4px;
    transition: all 0.5s ease;
}

.stand-for-card.active .stand-for-watermark h4 {
    color: rgba(255, 255, 255, 0.08);
}

.stand-for-content {
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    transform: translateY(-40%);
    max-width: 540px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.stand-for-card.active .stand-for-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
}

.stand-for-title {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff !important;
    margin-bottom: 1.25rem;
    letter-spacing: 1px;
}

.stand-for-divider {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, #0aa0a5 0%, rgba(10, 160, 165, 0) 100%);
    margin-bottom: 1.5rem;
}

.stand-for-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0;
}

/* About Company Grid Section */
.about-company-grid-section {
    padding: 110px 0;
    background-color: #080911;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-company-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4.5rem;
    align-items: center;
}

.about-img-composite-stack {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.composite-img-card {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.composite-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-card-back {
    left: 0;
    top: 5%;
    width: 66%;
    height: 380px;
    transform: rotate(-9deg);
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    filter: brightness(0.9);
}

.img-card-front {
    right: 5%;
    bottom: 5%;
    width: 72%;
    height: 420px;
    transform: rotate(4deg);
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.composite-exp-badge {
    position: absolute;
    bottom: 25px;
    left: -25px;
    background: #ffffff;
    color: #0f172a;
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.exp-badge-icon {
    width: 52px;
    height: 52px;
    background: rgba(10, 160, 165, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.exp-num {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1;
    color: #0f172a;
    display: block;
}

.exp-num sup {
    font-size: 1.3rem;
    color: #0aa0a5;
}

.exp-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin-top: 4px;
    display: block;
    white-space: nowrap;
}

.about-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.45rem 1.3rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0aa0a5;
    box-shadow: 0 0 12px #0aa0a5;
}

.about-main-heading {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #94a3b8 !important;
    margin-bottom: 2.25rem;
    font-weight: 400;
}

.about-checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1rem;
    font-weight: 600;
    color: #f8fafc;
}

.check-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(10, 160, 165, 0.15);
    border: 1px solid rgba(10, 160, 165, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-action-row {
    display: flex;
    align-items: center;
}

.about-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.95rem 2.4rem;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(10, 160, 165, 0.35);
    transition: all 0.3s ease;
}

.about-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(10, 160, 165, 0.5);
    color: #ffffff !important;
}

/* Bearing Catalog Interactive Showcase Switcher */
.bearing-catalog-section {
    padding: 0 0 100px 0;
    background-color: #030712;
    color: #ffffff;
    width: 100%;
    overflow: hidden;
}

.bearing-showcase-wrapper {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    border-radius: 0;
    background: radial-gradient(circle at 60% 50%, #0284c7 0%, #0369a1 40%, #0b1329 100%);
    padding: 6rem 8vw;
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 0.5fr;
    gap: 3rem;
    align-items: center;
    overflow: hidden;
    box-shadow: none;
    border: none;
}

.bearing-ripple-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    pointer-events: none;
    z-index: 1;
}

.ripple-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    margin: auto;
    animation: ripplePulse 8s infinite ease-in-out;
}

.ring-1 { width: 260px; height: 260px; animation-delay: 0s; }
.ring-2 { width: 440px; height: 440px; animation-delay: 2s; }
.ring-3 { width: 620px; height: 620px; animation-delay: 4s; }
.ring-4 { width: 780px; height: 780px; animation-delay: 6s; }

@keyframes ripplePulse {
    0%, 100% {
        transform: scale(0.92);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.06);
        opacity: 0.5;
    }
}

.showcase-left-content {
    position: relative;
    z-index: 5;
    color: #ffffff;
}

.showcase-tag {
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #38bdf8;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.showcase-title {
    font-family: 'Overpass', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.showcase-spec-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 0.35rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #f0f9ff;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
}

.showcase-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88) !important;
    margin-bottom: 2.25rem;
    font-weight: 400;
    max-width: 480px;
}

.showcase-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    color: #0284c7 !important;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.showcase-primary-btn:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
    color: #0369a1 !important;
}

.showcase-center-stage {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.showcase-featured-img {
    max-width: 360px;
    width: 100%;
    max-height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.65));
    animation: floatProduct 5s ease-in-out infinite;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
}

@keyframes floatProduct {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(1.5deg);
    }
}

.showcase-right-list {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 480px;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding-right: 8px;
    align-items: center;
}

.showcase-right-list::-webkit-scrollbar {
    width: 4px;
}

.showcase-right-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.showcase-right-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
}

.showcase-right-list::-webkit-scrollbar-thumb:hover {
    background: #0aa0a5;
}

.thumb-card {
    width: 76px;
    height: 76px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(8px);
}

.thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.thumb-card.active,
.thumb-card:hover {
    background: #ffffff;
    border-color: #38bdf8;
    transform: scale(1.12);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

/* Industries We Serve 3D Height Stepping Slider */
.about-industries-section {
    padding: 100px 0;
    background-color: #030712;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.industries-3d-stage {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.industries-3d-track {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ind-card {
    position: absolute;
    border-radius: 26px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), 
                opacity 0.6s ease, 
                width 0.6s ease, 
                height 0.6s ease,
                box-shadow 0.6s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    background-color: #0b1329;
    user-select: none;
}

.ind-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ind-card:hover img {
    transform: scale(1.08);
}

.ind-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.1) 0%, rgba(3, 7, 18, 0.88) 100%);
}

.ind-card-content {
    position: absolute;
    bottom: 2rem;
    left: 1.75rem;
    right: 1.75rem;
    z-index: 5;
    color: #ffffff;
    text-align: left;
}

.ind-tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #0aa0a5;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    display: block;
}

.ind-title {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.ind-desc {
    font-size: 0.88rem;
    color: #cbd5e1 !important;
    margin: 0;
    opacity: 0.9;
}

.ind-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.ind-prev-btn {
    left: 3vw;
}

.ind-next-btn {
    right: 3vw;
}

.ind-nav-btn:hover {
    background: #0aa0a5;
    border-color: #0aa0a5;
    color: #ffffff;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 10px 25px rgba(10, 160, 165, 0.45);
}

/* ==================================================
   FULL-SCREEN INFRASTRUCTURE SLIDER SHOWCASE (100vh)
================================================== */
.infra-fullscreen-page {
    background-color: #000000;
    overflow-x: hidden;
}

.infra-slider-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #000000;
}

.infra-slides-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.infra-slide-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.05);
    z-index: 1;
}

.infra-slide-item.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    z-index: 10;
}

.infra-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /*filter: brightness(0.65) contrast(1.15);*/
}

/* Cinematic Gradient Overlays for High Legibility */
.infra-vignette-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 45%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.82) 75%),
                linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.75) 100%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.85) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Content Container Inside Slide */
.infra-slide-content {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 130px 4rem 100px 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
}

.infra-slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #0aa0a5;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.infra-slide-title {
    font-family: 'Outfit', 'Overpass', sans-serif;
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: #ffffff;
    margin: 0 0 1.75rem 0;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    max-width: 900px;
}

.infra-slide-title span {
    display: block;
    color: rgba(255, 255, 255, 0.92);
}

.infra-slide-desc {
    max-width: 640px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(241, 245, 249, 0.85);
    margin-bottom: 2.25rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.8);
}

/* Stats Pill Cards in Slide */
.infra-stats-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.infra-stat-pill {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0.85rem 1.6rem;
    border-radius: 12px;
}

.infra-stat-value {
    font-family: 'Outfit', 'Overpass', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #38bdf8;
    line-height: 1.1;
}

.infra-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Bottom Slide Index Counter (Bottom Left) */
.infra-bottom-counter {
    position: absolute;
    bottom: 3.5rem;
    left: 4rem;
    z-index: 20;
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: 'Outfit', monospace;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.9);
}

.infra-counter-curr {
    color: #0aa0a5;
    font-size: 2.4rem;
    line-height: 1;
}

.infra-counter-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
}

.infra-counter-total {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
}

/* Right Vertical Bullet Navigation */
.infra-vertical-nav {
    position: absolute;
    right: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

.infra-nav-dot {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.35s ease;
}

.infra-nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.25);
}

.infra-nav-dot.active {
    background: #0aa0a5;
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(10, 160, 165, 0.85);
}

.infra-nav-dot::after {
    content: attr(data-label);
    position: absolute;
    right: calc(100% + 16px);
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    background: rgba(7, 10, 18, 0.85);
    backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.infra-nav-dot:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(-4px);
}

/* Bottom Right Category Tag & Navigation Arrows */
.infra-bottom-right-bar {
    position: absolute;
    bottom: 3.5rem;
    right: 4rem;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.infra-category-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.infra-category-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #0aa0a5, #1e40af);
}

.infra-arrow-btns {
    display: flex;
    gap: 8px;
}

.infra-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.infra-arrow-btn:hover {
    background: #0aa0a5;
    border-color: #0aa0a5;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(10, 160, 165, 0.4);
}

@media (max-width: 768px) {
    .infra-slide-content {
        padding: 100px 1.5rem 120px 1.5rem;
    }
    .infra-slide-title {
        font-size: 2.6rem;
    }
    .infra-bottom-counter {
        bottom: 2rem;
        left: 1.5rem;
    }
    .infra-bottom-right-bar {
        bottom: 2rem;
        right: 1.5rem;
    }
    .infra-category-label {
        display: none;
    }
    .infra-vertical-nav {
        right: 1rem;
    }
}

/* ========================================================
   ABOUT COMPANY GRID SECTION (Perspective Collage + Content)
   ======================================================== */
.about-company-grid-section {
    padding: 110px 0 120px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.about-company-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Left: Single Image Display */
.about-collage-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-single-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
    height: 440px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

.about-single-image-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 75px rgba(0, 0, 0, 0.18);
}

.about-single-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-single-image-wrapper:hover .about-single-img {
    transform: scale(1.05);
}

/* Floating Experience Card */
.about-experience-card {
    position: absolute;
    bottom: -20px;
    left: 20px;
    z-index: 10;
    background: #ffffff;
    border-radius: 18px;
    padding: 0px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 140px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.2);
}

.about-exp-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(10, 160, 165, 0.15) 0%, rgba(30, 64, 175, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0aa0a5;
    margin-bottom: 8px;
}

.about-exp-number {
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    display: inline-flex;
    align-items: flex-start;
}

.about-exp-number .plus {
    color: #0aa0a5;
    font-size: 26px;
    margin-left: 2px;
}

.about-exp-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-top: 4px;
    letter-spacing: 0.2px;
}

/* Right: Content Area */
.about-company-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-company-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(10, 160, 165, 0.12) 0%, rgba(30, 64, 175, 0.12) 100%);
    border: 1px solid rgba(10, 160, 165, 0.35);
    border-radius: 30px;
    color: #0aa0a5;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.about-company-pill .pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    box-shadow: 0 0 10px rgba(10, 160, 165, 0.8);
}

.about-company-heading {
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.22;
    margin-bottom: 1.25rem;
}

.about-company-heading .text-green-highlight,
.about-company-heading .text-teal-highlight {
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-company-text {
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 540px;
}

.about-company-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem 2.5rem;
    margin-bottom: 2.25rem;
    width: 100%;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    font-size: 14px;
    font-weight: 500;
}

.about-feature-icon {
    color: #0aa0a5;
    width: 18px;
    height: 18px;
    stroke-width: 3;
    flex-shrink: 0;
}

.about-company-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 34px;
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(10, 160, 165, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-company-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(10, 160, 165, 0.5);
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 992px) {
    .about-company-grid {
        grid-template-columns: 1fr;
        gap: 4.5rem;
    }
    .about-collage-container {
        max-width: 520px;
        margin: 0 auto;
    }
    .about-company-content {
        align-items: center;
        text-align: center;
    }
    .about-company-text {
        max-width: 620px;
    }
    .about-company-features {
        justify-content: center;
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .about-company-grid-section {
        padding: 70px 0 80px 0;
    }
    .about-company-features {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }
    .about-card-layer-back {
        height: 220px;
    }
    .about-card-layer-front {
        height: 250px;
    }
    .about-experience-card {
        padding: 16px 20px;
        left: 10%;
        min-width: 150px;
    }
    .about-exp-number {
        font-size: 30px;
    }
}

/* ========================================================
   ABOUT PAGE WHITE THEME STYLES
   ======================================================== */
body.about-page-white {
    background-color: #ffffff !important;
    color: #1e293b;
}

body.about-page-white .about-company-grid-section {
    background-color: #ffffff !important;
}

body.about-page-white .about-company-heading {
    color: #0f172a;
}

body.about-page-white .about-company-text {
    color: #475569;
}

body.about-page-white .about-feature-item {
    color: #1e293b;
}

body.about-page-white .about-experience-card {
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

body.about-page-white .about-card-layer-back {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

body.about-page-white .about-card-layer-front {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

body.about-page-white .industries-section {
    background: #f8fafc !important;
    border-top: 1px solid #e2e8f0 !important;
}

body.about-page-white .stand-for-section {
    background: #ffffff !important;
    border-top: 1px solid #e2e8f0 !important;
}

body.about-page-white .stand-for-section .pillar-block h3 {
    color: #0f172a !important;
}

body.about-page-white .stand-for-section .pillar-block p {
    color: #475569 !important;
}

body.about-page-white .global-story-section {
    background: #ffffff !important;
    border-top: 1px solid #e2e8f0 !important;
}

/* ========================================================
   INDUSTRIES SECTION & CARDS GRADIENT HOVER THEME
   ======================================================== */
.industries-section {
    position: relative;
    overflow: hidden;
}

.industry-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: #000000;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
}

/* Teal-to-Blue Linear Gradient Overlay on Hover */
.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 160, 165, 0.88) 0%, rgba(30, 64, 175, 0.88) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

/* Border Glow on Hover */
.industry-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    z-index: 3;
    pointer-events: none;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 160, 165, 0.4) !important;
}

.industry-card:hover::before {
    opacity: 0.88;
}

.industry-card:hover::after {
    border-color: #0aa0a5;
    box-shadow: inset 0 0 25px rgba(10, 160, 165, 0.45);
}

.industry-card:hover img {
    transform: scale(1.08);
}

.industry-card h3 {
    color: #ffffff !important;
    font-size: 19px;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.industry-card:hover h3 {
    transform: translateY(-2px);
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.95);
}

/* ========================================================
   WHAT WE STAND FOR (EXPANDING ACCORDION SHOWCASE)
   ======================================================== */
.stand-for-showcase-section {
    padding: 100px 0 110px 0;
    background: #020611;
    position: relative;
    overflow: hidden;
}

body.about-page-white .stand-for-showcase-section {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.stand-for-showcase-section .container-full {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.stand-for-header {
    margin-bottom: 3.5rem;
    padding: 0 2rem;
}

.services-wrapper {
    display: flex;
    width: 100%;
    height: 600px;
    min-height: 550px;
    position: relative;
    overflow: hidden;
}

.service-card {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.65s cubic-bezier(0.25, 1, 0.5, 1);
    background: #000000;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card:last-child {
    border-right: none;
}

.service-card.active,
.service-card:hover {
    flex: 2.2;
}

.service-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    /*background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.75) 100%);*/
    transition: opacity 0.5s ease, background 0.5s ease;
    z-index: 1;
}

.service-card:hover .service-img img,
.service-card.active .service-img img {
    transform: scale(1.06);
}

.service-card:hover .service-img::after,
.service-card.active .service-img::after {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(2, 6, 17, 0.65) 55%, rgba(0, 0, 0, 0.8) 100%);
}

/* Centered Watermark Title (when inactive) */
.service-watermark-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    z-index: 2;
    white-space: nowrap;
    text-align: center;
}

.service-watermark-text h4 {
    font-family: 'Oswald', 'Outfit', sans-serif;
    font-size: clamp(65px, 8.5vw, 150px);
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 4px;
    line-height: 1;
    margin: 0;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
}

.service-card.active .service-watermark-text,
.service-card:hover .service-watermark-text {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.9);
}

/* Content Area (fades & slides in when active/hovered) */
.service-card .content {
    position: absolute;
    top: 50%;
    left: 45px;
    transform: translateY(-50%) translateX(-30px);
    max-width: 520px;
    padding-right: 30px;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease 0.1s, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}

.service-card.active .content,
.service-card:hover .content {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.service-card .content .service-title {
    font-family: 'Oswald', 'Outfit', sans-serif;
    font-size: clamp(40px, 5.2vw, 68px);
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.05;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.service-card .content .divider-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    margin-bottom: 1.25rem;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(10, 160, 165, 0.5);
}

.service-card .content .service-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

/* Responsive */
@media (max-width: 992px) {
    .services-wrapper {
        flex-direction: column;
        height: auto;
        min-height: unset;
    }
    .service-card {
        min-height: 280px;
        flex: unset !important;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .service-card.active,
    .service-card:hover {
        min-height: 380px;
    }
    .service-card .content {
        left: 25px;
        right: 25px;
        max-width: 100%;
        padding-right: 0;
    }
}

/* ========================================================
   OUR JOURNEY THROUGH TIME (INTERACTIVE TIMELINE)
   ======================================================== */
.journey-timeline-section {
    padding: 100px 0 110px 0;
    background: #020611;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.about-page-white .journey-timeline-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.journey-header {
    margin-bottom: 3.5rem;
}

/* Timeline Horizontal Navigation Bar */
.journey-nav-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 0 auto 3.5rem auto;
    max-width: 1050px;
    padding: 0 20px;
}

.journey-nav-line {
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-50%);
    z-index: 1;
}

body.about-page-white .journey-nav-line {
    background: #e2e8f0;
}

.journey-nav-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.journey-nav-btn {
    position: relative;
    z-index: 2;
    background: #0b1120;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

body.about-page-white .journey-nav-btn {
    background: #ffffff;
    border: 2px solid #cbd5e1;
    color: #475569;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.journey-nav-btn:hover {
    border-color: #0aa0a5;
    color: #0aa0a5;
    transform: scale(1.08);
}

.journey-nav-btn.active,
body.about-page-white .journey-nav-btn.active {
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(10, 160, 165, 0.5) !important;
    transform: scale(1.12);
}

/* Milestone Showcase Card */
.milestone-display-card {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 45px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    min-height: auto;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.milestone-card-visual {
    display: none !important;
}

body.about-page-white .milestone-display-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.milestone-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.milestone-year-badge {
    font-family: 'Oswald', 'Outfit', sans-serif;
    font-size: clamp(54px, 7vw, 90px);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.milestone-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

body.about-page-white .milestone-card-title {
    color: #0f172a;
}

.milestone-card-desc {
    font-size: 15.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 550px;
}

body.about-page-white .milestone-card-desc {
    color: #475569;
}

.milestone-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(10, 160, 165, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.milestone-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(10, 160, 165, 0.5);
}

.milestone-card-visual {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.about-page-white .milestone-card-visual {
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.milestone-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.milestone-card-visual:hover img {
    transform: scale(1.05);
}

/* Timeline Controls */
.journey-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.journey-arrow-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.about-page-white .journey-arrow-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.journey-arrow-btn:hover {
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.08);
}

/* ==========================================================================
   Products & Bearing Housing Catalog Page (Sidebar + Grid Layout)
   ========================================================================== */
.product-catalog-banner {
    position: relative;
    width: 100%;
    min-height: 260px;
    background: #020617 url('assets/bb111111.webp') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.product-catalog-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.7) 0%, rgba(2, 6, 23, 0.88) 100%);
    z-index: 1;
}

.product-catalog-banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.product-catalog-banner-title {
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.product-catalog-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
}

.product-catalog-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-catalog-breadcrumb a:hover {
    color: #0aa0a5;
}

.product-catalog-breadcrumb .dot {
    color: #94a3b8;
    font-size: 12px;
}

.product-catalog-breadcrumb .current {
    color: #94a3b8;
}

/* Page Container & Main Layout */
.product-catalog-section {
    background-color: #ffffff !important;
    padding: 40px 0 90px 0;
    color: #0f172a;
}

.product-catalog-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 3.5rem;
    align-items: start;
}

/* Left Sidebar */
.product-catalog-sidebar {
    background: transparent;
}

/* Boxed Sidebar Card (matching user reference screenshot) */
.sidebar-card-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.sidebar-box-header {
    padding: 14px 18px;
    font-family: 'Oswald', 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #edf2f7;
}

.sidebar-box-header::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 14px;
    background: #f08b19;
    border-radius: 2px;
}

.sidebar-box-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-box-item {
    border-bottom: 1px dashed #e2e8f0;
}

.sidebar-box-item:last-child {
    border-bottom: none;
}

.sidebar-box-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-box-link:hover {
    background: #f8fafc;
    color: #0aa0a5;
}

.sidebar-box-link.active {
    background: #f8fafc;
    color: #0f172a;
    font-weight: 600;
}

.sidebar-card-box a {
    text-decoration: none;
}

.sidebar-pill-count {
    border: 1px solid #cbd5e1;
    color: #64748b;
    font-size: 11.5px;
    font-weight: 600;
    padding: 1px 8px;
    border-radius: 12px;
    background: #ffffff;
}

.sidebar-submenu {
    list-style: none;
    padding: 6px 0 10px 18px;
    margin: 0;
    background: #f8fafc;
    border-top: 1px dashed #e2e8f0;
}

.sidebar-submenu li {
    margin-bottom: 2px;
}

.sidebar-sublink {
    display: block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.sidebar-sublink:hover {
    color: #0aa0a5;
    background: #ffffff;
    padding-left: 18px;
}

.sidebar-sublink.active {
    color: #0aa0a5;
    font-weight: 700;
    background: #ffffff;
}

.sidebar-pub-item {
    border-bottom: 1px dashed #e2e8f0;
}

.sidebar-pub-item:last-child {
    border-bottom: none;
}

.sidebar-pub-box-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-pub-box-link:hover {
    background: #f8fafc;
    color: #0aa0a5;
}

.sidebar-pub-box-link i {
    color: #94a3b8;
    width: 15px;
    height: 15px;
}

/* Right Content Area */
.product-catalog-main {
    min-width: 0;
}

.catalog-mini-breadcrumb {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.catalog-mini-breadcrumb a {
    color: #64748b;
    text-decoration: none;
}

.catalog-mini-breadcrumb a:hover {
    color: #0aa0a5;
}

.catalog-main-title {
    font-family: 'Oswald', 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 0.4rem 0;
}

.catalog-subtitle {
    font-size: 14.5px;
    color: #64748b;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

/* Category Grid on products.php */
.products-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 320px));
    gap: 2rem;
    margin-top: 1.5rem;
}

.product-category-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 36px 24px 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.product-category-card:hover {
    transform: translateY(-5px);
    border-color: #0aa0a5;
    box-shadow: 0 15px 35px rgba(10, 160, 165, 0.12);
}

.product-category-icon-circle {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.product-category-card:hover .product-category-icon-circle {
    transform: scale(1.06);
    background: linear-gradient(135deg, rgba(10, 160, 165, 0.08) 0%, rgba(30, 64, 175, 0.08) 100%);
    border-color: #0aa0a5;
}

.product-category-card-img {
    max-width: 95%;
    max-height: 95%;
    width: 92%;
    height: 92%;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
}

.product-category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.product-category-card:hover .product-category-title {
    color: #0aa0a5;
}

.product-category-pill {
    background: #f1f5f9;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.product-category-card:hover .product-category-pill {
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    color: #ffffff;
}

/* Product Cards Grid (4 Columns for bearing-housing.php) */
.catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.catalog-product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 16px 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.catalog-product-card:hover {
    transform: translateY(-5px);
    border-color: #0aa0a5;
    box-shadow: 0 15px 30px rgba(10, 160, 165, 0.12);
}

.catalog-card-img-wrap {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    overflow: hidden;
    padding: 10px;
    transition: transform 0.3s ease;
}

.catalog-product-card:hover .catalog-card-img-wrap {
    transform: scale(1.06);
}

.catalog-card-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

.catalog-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.catalog-product-card:hover .catalog-card-title {
    color: #0aa0a5;
}

.catalog-card-badge {
    background: #f1f5f9;
    color: #64748b;
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
}

.catalog-product-card:hover .catalog-card-badge {
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    color: #ffffff;
}

/* ==========================================================================
   Product Single & Specifications Template Styles (SD Series)
   ========================================================================== */
.single-product-section {
    padding: 50px 0 80px 0;
    background: #ffffff;
    color: #0f172a;
}

.single-product-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3.5rem;
    align-items: start;
    margin-bottom: 4rem;
}

.single-product-image-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 440px;
}

.single-product-image-card img {
    max-width: 90%;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s ease;
}

.single-product-image-card:hover img {
    transform: scale(1.03);
}

.badge-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.single-product-info {
    display: flex;
    flex-direction: column;
}

.series-outline-badge {
    align-self: flex-start;
    border: 1.5px solid #0aa0a5;
    color: #0aa0a5;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.single-product-title {
    font-family: 'Overpass', 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.single-product-desc {
    font-size: 14.5px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 2rem;
}

.product-action-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-enquiry-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 1.8rem;
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(10, 160, 165, 0.25);
    transition: all 0.2s ease;
}

.btn-enquiry-solid:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(10, 160, 165, 0.4);
}

.btn-datasheet-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 1.8rem;
    background: #ffffff;
    color: #0f172a;
    border: 1.5px solid #0f172a;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-datasheet-outline:hover {
    background: #f8fafc;
}

.similar-products-box {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    padding: 1.5rem 1.75rem;
}

.similar-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.similar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.similar-list li {
    border-bottom: 1px solid #e2e8f0;
}

.similar-list li:last-child {
    border-bottom: none;
}

.similar-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 0;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.similar-list a:hover {
    color: #0aa0a5;
}

.similar-list a i {
    color: #94a3b8;
    width: 14px;
    height: 14px;
}

.product-tabs-wrapper {
    margin-top: 2rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 2.5rem;
}

.nav-tabs-pills {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.5rem;
}

.tab-btn {
    background: transparent;
    border: 1.5px solid transparent;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn.active {
    background: #ffffff;
    color: #0f172a;
    border: 2px solid #0f172a;
    font-weight: 700;
}

.tab-content-panel {
    display: none;
}

.tab-content-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.desc-text-content {
    font-size: 15px;
    line-height: 1.85;
    color: #475569;
    max-width: 1100px;
}

.specs-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.specs-group-heading {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    display: block;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.4rem;
}

.specs-group-heading:first-of-type {
    margin-top: 0;
}

.spec-param-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    margin-bottom: 1.5rem;
}

.spec-param-table th {
    background: #f8fafc;
    color: #475569;
    text-align: left;
    padding: 0.75rem 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e8f0;
    text-transform: uppercase;
}

.spec-param-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}

.spec-param-table td:first-child {
    width: 60%;
    font-weight: 500;
    color: #475569;
}

.spec-param-table td:last-child {
    font-weight: 700;
    color: #0f172a;
}

.spec-param-table tr:hover td {
    background: #f8fafc;
}

.cad-blueprint-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 100px;
}

.cad-blueprint-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.cad-caption {
    margin-top: 1rem;
    font-size: 12.5px;
    color: #64748b;
    font-weight: 600;
}

.variants-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: center;
}

.variants-table th {
    background: #f8fafc;
    color: #475569;
    padding: 0.75rem 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid #e2e8f0;
}

.variants-table td {
    padding: 0.75rem 1rem;
    border: 1px solid #f1f5f9;
    color: #334155;
}

.variants-table tr.current-model td {
    background: #eff6ff;
    font-weight: 700;
    color: #0aa0a5;
}

/* Responsive */
@media (max-width: 1200px) {
    .catalog-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-catalog-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .catalog-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .single-product-grid {
        grid-template-columns: 1fr;
    }
    .specs-split-grid {
        grid-template-columns: 1fr;
    }
    .products-category-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .catalog-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .catalog-card-img-wrap {
        width: 100px;
        height: 100px;
    }
}


/* ==========================================================================
   SD Series Table & Filter Page Styles (matching reference screenshot)
   ========================================================================== */
.sd-series-section {
    background-color: #f8fafc;
    padding: 30px 0 80px 0;
    color: #0f172a;
    min-height: calc(100vh - 200px);
}

.sd-breadcrumb {
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sd-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.sd-breadcrumb a:hover {
    color: #0aa0a5;
}

.sd-breadcrumb .sep {
    color: #cbd5e1;
}

.sd-breadcrumb .active {
    color: #0f172a;
    font-weight: 600;
}

/* Series Specification Hero Card */
.series-spec-card {
    background: #ffffff;
    background-image: linear-gradient(to right, rgba(226, 232, 240, 0.4) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(226, 232, 240, 0.4) 1px, transparent 1px);
    background-size: 32px 32px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.25rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.series-spec-img-wrap {
    width: 170px;
    height: 140px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.series-spec-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.series-spec-content {
    flex: 1;
}

.series-spec-label {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #f08b19;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    display: block;
}

.series-spec-title {
    font-family: 'Oswald', 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #1e40af;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 0.75rem 0;
}

.series-spec-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #475569;
    margin: 0;
    max-width: 980px;
}



.sd-select-chevron {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #64748b;
    width: 16px;
    height: 16px;
}

.sd-reset-link {
    display: inline-block;
    color: #1e40af;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.2s;
}

.sd-reset-link:hover {
    color: #0aa0a5;
}

/* Results Count */
.sd-results-counter {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0.85rem;
}

.sd-results-counter span {
    color: #0f172a;
    font-weight: 800;
}

/* Technical Data Table */

.sd-table-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow-x: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    position: relative;
    max-width: 100%;
}

.sd-spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
    font-size: 13px;
    min-width: 2600px;
}

.sd-spec-table th {
    background: linear-gradient(135deg, #0aa0a5 0%, #1e40af 100%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    white-space: normal;
    word-break: break-word;
    user-select: none;
    cursor: pointer;
    transition: background 0.2s;
    position: sticky;
    top: 0;
    z-index: 10;
    vertical-align: middle;
    height: 64px;
    min-width: 140px;
    max-width: 220px;
    box-sizing: border-box;
}

.sd-spec-table th:first-child {
    position: sticky;
    left: 0;
    z-index: 20;
    background: linear-gradient(135deg, #0aa0a5 0%, #1e40af 100%);
    min-width: 160px;
}

.sd-spec-table th:hover {
    background: #1d4ed8;
}

.sd-spec-table th:first-child:hover {
    background: #1e3a8a;
}

.sd-spec-table th .th-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    height: 100%;
    width: 100%;
}

.sd-spec-table th .th-content span {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    flex: 1;
}

.sd-spec-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    border-right: 1px solid #f1f5f9;
    color: #334155;
    font-weight: 500;
    white-space: pre;
}

.sd-spec-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 5;
    background: #ffffff;
    border-right: 2px solid #cbd5e1;
}

.sd-spec-table tr:nth-child(even) td {
    background: #f8fafc;
}

.sd-spec-table tr:nth-child(even) td:first-child {
    background: #f1f5f9;
}

.sd-spec-table tr:hover td {
    background: #eff6ff;
}

.sd-spec-table tr:hover td:first-child {
    background: #dbeafe;
}

.sd-designation-link {
    color: #1e40af;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.sd-designation-link:hover {
    color: #0aa0a5;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .series-spec-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .sd-select-wrapper {
        min-width: 100%;
    }
}



/* Custom Dimension Range Filter Popovers (Enhanced) */
.sd-filters-wrap {
    position: relative;
    z-index: 50;
    margin-bottom: 2rem;
}

.sd-filters-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
}

.range-filter-item {
    position: relative;
    user-select: none;
}

.range-filter-btn {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 13.5px;
    font-weight: 500;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    min-width: 220px;
    transition: all 0.2s ease;
}

.range-filter-btn:hover {
    border-color: #94a3b8;
}

.range-filter-btn.open {
    border-color: #0f172a !important;
    border-width: 2px !important;
    color: #0f172a !important;
    box-shadow: 0 0 0 1px #0f172a !important;
}

.range-filter-btn.filtered {
    border-color: #1e40af;
    background: #eff6ff;
    color: #1e40af;
    font-weight: 600;
}

.range-filter-btn i,
.range-filter-btn svg {
    width: 16px;
    height: 16px;
    color: #64748b;
    transition: transform 0.2s ease;
}

.range-filter-btn.open i,
.range-filter-btn.open svg {
    transform: rotate(180deg);
    color: #0f172a;
}

.range-popover {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 1000;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 18px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    width: 280px;
    display: none;
}

.range-popover.show {
    display: block !important;
}

.range-inputs-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.mm-input-wrap {
    position: relative;
    flex: 1;
}

.mm-input {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 8px 32px 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.mm-input:focus {
    border-color: #1e40af;
    box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.15);
}

.mm-suffix {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
    pointer-events: none;
}

.range-separator {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 700;
}

.range-actions-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.range-btn-reset {
    flex: 1;
    padding: 9px 14px;
    background: #f1f5f9;
    color: #475569;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.range-btn-reset:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.range-btn-apply {
    flex: 1;
    padding: 9px 14px;
    background: linear-gradient(135deg, #0aa0a5 0%, #1e40af 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.range-btn-apply:hover {
    background: #1d4ed8;
}




.bearing-series-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.5rem;
}

.bearing-series-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #ffffff;
    border-radius: 16px;
    padding: 1.25rem 1rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.bearing-series-card:hover {
    transform: translateY(-6px);
}

.bearing-series-img-box {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.bearing-series-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bearing-series-card:hover .bearing-series-img {
    transform: scale(1.06);
}

.bearing-series-title {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    text-align: left;
    transition: color 0.2s ease;
}

.bearing-series-card:hover .bearing-series-title {
    color: #0aa0a5;
}

@media (max-width: 992px) {
    .bearing-series-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .bearing-series-grid-3 {
        grid-template-columns: 1fr;
    }
}


/* SD Table Pagination Styling */
.sd-pagination-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0.5rem 0.5rem 0.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.sd-pagination-info {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.sd-pagination-info span {
    font-weight: 700;
    color: #0f172a;
}

.sd-pagination-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sd-page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    user-select: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sd-page-btn:hover:not(:disabled):not(.active) {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #0284c7;
}

.sd-page-btn.active {
    background: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.sd-page-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f8fafc;
}


/* Series Specification Card (matching user reference image) */
.series-spec-card.dark-tech-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.75rem 2.25rem;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: block;
}

.spec-card-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(226, 232, 240, 0.45) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(226, 232, 240, 0.45) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 1;
}

.spec-card-content-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.spec-product-img-box {
    width: 140px;
    height: 120px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
}

.spec-product-img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

.spec-card-text-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spec-series-subtag {
    font-family: 'Space Grotesk', 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #d97706;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    display: block;
}

.spec-series-main-title {
    font-family: 'Oswald', 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1e40af;
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.5px;
}

.spec-series-description {
    font-size: 14.5px;
    line-height: 1.65;
    color: #475569;
    margin: 0;
    max-width: 850px;
}

@media (max-width: 768px) {
    .spec-card-content-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
}


/* ==========================================================================
   Contact Page Complete Styles (Fixed & Restored)
   ========================================================================== */
.contact-page-white {
    background-color: #ffffff;
    color: #0f172a;
}

/* 4 Contact Info Cards (2x2 Grid) */
.contact-info-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.contact-badge-icon-wrap {
    position: relative;
    width: 68px;
    height: 68px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-badge-icon-bg {
    position: absolute;
    width: 52px;
    height: 52px;
    top: 4px;
    left: 4px;
    border: 2px solid #1e40af;
    border-radius: 14px;
}

.contact-badge-icon {
    position: absolute;
    width: 54px;
    height: 54px;
    bottom: 2px;
    right: 2px;
    background: #1e40af;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.35);
}

.contact-badge-icon i,
.contact-badge-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2.2;
}

.contact-clock-icon-wrap {
    width: 68px;
    height: 68px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analog-clock-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.analog-clock-box svg {
    width: 54px;
    height: 54px;
}

.contact-card-title {
    font-size: 19px;
    font-weight: 800;
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.contact-card-text {
    font-size: 14.5px;
    line-height: 1.65;
    color: #475569;
    margin: 0;
    max-width: 380px;
}

.contact-card-text a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-card-text a:hover {
    color: #0aa0a5;
    text-decoration: underline;
}

.open-status-badge {
    display: inline-block;
    margin-top: 0.5rem;
    color: #16a34a;
    font-weight: 700;
    font-size: 13.5px;
}

/* Let's Talk Inquiry Form Section */
.contact-form-section {
    padding: 60px 0 80px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-left h2 {
    font-family: 'Oswald', 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.contact-form-left p {
    font-size: 15px;
    line-height: 1.75;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.contact-quick-item {
    margin-bottom: 1.75rem;
}

.contact-quick-label {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #f08b19;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    display: block;
}

.contact-quick-val {
    font-size: 14.5px;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.6;
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.form-field-group {
    margin-bottom: 1.25rem;
}

.form-field-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.4rem;
}

.form-field-input,
.form-field-select,
.form-field-textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    color: #0f172a;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
    box-sizing: border-box;
}

.form-field-input:focus,
.form-field-select:focus,
.form-field-textarea:focus {
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
}

.btn-form-submit {
    width: 100%;
    padding: 13px 28px;
    background: linear-gradient(135deg, #0aa0a5 0%, #1e40af 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(10, 160, 165, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(10, 160, 165, 0.5);
}

/* SECTION: Management Leaders & Marketing Core Team */
.leaders-team-section {
    padding: 70px 0 80px 0;
    background: #ffffff;
}

.section-sub-tag {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #0284c7;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    display: block;
}

.leaders-section-heading {
    font-family: 'Oswald', 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: inline-block;
}

.leaders-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 3.5rem;
}

.leader-avatar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.leader-avatar-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.leader-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.leader-avatar.ap { background: #e0f2fe; color: #0284c7; }
.leader-avatar.sp { background: #dcfce7; color: #16a34a; }
.leader-avatar.gp { background: #fce7f3; color: #db2777; }
.leader-avatar.pb { background: #fef3c7; color: #d97706; }
.leader-avatar.ad { background: #dcfce7; color: #16a34a; }
.leader-avatar.jv { background: #e0f2fe; color: #0284c7; }
.leader-avatar.kv { background: #fef3c7; color: #d97706; }
.leader-avatar.nb { background: #fce7f3; color: #db2777; }

.leader-name {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.leader-role {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.marketing-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.marketing-contact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.marketing-contact-card:hover {
    border-color: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.marketing-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.marketing-member-contacts {
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.marketing-member-contacts a {
    color: #475569;
    font-size: 12.5px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    word-break: break-all;
}

.marketing-member-contacts a:hover {
    color: #0284c7;
    text-decoration: underline;
}

/* Career Opportunity Bar */
.career-opportunity-bar {
    background: #eef6ff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #1e3a8a;
    font-size: 14px;
    font-weight: 600;
}

.career-icon-box {
    width: 36px;
    height: 36px;
    background: #dbeafe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
    flex-shrink: 0;
}

.career-opportunity-bar a {
    color: #1d4ed8;
    font-weight: 700;
    text-decoration: underline;
}

/* SECTION: Find Us On The Map */
.find-map-section {
    padding: 70px 0 90px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.map-section-title {
    font-family: 'Oswald', 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 800;
    background: linear-gradient(135deg, rgb(10, 160, 165) 0%, rgb(30, 64, 175) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    display: block;
}

.map-cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.map-location-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.map-location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.map-location-card.active-card {
    border-color: #1d4ed8;
    box-shadow: 0 10px 30px rgba(29, 78, 216, 0.12);
}

.map-preview-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    background: #e2e8f0;
    overflow: hidden;
}

.map-embed-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.map-top-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.map-badge-left,
.map-badge-right {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11.5px;
    font-weight: 700;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.map-facility-badge {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #0284c7;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.map-location-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.map-location-address {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 1rem;
}

.map-tags-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.map-status-pill {
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 9999px;
    background: #f1f5f9;
    color: #475569;
}

.map-status-pill.open {
    background: #dcfce7;
    color: #15803d;
    font-weight: 700;
}

.map-tag-pill {
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 9999px;
    background: #f1f5f9;
    color: #475569;
}

.map-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #eff6ff;
    color: #1d4ed8;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-directions:hover {
    background: #1d4ed8;
    color: #ffffff;
}

.map-rating-display {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 1px;
}

.rating-num {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
}

@media (max-width: 992px) {
    .contact-info-grid-4 {
        grid-template-columns: 1fr;
    }
    .contact-form-layout {
        grid-template-columns: 1fr;
    }
    .leaders-grid-4,
    .marketing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .map-cards-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .leaders-grid-4,
    .marketing-grid-4 {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Bearing Housing Interactive Showcase Section (.bearing-catalog-section)
   ========================================================================== */
.bearing-catalog-section {
    position: relative;
    padding: 90px 0 110px 0;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 40%, #1e3a8a 100%);
    color: #ffffff;
    overflow: hidden;
}

.showcase-ripple-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    pointer-events: none;
    z-index: 1;
}

.ripple-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
}

.ripple-circle.c1 { width: 320px; height: 320px; animation: pulseRing 6s infinite ease-in-out; }
.ripple-circle.c2 { width: 520px; height: 520px; animation: pulseRing 6s infinite ease-in-out 1.5s; }
.ripple-circle.c3 { width: 720px; height: 720px; animation: pulseRing 6s infinite ease-in-out 3s; }
.ripple-circle.c4 { width: 920px; height: 920px; animation: pulseRing 6s infinite ease-in-out 4.5s; }

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(0.96); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.04); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(0.96); opacity: 0.2; }
}

.showcase-stage-grid {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1.35fr 260px;
    align-items: center;
    gap: 2.5rem;
    min-height: 480px;
}

/* Left Content Column */
.showcase-left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 5px 14px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #38bdf8;
    margin-bottom: 1rem;
    width: fit-content;
}

.showcase-title {
    font-family: 'Oswald', 'Poppins', sans-serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.showcase-spec-highlight {
    font-size: 16px;
    font-weight: 700;
    color: #fde047;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.showcase-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #e0f2fe;
    margin-bottom: 1.75rem;
    max-width: 420px;
    transition: all 0.3s ease;
}

.showcase-btn-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.showcase-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #0369a1;
    padding: 12px 28px;
    border-radius: 9999px;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
}

.showcase-cta-btn:hover {
    transform: translateY(-2px);
    background: #f8fafc;
    color: #0284c7;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.showcase-sec-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 11px 22px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.showcase-sec-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #ffffff;
    color: #ffffff;
}

/* Center Stage Hero Column */
.showcase-center-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.showcase-hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-hero-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
   
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes floatHero {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.showcase-float-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 6;
}

.showcase-float-tag.top-left {
    top: 20px;
    left: -10px;
}

.showcase-float-tag.bottom-right {
    bottom: 20px;
    right: -10px;
}

/* Right Thumbnail Switcher Column */
.showcase-thumb-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.showcase-thumb-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 10px 14px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.showcase-thumb-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateX(-4px);
}

.showcase-thumb-item.active {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(-8px);
}

.showcase-thumb-img-box {
    width: 48px;
    height: 48px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    flex-shrink: 0;
}

.showcase-thumb-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.showcase-thumb-info {
    display: flex;
    flex-direction: column;
}

.showcase-thumb-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    transition: color 0.2s;
}

.showcase-thumb-item.active .showcase-thumb-name {
    color: #0f172a;
}

.showcase-thumb-count {
    font-size: 11px;
    color: #bae6fd;
}

.showcase-thumb-item.active .showcase-thumb-count {
    color: #0284c7;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .showcase-stage-grid {
        grid-template-columns: 1fr 1fr;
    }
    .showcase-thumb-column {
        grid-column: 1 / -1;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .showcase-thumb-item {
        min-width: 180px;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .showcase-stage-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .showcase-left-content {
        align-items: center;
    }
    .showcase-btn-row {
        justify-content: center;
    }
    .showcase-center-stage {
        min-height: 300px;
    }
    .showcase-hero-img-wrap {
        height: 260px;
    }
}


/* ==========================================================================
   Series Specification Technical Card (.series-spec-card.dark-tech-card)
   ========================================================================== */
.series-spec-card.dark-tech-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 3rem;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 3rem;
    align-items: center;
}

.spec-card-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(226, 232, 240, 0.6) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(226, 232, 240, 0.6) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 1;
}

.spec-card-left {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
}

.spec-tech-badge {
    font-family: 'Space Grotesk', 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0284c7;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.spec-card-headline {
    font-family: 'Oswald', 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.spec-card-text {
    font-size: 14.5px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 580px;
}

.spec-card-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.spec-pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, #0aa0a5 0%, #1e40af 100%);
    color: #ffffff;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(10, 160, 165, 0.35);
    transition: all 0.2s ease;
}

.spec-pill-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(10, 160, 165, 0.5);
    color: #ffffff;
}

.spec-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #0f172a;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
}

.spec-outline-btn:hover {
    border-color: #0284c7;
    color: #0284c7;
    background: #f8fafc;
}

/* Right Visual Column */
.spec-card-right {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

.spec-card-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.spec-hero-img {
    max-width: 90%;
    max-height: 340px;
    object-fit: contain;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s ease;
    margin: -30px 140px 0px 30px;

}

.spec-card-right:hover .spec-hero-img {
    transform: scale(1.05);
}

.spec-layered-typography {
    position: absolute;
    bottom: -10px;
    right: 0;
    pointer-events: none;
    z-index: 2;
    text-align: right;
    line-height: 0.85;
}

.spec-layered-outline {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(203, 213, 225, 0.6);
    letter-spacing: 2px;
}

.spec-layered-solid {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.25) 0%, rgba(30, 64, 175, 0.25) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

@media (max-width: 992px) {
    .series-spec-card.dark-tech-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    .catalog-layout {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    .catalog-sidebar {
        width: 100% !important;
    }
    .bearing-series-grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }
}

@media (max-width: 768px) {
    .sd-filters-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.85rem !important;
    }
    .search-filter-item {
        width: 100% !important;
        min-width: 100% !important;
    }
    .range-filter-item, .range-filter-btn {
        width: 100% !important;
    }
    .range-popover {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        border: 1px solid #cbd5e1 !important;
        margin-top: 0.5rem !important;
    }
    .bearing-series-grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    .about-banner-title, .products-banner-title {
        font-size: 28px !important;
    }
}

@media (max-width: 480px) {
    .bearing-series-grid-3 {
        grid-template-columns: 1fr !important;
    }
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

.sd-table-container, .table-responsive, .spec-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Hide horizontal scrollbar for ribbon timeline */
.masta-ribbon-timeline-wrapper {
    overflow-x: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.masta-ribbon-timeline-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

@media (max-width: 992px) {
    .banner-left-drawing {
        opacity: 0.2 !important;
        left: -10px !important;
    }
    .banner-left-drawing img {
        height: 180px !important;
    }
}
@media (max-width: 640px) {
    .banner-left-drawing {
        display: none !important;
    }
}
