/* ==========================================================================
   INDUSTO INDUSTRIAL DESIGN SYSTEM - SAMARTH ENGINEERS & CONSULTANTS
   Visual Language, Components, Spacing, Typography & Animations
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
  --primary: #ff5e14;
  --primary-rgb: 255, 94, 20;
  --primary-hover: #e04f0d;
  --primary-glow: rgba(255, 94, 20, 0.25);
  
  --dark-hero: #111418;
  --dark-surface: #171b20;
  --dark-card: #1f242c;
  --dark-border: #2c343f;
  
  --industrial-grey: #f4f6f9;
  --industrial-border: #e2e7ee;
  
  --text-dark: #15181c;
  --text-muted: #5e6875;
  --text-light: #9ba6b4;
  --text-white: #ffffff;
  
  --font-heading: 'Be Vietnam Pro', 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 10px 30px rgba(255, 94, 20, 0.35);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-fluid {
  width: 100%;
  padding: 0 32px;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.25rem; font-weight: 700; }
h5 { font-size: 1.1rem; font-weight: 600; }

/* Section Title (Industo Signature Style) */
.sec-title {
  position: relative;
  margin-bottom: 50px;
}

.sec-title.centered {
  text-align: center;
}

/* ==========================================================================
   SECTION TITLE ANIMATIONS & INDUSTRIAL TYPOGRAPHY
   ========================================================================== */

.sec-title {
  position: relative;
  margin-bottom: 50px;
}

.sec-title.centered {
  text-align: center;
}

.sec-title .big-text {
  position: absolute;
  top: -45px;
  left: -10px;
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(21, 24, 28, 0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.sec-title.centered .big-text {
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
}

.sec-title.is-revealed .big-text {
  opacity: 1;
  transform: translateY(0);
  animation: floatWatermark 6s ease-in-out infinite alternate 1s;
}

.sec-title.centered.is-revealed .big-text {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  animation: floatWatermarkCentered 6s ease-in-out infinite alternate 1s;
}

@keyframes floatWatermark {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes floatWatermarkCentered {
  0% { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(-50%) translateY(-8px); }
}

.sec-title .title-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 14px;
  z-index: 1;
  opacity: 0;
  transform: translateY(-16px);
  filter: blur(4px);
  transition: 
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.75s ease;
}

.sec-title .title-badge::before,
.sec-title .title-badge::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 3px;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(255, 94, 20, 0.7);
}

.sec-title.is-revealed .title-badge {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.sec-title h2 {
  position: relative;
  z-index: 1;
  color: var(--text-dark);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  filter: blur(5px);
  transition: 
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
    filter 0.85s ease 0.1s;
}

.sec-title.is-revealed h2 {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.sec-title .heading-line-1 {
  display: block;
  color: #0f1216;
  -webkit-text-fill-color: #0f1216;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(22px);
  filter: blur(4px);
  transition: 
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.12s,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.12s,
    filter 0.8s ease 0.12s;
}

.sec-title.is-revealed .heading-line-1 {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.sec-title .heading-line-2 {
  display: inline-block;
  background: linear-gradient(90deg, #ff5e14 0%, #ff7829 45%, #e04604 85%, #ff5e14 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.01em;
  filter: drop-shadow(0 2px 8px rgba(255, 94, 20, 0.22));
  opacity: 0;
  transform: translateY(24px);
  transition: 
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.22s,
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.22s;
}

.sec-title.is-revealed .heading-line-2 {
  opacity: 1;
  transform: translateY(0);
  animation: gradientShimmer 4s linear infinite 0.9s;
}

@keyframes secTitleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.sec-title h2 span:not(.heading-line-1):not(.heading-line-2) {
  display: inline;
  background: linear-gradient(90deg, #ff5e14 0%, #ff9e2c 25%, #ff5e14 75%, #ff4500 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShimmer 4.5s linear infinite;
  text-shadow: none;
}

/* Dynamic Accent Underline for Section Titles */
.sec-title::after {
  content: '';
  display: block;
  height: 3.5px;
  background: var(--primary);
  border-radius: 4px;
  margin-top: 18px;
  width: 0px;
  box-shadow: none;
  transition: 
    width 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.35s,
    box-shadow 0.85s ease 0.35s;
}

.sec-title.is-revealed::after {
  width: 52px;
  box-shadow: 0 0 12px rgba(255, 94, 20, 0.65);
}

.sec-title.centered::after {
  margin-left: auto;
  margin-right: auto;
}

.sec-title.dark h2,
.sec-title.dark .sec-subtext {
  color: #ffffff;
}

.sec-title.dark .big-text {
  color: rgba(255, 255, 255, 0.05);
}

.sec-title .sec-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: 
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.28s,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.28s;
}

.sec-title.is-revealed .sec-subtext {
  opacity: 1;
  transform: translateY(0);
}

.sec-title.centered .sec-subtext {
  margin-left: auto;
  margin-right: auto;
}

/* Industo Buttons */
.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--primary);
  color: #ffffff;
  border-radius: var(--radius-sm);
  border: 2px solid var(--primary);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition);
}

.theme-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--dark-hero);
  z-index: -1;
  transition: var(--transition);
}

.theme-btn:hover {
  color: #ffffff;
  border-color: var(--dark-hero);
  box-shadow: var(--shadow-glow);
}

.theme-btn:hover::before {
  width: 100%;
}

.theme-btn.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--dark-surface);
}

.theme-btn.btn-outline::before {
  background: var(--primary);
}

.theme-btn.btn-outline:hover {
  border-color: var(--primary);
  color: #ffffff;
}

.theme-btn.btn-white {
  background: #ffffff;
  color: var(--dark-surface);
  border-color: #ffffff;
}

.theme-btn.btn-white:hover {
  color: #ffffff;
  border-color: var(--primary);
}

.theme-btn.btn-white::before {
  background: var(--primary);
}

.theme-btn i {
  font-size: 0.9em;
  transition: transform 0.3s ease;
}

.theme-btn:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   HEADER SYSTEM (Industo Multi-Tier Top Bar & Navigation)
   ========================================================================== */

/* Header Top */
.header-top {
  background: #0f1216;
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.25;
}

.header-top .top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.header-top .top-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-top .top-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-top .top-info-item i {
  color: var(--primary);
  font-size: 0.85rem;
}

.header-top .top-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-top .social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-top .social-links a {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.72rem;
  transition: var(--transition);
}

.header-top .social-links a:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

/* Header Upper */
.header-upper {
  background: #ffffff;
  padding: 24px 0 16px;
  position: relative;
  z-index: 10;
}

.header-upper .upper-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-upper .logo-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-upper .logo-box img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.header-upper .brand-text {
  display: flex;
  flex-direction: column;
}

.header-upper .brand-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.header-upper .brand-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: 700;
}

.header-upper .info-boxes {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-upper .info-box {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.header-upper .info-box:hover {
  transform: translateY(-2px);
}

.header-upper .info-box .icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.85rem;
  flex-shrink: 0;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Continuous micro-animations for header icons */
.header-upper .info-box:nth-child(1) .icon-wrap i {
  animation: phoneRing 3.5s ease-in-out infinite;
  transform-origin: center center;
}

.header-upper .info-box:nth-child(2) .icon-wrap i {
  animation: pinBounce 2.8s ease-in-out infinite;
}

.header-upper .info-box:nth-child(3) .icon-wrap i {
  animation: mailFloat 3.2s ease-in-out infinite;
}

/* Hover dynamic animations */
.header-upper .info-box:hover .icon-wrap {
  transform: scale(1.22);
  color: #ff3c00;
  filter: drop-shadow(0 4px 10px rgba(255, 94, 20, 0.45));
}

.header-upper .info-box:hover .icon-wrap i {
  animation: iconWobble 0.6s ease-in-out both;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg) scale(1); }
  10% { transform: rotate(-15deg) scale(1.08); }
  15% { transform: rotate(15deg) scale(1.08); }
  20% { transform: rotate(-10deg) scale(1.05); }
  25% { transform: rotate(10deg) scale(1.05); }
  30% { transform: rotate(-5deg); }
  35% { transform: rotate(5deg); }
  40% { transform: rotate(0deg) scale(1); }
  80% { transform: rotate(0deg) scale(1); }
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-7px) scale(1.06); }
  45% { transform: translateY(0) scale(0.95); }
  60% { transform: translateY(-3px); }
  75% { transform: translateY(0); }
}

@keyframes mailFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.05); }
}

@keyframes iconWobble {
  0% { transform: scale(1); }
  25% { transform: rotate(-14deg) scale(1.25); }
  50% { transform: rotate(14deg) scale(1.25); }
  75% { transform: rotate(-7deg) scale(1.2); }
  100% { transform: rotate(0) scale(1.2); }
}

.header-upper .info-box .info-content {
  display: flex;
  flex-direction: column;
}

.header-upper .info-box .info-content span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 1px;
}

.header-upper .info-box .info-content strong {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1.2;
  transition: var(--transition);
}

.header-upper .info-box:hover .info-content strong {
  color: var(--primary);
}

.header-upper .info-box .info-content strong a {
  color: var(--text-dark);
  transition: var(--transition);
}

.header-upper .info-box .info-content strong a:hover {
  color: var(--primary);
}

/* Header Lower / Industo Signature Slanted Orange Navbar */
.header-lower {
  background: var(--dark-hero);
  position: relative;
  z-index: 100;
  overflow: visible;
}

.header-lower .nav-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.header-lower .nav-outer {
  position: relative;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 45px;
}

.header-lower .nav-outer::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40px;
  width: 42px;
  background: var(--primary);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.header-lower .nav-outer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100%;
  background: var(--primary);
  pointer-events: none;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  margin: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  position: relative;
  transition: var(--transition);
}

.nav-links > li > a i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.nav-links > li:hover > a i {
  transform: rotate(180deg);
}

.nav-links > li:hover > a,
.nav-links > li.active > a {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.12);
}

/* Dropdown & Mega Menu */
.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: #ffffff;
  border-top: 3px solid var(--primary);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 10px 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 999;
}

.nav-links li:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links .dropdown-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 22px;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-links .dropdown-menu li a:hover {
  background: rgba(255, 94, 20, 0.08);
  color: var(--primary);
  padding-left: 26px;
}

/* ==========================================================================
   MEGA MENU (Multi-Column Product & Service Categories)
   ========================================================================== */

.nav-links li.has-mega-menu {
  position: relative;
}

.mega-dropdown-menu {
  position: absolute;
  top: 100%;
  right: -140px;
  left: auto;
  transform: translateY(14px);
  width: 990px;
  max-width: calc(100vw - 32px);
  background: #ffffff;
  border-top: 4px solid var(--primary);
  border-radius: 0 0 18px 18px;
  padding: 26px 28px 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100005;
}

.nav-links li:hover > .mega-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-header .mega-dropdown-menu {
  right: -80px;
  left: auto;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 22px;
}

.mega-menu-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-menu-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 7px 10px !important;
  border-radius: 8px;
  color: #334155 !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  line-height: 1.35 !important;
  font-family: var(--font-body) !important;
  background: transparent !important;
  transition: all 0.22s ease !important;
}

.mega-menu-item:hover {
  background: rgba(255, 94, 20, 0.08) !important;
  color: var(--primary) !important;
  transform: translateX(4px);
  padding-left: 14px !important;
}

.mega-menu-item .item-count {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 2px 7px;
  border-radius: 12px;
  min-width: 22px;
  text-align: center;
  transition: all 0.22s ease;
  margin-left: 8px;
}

.mega-menu-item:hover .item-count {
  background: var(--primary);
  color: #ffffff;
}

.mega-menu-footer {
  grid-column: span 4;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mega-menu-footer a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  text-decoration: none !important;
  padding: 0 !important;
  background: transparent !important;
  transition: transform 0.25s ease !important;
}

.mega-menu-footer a:hover {
  transform: translateX(4px);
  color: #e04604 !important;
}

.header-lower .nav-right-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 20px;
}

.header-lower .search-trigger-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.15rem;
  cursor: pointer;
  padding: 8px 12px;
  transition: var(--transition);
}

.header-lower .search-trigger-btn:hover {
  transform: scale(1.15);
  color: var(--dark-hero);
}

.header-lower .nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(17, 20, 24, 0.96);
  backdrop-filter: blur(10px);
  z-index: 999;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.sticky-header.is-sticky {
  transform: translateY(0);
}

.sticky-header .sticky-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.sticky-header .logo-box a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.sticky-header .logo-box img,
.header-logo-badge {
  height: 38px;
  width: auto;
  background: #ffffff;
  padding: 3px 8px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  object-fit: contain;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.sticky-header .logo-box a:hover img,
.sticky-header .logo-box a:hover .header-logo-badge {
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(255, 94, 20, 0.35);
}

.sticky-header .logo-box span {
  color: #ffffff;
  font-weight: 900;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: var(--dark-surface);
  z-index: 10000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer .drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer .drawer-header img {
  height: 36px;
  width: auto;
  background: #ffffff;
  padding: 3px 6px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.mobile-drawer .close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-drawer .mobile-links li {
  margin-bottom: 16px;
}

.mobile-drawer .mobile-links a {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.mobile-drawer .mobile-links a:hover {
  color: var(--primary);
}

/* ==========================================================================
   HERO SECTION (Industo Visual Power & Video Background)
   ========================================================================== */

.hero-slider {
  position: relative;
  background: var(--dark-hero);
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 110px 0 90px;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.04);
  object-fit: cover;
  opacity: 0.95;
  filter: brightness(1.06) contrast(105%) saturate(108%);
  animation: heroVideoSlowPan 20s ease-in-out infinite alternate;
}

@keyframes heroVideoSlowPan {
  0% { transform: translate(-50%, -50%) scale(1.04); }
  100% { transform: translate(-50%, -50%) scale(1.10); }
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(17, 20, 24, 0.46) 0%, rgba(17, 20, 24, 0.22) 50%, rgba(17, 20, 24, 0.06) 100%);
  z-index: 1;
}

.hero-slider .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff5e14 0%, #e04604 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(255, 94, 20, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
  animation: heroFadeInDown 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards, badgePulse 3s ease-in-out infinite alternate;
}

.hero-badge i {
  color: #ffffff;
  font-size: 1.05rem;
}

@keyframes badgePulse {
  0% { 
    box-shadow: 0 8px 25px rgba(255, 94, 20, 0.45);
    transform: translateY(0);
  }
  100% { 
    box-shadow: 0 12px 32px rgba(255, 94, 20, 0.7);
    transform: translateY(-2px);
  }
}

.hero-title {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 900;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
}

.hero-title .title-line-1 {
  display: block;
  color: #ffffff;
  animation: heroTextSlideIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-title .title-highlight {
  display: inline-block;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
  animation: heroTextScaleGlow 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  position: relative;
}

.hero-title .title-line-2 {
  display: inline-block;
  color: #ffffff;
  margin-left: 8px;
  animation: heroTextSlideUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

@keyframes gradientShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes heroTextSlideIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroTextScaleGlow {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
    filter: drop-shadow(0 0 0px transparent);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 25px rgba(255, 94, 20, 0.45));
  }
}

@keyframes heroTextSlideUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content p {
  color: #f1f4f8;
  font-size: 1.15rem;
  margin-bottom: 36px;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
  animation: heroFadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  animation: heroFadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}

.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: heroFadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.hero-stat-card:hover {
  background: rgba(255, 94, 20, 0.08);
  border-color: rgba(255, 94, 20, 0.35);
  transform: translateY(-4px);
}

.hero-stat-card .stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 94, 20, 0.3);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.hero-stat-card:hover .stat-icon {
  background: var(--primary);
  color: #ffffff;
  transform: rotate(10deg);
}

.hero-stat-card .stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.hero-stat-card .stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeInDown {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   FEATURE CARDS STRIP
   ========================================================================== */

.feature-strip {
  position: relative;
  z-index: 5;
  margin-top: -50px;
  margin-bottom: 70px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-box {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--primary);
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  will-change: transform;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, #fffbf9 0%, #ffefe7 100%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* Invisible bottom hit-area to prevent mouse drop-off on translateY */
.feature-box::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 12px;
  background: transparent;
  pointer-events: auto;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(255, 94, 20, 0.16);
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-box > * {
  position: relative;
  z-index: 1;
}

.feature-box:hover h4 {
  color: var(--text-dark);
}

.feature-box:hover p {
  color: var(--text-muted);
}

.feature-box .feat-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 94, 20, 0.1);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-box:hover .feat-icon {
  background: var(--primary);
  color: #ffffff;
}

.feature-box h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  transition: var(--transition);
}

/* ==========================================================================
   ABOUT SECTION (Industo High-End Industrial Layout & Animations)
   ========================================================================== */

.about-section {
  padding: 90px 0 110px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 55px;
  align-items: start;
}

.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: -6px;
  transition: var(--transition);
}

.about-img-frame {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-md);
  padding: 10px;
  background: #ffffff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 65px;
  height: 65px;
  border-top: 5px solid var(--primary);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-sm) 0 0 0;
  z-index: 5;
  pointer-events: none;
  animation: cornerGlow 3.5s ease-in-out infinite alternate;
}

.about-img-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65px;
  height: 65px;
  border-bottom: 5px solid var(--primary);
  border-right: 5px solid var(--primary);
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 5;
  pointer-events: none;
  animation: cornerGlow 3.5s ease-in-out infinite alternate 1.5s;
}

@keyframes cornerGlow {
  0% { filter: drop-shadow(0 0 2px var(--primary)); opacity: 0.85; }
  100% { filter: drop-shadow(0 0 12px var(--primary)); opacity: 1; }
}

/* About Product Image Carousel / Slider */
.about-slider-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #ffffff;
}

.about-slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.about-slide-card {
  min-width: 100%;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 60px;
  background: radial-gradient(circle at 50% 45%, rgba(255, 94, 20, 0.1) 0%, #f4f6fa 65%, #edf1f7 100%);
  position: relative;
  user-select: none;
}

/* 3D Pedestal Shadow under the equipment */
.about-slide-card::before {
  content: '';
  position: absolute;
  bottom: 70px;
  width: 65%;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.08) 50%, transparent 75%);
  filter: blur(5px);
  z-index: 1;
  animation: pedestalPulse 4s ease-in-out infinite alternate;
}

@keyframes pedestalPulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.08); opacity: 0.95; }
}

.about-slide-card img {
  max-height: 330px;
  max-width: 95%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.2));
  position: relative;
  z-index: 2;
  animation: equipmentFloat 4.2s ease-in-out infinite alternate;
  transition: transform 0.5s ease;
}

@keyframes equipmentFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-12px) scale(1.02); }
}

.about-slide-card:hover img {
  transform: scale(1.08) translateY(-14px);
}

.about-slide-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, rgba(17, 20, 24, 0.95) 0%, rgba(28, 33, 40, 0.92) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35), 0 0 15px rgba(255, 94, 20, 0.2);
  border: 1.5px solid var(--primary);
  max-width: 58%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 5;
  transition: var(--transition);
}

.about-slide-tag:hover {
  background: var(--dark-hero);
  border-color: #ff7d3b;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 94, 20, 0.4);
}

.about-slide-tag .tag-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  box-shadow: 0 0 10px var(--primary);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.8; }
}

/* ==========================================================================
   ABOUT PAGE ORGANIZED INDUSTO LAYOUT
   ========================================================================== */

.about-page-layout {
  padding: 110px 0 90px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-page-layout .about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.about-title-wrap {
  position: relative;
  margin-bottom: 24px;
}

.about-title-wrap .hollow-watermark {
  position: absolute;
  top: -45px;
  left: -8px;
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.07);
  text-transform: capitalize;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}

.about-title-wrap .about-subtitle {
  color: #ff5e14;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.about-title-wrap h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: #111418;
  line-height: 1.25;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.about-title-wrap h2 span {
  color: #111418;
}

.about-title-accent {
  width: 50px;
  height: 3.5px;
  background: #ff5e14;
  border-radius: 2px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   ABOUT PAGE ORGANIZED INDUSTO LAYOUT & SMOOTH TRANSITIONS
   ========================================================================== */

.about-page-layout {
  padding: 110px 0 90px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-page-layout .about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.about-desc {
  font-size: 0.98rem;
  color: #555e6d;
  line-height: 1.8;
  margin-bottom: 34px;
  animation: aboutContentFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
  transition: color 0.3s ease;
}

.about-features-duo {
  display: flex;
  gap: 36px;
  align-items: center;
  margin-bottom: 38px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.about-feature-unit {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-features-duo .about-feature-unit:nth-child(1) {
  animation: aboutFeaturePopIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.about-features-duo .about-feature-unit:nth-child(2) {
  animation: aboutFeaturePopIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.about-feature-unit:hover {
  background: rgba(255, 94, 20, 0.04);
  transform: translateX(4px);
}

.feature-icon-circle {
  width: 58px;
  height: 58px;
  border: 2px solid #ff5e14;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5e14;
  font-size: 1.4rem;
  flex-shrink: 0;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 94, 20, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-icon-circle i {
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-feature-unit:hover .feature-icon-circle {
  background: linear-gradient(135deg, #ff5e14 0%, #e04604 100%);
  color: #ffffff;
  transform: scale(1.12);
  box-shadow: 0 8px 22px rgba(255, 94, 20, 0.45);
}

.about-feature-unit:hover .feature-icon-circle i {
  transform: rotate(15deg) scale(1.08);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 900;
  color: #111418;
  letter-spacing: 0.03em;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.about-feature-unit:hover .feature-title {
  color: #ff5e14;
}

.about-action-strip {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: aboutContentFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.about-main-btn {
  background: linear-gradient(135deg, #ff5e14 0%, #e04604 100%) !important;
  padding: 16px 36px !important;
  font-weight: 800 !important;
  border-radius: 4px !important;
  box-shadow: 0 10px 25px rgba(255, 94, 20, 0.35) !important;
  font-size: 0.92rem !important;
  letter-spacing: 0.04em !important;
  color: #ffffff !important;
  text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.about-main-btn:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 35px rgba(255, 94, 20, 0.55) !important;
}

.about-main-btn i {
  transition: transform 0.3s ease;
}

.about-main-btn:hover i {
  transform: translateX(5px);
}

.about-help-call {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.about-help-call:hover {
  transform: translateX(3px);
}

.help-call-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f4f6f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111418;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-help-call:hover .help-call-icon {
  background: linear-gradient(135deg, #ff5e14 0%, #e04604 100%);
  color: #ffffff;
  transform: scale(1.12);
  box-shadow: 0 8px 20px rgba(255, 94, 20, 0.45);
}

.about-help-call:hover .help-call-icon i {
  animation: phoneRing 0.8s ease-in-out;
}

.help-label {
  display: block;
  font-size: 0.8rem;
  color: #718096;
  font-weight: 600;
  margin-bottom: 2px;
  transition: color 0.3s ease;
}

.help-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 900;
  color: #111418;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.about-help-call:hover .help-phone {
  color: #ff5e14;
  text-shadow: 0 0 10px rgba(255, 94, 20, 0.3);
}

/* Right Visual Column */
.about-visual-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-top-stats {
  display: flex;
  gap: 50px;
  padding-left: 20px;
  animation: aboutContentFadeDown 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.stat-counter-block {
  cursor: default;
  transition: transform 0.35s ease;
}

.stat-counter-block:hover {
  transform: translateY(-4px);
}

.stat-big-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: #ff5e14;
  line-height: 1;
  margin-bottom: 6px;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.stat-counter-block:hover .stat-big-num {
  text-shadow: 0 0 15px rgba(255, 94, 20, 0.4);
}

.stat-sublabel {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #111418;
  transition: color 0.3s ease;
}

.stat-counter-block:hover .stat-sublabel {
  color: #ff5e14;
}

/* Staggered Entrance Keyframes */
@keyframes aboutContentFadeUp {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutContentFadeDown {
  0% {
    opacity: 0;
    transform: translateY(-22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutFeaturePopIn {
  0% {
    opacity: 0;
    transform: translateX(-28px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* ==========================================================================
   STACKED CARDS PEEK SLIDER (Images Stacked on Top with 10% Behind Visible)
   ========================================================================== */

.stacked-deck-showcase {
  position: relative;
  width: 100%;
  padding-right: 30px;
  padding-bottom: 10px;
}

.stacked-deck-container {
  position: relative;
  width: 100%;
  height: 460px;
  perspective: 1200px;
}

.stack-card {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 30px);
  height: 440px;
  border-radius: 26px;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transform-origin: center center;
  transition: 
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.75s ease,
    filter 0.75s ease;
  user-select: none;
}

/* Position 0: Active Card in front */
.stack-card.pos-0 {
  z-index: 10;
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  filter: brightness(1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22), 0 0 25px rgba(255, 94, 20, 0.14);
  pointer-events: auto;
}

/* Position 1: 10% Visible Peeking behind on right and bottom */
.stack-card.pos-1 {
  z-index: 8;
  transform: translate3d(22px, 16px, 0) scale(0.94);
  opacity: 0.92;
  filter: brightness(0.92);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.14);
  pointer-events: none;
}

/* Position 2: Further behind peeking */
.stack-card.pos-2 {
  z-index: 6;
  transform: translate3d(42px, 30px, 0) scale(0.88);
  opacity: 0.65;
  filter: brightness(0.82);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

/* Hidden in Queue */
.stack-card.pos-hidden {
  z-index: 1;
  transform: translate3d(52px, 36px, 0) scale(0.82);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Slide Out Animation to left when cycling */
.stack-card.pos-slide-out {
  z-index: 15;
  transform: translate3d(-115%, -10px, 0) rotate(-6deg) scale(0.92);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.65s cubic-bezier(0.3, 0, 0.8, 1), opacity 0.5s ease;
}

/* Slide Out Reverse (when clicking prev) */
.stack-card.pos-slide-out-rev {
  z-index: 15;
  transform: translate3d(115%, 10px, 0) rotate(6deg) scale(0.92);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.65s cubic-bezier(0.3, 0, 0.8, 1), opacity 0.5s ease;
}

.stack-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: radial-gradient(circle at center, #222934 0%, #0c0e13 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.stack-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  display: block;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.35));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stack-card.pos-0:hover .stack-card-img {
  transform: scale(1.04);
}

.stack-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 14, 19, 0.95) 45%, #07090c 100%);
  padding: 28px 22px 16px 22px;
  color: #ffffff;
  z-index: 2;
}

.stack-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ff5e14;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.stack-card-caption h4 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.stack-card-counter {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(17, 20, 24, 0.85);
  backdrop-filter: blur(8px);
  color: #ff5e14;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 94, 20, 0.35);
  z-index: 2;
}

/* Controls */
.stacked-deck-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  width: calc(100% - 36px);
}

.deck-nav-btns {
  display: flex;
  gap: 8px;
}

.deck-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4f6f9;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #111418;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.deck-nav-btn:hover {
  background: #ff5e14;
  color: #ffffff;
  border-color: #ff5e14;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(255, 94, 20, 0.35);
}

.deck-progress-track {
  flex: 1;
  height: 4px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.deck-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff5e14, #ff782d);
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(255, 94, 20, 0.6);
}

.deck-dots {
  display: flex;
  gap: 6px;
}

.deck-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.deck-dot.active {
  width: 18px;
  border-radius: 8px;
  background: #ff5e14;
  box-shadow: 0 0 8px rgba(255, 94, 20, 0.6);
}

.book-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, visibility 0.65s;
  z-index: 1;
  pointer-events: none;
}

.book-page.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
  z-index: 3;
  pointer-events: auto;
}

.book-page.slide-out-left {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  z-index: 2;
  pointer-events: none;
}

.book-page.slide-out-right {
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  z-index: 2;
  pointer-events: none;
}

.page-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #1b212c 0%, #0a0d12 100%);
  overflow: hidden;
}

.page-inner .album-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
  transition: transform 0.5s ease;
}

.page-inner:hover .album-img {
  transform: scale(1.05);
}

.page-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 13, 18, 0.95) 40%, #06080b 100%);
  padding: 24px 18px 14px 18px;
  color: #ffffff;
}

.caption-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ff5e14;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.page-caption h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

/* Album Footer Bar & Progress */
.album-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 0 4px;
}

.album-nav-btns {
  display: flex;
  gap: 6px;
}

.album-nav-btn {
  width: 32px;
  height: 32px;
  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;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.album-nav-btn:hover {
  background: #ff5e14;
  border-color: #ff5e14;
  transform: scale(1.1);
}

/* 2-Second Progress Line */
.album-progress-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.album-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff5e14, #ff8c42);
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(255, 94, 20, 0.8);
}

.album-dots {
  display: flex;
  gap: 6px;
}

.album-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.album-dot.active {
  width: 18px;
  border-radius: 8px;
  background: #ff5e14;
  box-shadow: 0 0 8px #ff5e14;
}

@media (max-width: 991px) {
  .about-page-layout .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-top-stats {
    padding-left: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .about-features-duo {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .about-title-wrap h2 {
    font-size: 2rem;
  }
  .about-title-wrap .hollow-watermark {
    font-size: 4rem;
    top: -25px;
  }
}

.about-slider-dots {
  position: absolute;
  top: 18px;
  right: 20px;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 6;
  background: rgba(17, 20, 24, 0.6);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-dot.active {
  width: 22px;
  border-radius: 10px;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(255, 94, 20, 0.8);
}

/* About Slider Navigation Buttons (Next / Prev on sides) */
.about-slider-nav {
  position: static;
}

.about-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(17, 20, 24, 0.8);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  z-index: 10;
}

.about-slider-btn.prev {
  left: 14px;
}

.about-slider-btn.next {
  right: 14px;
}

.about-slider-btn.prev:hover,
.about-slider-btn.next:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 20px rgba(255, 94, 20, 0.5);
}

.about-slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

/* Floating Experience Badge with Brand Orange Background & Glowing Aura */
.about-exp-badge {
  position: absolute;
  bottom: 64px;
  right: -16px;
  background: linear-gradient(135deg, #ff5e14 0%, #ff7324 50%, #e04604 100%);
  color: #ffffff;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 35px rgba(255, 94, 20, 0.55), 0 25px 50px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  z-index: 6;
  text-align: left;
  animation: floatBadgeGlow 4s ease-in-out infinite, auraGlowPulse 3s ease-in-out infinite alternate;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  min-width: 210px;
}

.about-exp-badge:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 0 50px rgba(255, 94, 20, 0.8), 0 30px 60px rgba(0, 0, 0, 0.45);
  border-color: #ffffff;
}

@keyframes floatBadgeGlow {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes auraGlowPulse {
  0% {
    box-shadow: 0 0 25px rgba(255, 94, 20, 0.45), 0 20px 45px rgba(0, 0, 0, 0.35);
  }
  100% {
    box-shadow: 0 0 50px rgba(255, 94, 20, 0.75), 0 25px 55px rgba(0, 0, 0, 0.45);
  }
}

.about-exp-badge .badge-top-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.about-exp-badge .badge-icon-pill {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  animation: iconPulse 2.5s ease-in-out infinite alternate;
}

@keyframes iconPulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); box-shadow: 0 0 22px rgba(255, 255, 255, 0.9); }
}

.about-exp-badge .exp-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  color: #ffffff;
}

.about-exp-badge .exp-num .counter {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.about-exp-badge .exp-num .plus-sign {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 900;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-left: 2px;
}

.about-exp-badge .exp-text strong {
  display: block;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.about-exp-badge .exp-text span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 3px;
}

.stamp-center-core {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5e14 0%, #e04604 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(255, 94, 20, 0.65);
  z-index: 3;
  text-align: center;
  border: 2px solid #ffffff;
}

/* Rotating Circular Text & Gear Engineering Stamp */
.industrial-gear-stamp {
  position: absolute;
  top: -32px;
  left: -32px;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatStamp 4s ease-in-out infinite alternate;
  user-select: none;
}

@keyframes floatStamp {
  0% { transform: translateY(0); }
  100% { transform: translateY(10px); }
}

.rotating-stamp-body {
  position: relative;
  width: 146px;
  height: 146px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16), 0 0 22px rgba(255, 94, 20, 0.25);
  border: 4px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.rotating-stamp-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: spinCircle 18s linear infinite;
  transform-origin: center center;
}

@keyframes spinCircle {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.circle-stamp-text {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  fill: #111418;
  text-transform: uppercase;
}

.stamp-center-core {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff1a1a 0%, #ff5e14 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(255, 94, 20, 0.65);
  z-index: 3;
  text-align: center;
  border: 2px solid #ffffff;
}

.stamp-center-core i {
  font-size: 1.3rem;
  color: #ffffff;
  animation: iconPulse 2s ease-in-out infinite alternate;
}

.stamp-center-core span {
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Interlocking Secondary Rotating Gear */
.interlocking-gear-accent {
  position: absolute;
  bottom: -20px;
  right: -22px;
  width: 78px;
  height: 78px;
  color: rgba(255, 94, 20, 0.35);
  font-size: 4.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinReverse 22s linear infinite;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

@keyframes spinReverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

.about-gear-bg {
  position: absolute;
  top: -40px;
  left: -40px;
  font-size: 14rem;
  color: rgba(255, 94, 20, 0.05);
  z-index: 1;
  animation: spinSlow 35s linear infinite;
  pointer-events: none;
}

/* Right Content Area Animations & Typography */
.about-content {
  position: relative;
}

.about-content .sec-title .title-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: fadeInDown 0.8s ease forwards;
}

.about-content .sec-title h2.animated-about-heading {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 22px;
  position: relative;
}

.about-content .anim-heading-top {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: #0f1216;
  -webkit-text-fill-color: #0f1216;
  line-height: 1.2;
  animation: aboutTextSlideIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes aboutTextSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-35px) scale(0.97);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

.about-content .anim-heading-highlight {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1.2;
  margin-top: 4px;
  background: linear-gradient(90deg, #ff5e14 0%, #ff9e2c 25%, #ffffff 50%, #ff5e14 75%, #ff4500 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: aboutTextPopIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both, gradientShimmer 4s linear infinite;
  text-shadow: none;
}

@keyframes aboutTextPopIn {
  0% {
    opacity: 0;
    transform: translateY(25px) scale(0.92);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.about-content .anim-heading-line {
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
  border-radius: 4px;
  margin-top: 12px;
  width: 80px;
  box-shadow: 0 0 10px rgba(255, 94, 20, 0.6);
  animation: expandLine 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

@keyframes expandLine {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 80px;
    opacity: 1;
  }
}

.about-content .lead-box {
  background: linear-gradient(135deg, rgba(255, 94, 20, 0.06) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-left: 4px solid var(--primary);
  padding: 18px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-content .lead-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
}

.about-content .lead-box:hover {
  transform: translateX(6px);
  background: linear-gradient(135deg, rgba(255, 94, 20, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
  box-shadow: 0 8px 22px rgba(255, 94, 20, 0.1);
}

.about-content .lead-box p {
  font-size: 1.06rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
}

.about-content .body-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.75;
}

/* Feature Points Grid - Modernized Interactive Cards in Single Line */
.about-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 10px;
}

.about-point-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: #f8fafc;
  border-radius: var(--radius-sm);
  border: 1px solid #e5e9f0;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  will-change: transform;
}

.about-point-item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 8px;
  background: transparent;
  pointer-events: auto;
}

.about-point-item:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 94, 20, 0.12);
}

.about-point-item .point-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 94, 20, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.about-point-item:hover .point-icon {
  background: var(--primary);
  color: #ffffff;
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 0 12px rgba(255, 94, 20, 0.5);
}

.about-point-item span {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.3;
  transition: color 0.3s ease;
}

.about-point-item:hover span {
  color: var(--primary);
}

.about-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
  position: relative;
  z-index: 5;
  width: 100%;
}

.about-cta-row .theme-btn {
  flex-shrink: 0;
  padding: 14px 28px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-call-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: #f8fafc;
  border: 1px solid #e5e9f0;
  transition: var(--transition);
  flex: 1;
  min-width: 220px;
}

.about-call-box:hover {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.about-call-box .call-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-hero);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition);
  animation: phoneRing 4s ease-in-out infinite;
  flex-shrink: 0;
}

.about-call-box:hover .call-icon {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 94, 20, 0.5);
}

.about-call-box .call-info span {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: block;
}

.about-call-box .call-info strong {
  font-size: 1.02rem;
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 800;
}

/* ==========================================================================
   PRODUCTS CATALOG SHOWCASE (Industo Style with Interactive Filter)
   ========================================================================== */

.products-section {
  padding: 100px 0;
  background: var(--industrial-grey);
  position: relative;
}

.products-filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 45px;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid var(--industrial-border);
  color: var(--text-dark);
  padding: 10px 22px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(255, 94, 20, 0.3);
}

.product-search-box {
  max-width: 450px;
  margin: 0 auto 40px;
  position: relative;
}

.product-search-box input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 2px solid var(--industrial-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.product-search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 94, 20, 0.15);
}

.product-search-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ==========================================================================
   POPULAR PRODUCTS CAROUSEL (Industo Circular Stage Component)
   ========================================================================== */

.popular-products-section {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
  padding: 95px 0;
}

.popular-products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(21, 24, 28, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.popular-products-viewport {
  overflow: hidden;
  width: 100%;
  padding: 50px 10px 30px 10px;
  margin: 0 -10px;
  position: relative;
}

.popular-products-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.popular-prod-slide {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 14px;
  box-sizing: border-box;
}

@media (max-width: 1199px) {
  .popular-prod-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .popular-prod-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.popular-prod-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #eef2f6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: calc(100% - 30px);
  overflow: hidden;
  will-change: transform;
}

.popular-prod-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 12px;
  background: transparent;
  pointer-events: auto;
}

.popular-prod-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(255, 94, 20, 0.16), 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(255, 94, 20, 0.45);
}

/* Big Image Showcase Box (Image is Hero) */
.popular-prod-img-box {
  height: 300px;
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f8fafc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  position: relative;
  border-bottom: 1px solid #f1f4f9;
  overflow: hidden;
}

.popular-prod-img-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.popular-prod-img-box img {
  width: 300px;
  height: 300px;
  max-height: 300px;
  max-width: 300px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.1));
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease;
}

.popular-prod-card:hover .popular-prod-img-box img {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 16px 24px rgba(255, 94, 20, 0.22));
}

/* Product Card Content */
.popular-prod-body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.popular-prod-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f1216;
  line-height: 1.35;
  margin-bottom: 18px;
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.popular-prod-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.popular-prod-card:hover .popular-prod-title,
.popular-prod-title a:hover {
  color: var(--primary);
}

/* Action Button */
.popular-prod-action {
  margin-top: auto;
}

.popular-prod-btn {
  background: linear-gradient(135deg, #ff8542 0%, #ff6821 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 11px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 104, 33, 0.24);
  transition: all 0.3s ease;
}

.popular-prod-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 104, 33, 0.38);
  background: linear-gradient(135deg, #ff965b 0%, #ff7b38 100%);
  color: #ffffff;
}

.popular-prod-btn i {
  font-size: 0.82rem;
  transition: transform 0.3s ease;
}

.popular-prod-btn:hover i {
  transform: translateX(4px);
}

/* Bottom Pagination & Navigation Controls (← 01 / 03 →) */
.popular-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
}

.carousel-ctrl-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.carousel-ctrl-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 8px 22px rgba(255, 94, 20, 0.4);
}

.carousel-page-counter {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.carousel-page-counter .curr-page {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 800;
}

.carousel-page-counter .divider {
  color: var(--text-muted);
}

.carousel-page-counter .total-page {
  color: var(--text-dark);
  font-weight: 700;
}

/* ==========================================================================
   CATALOG LAYOUT, SIDEBAR FILTERS & ENHANCED SEARCH
   ========================================================================== */

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 26px;
  align-items: start;
  margin-top: 10px;
}

/* Sidebar Styling */
.catalog-sidebar {
  position: sticky;
  top: 110px;
  background: #ffffff;
  border: 1px solid var(--industrial-border);
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.sidebar-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #f0f2f5;
}

.sidebar-filter-header h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.sidebar-filter-header h4 i {
  color: var(--primary);
  font-size: 0.95rem;
}

.btn-reset-filters {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-reset-filters:hover {
  background: rgba(255, 94, 20, 0.1);
  color: #d04000;
}

/* Category Search Mini Box */
.cat-mini-search {
  position: relative;
  margin-bottom: 14px;
}

.cat-mini-search input {
  width: 100%;
  padding: 8px 30px 8px 34px;
  font-size: 0.82rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  background: #f8fafc;
  outline: none;
  transition: all 0.2s ease;
  color: var(--text-dark);
}

.cat-mini-search input:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.1);
}

.cat-mini-search > i {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.8rem;
  pointer-events: none;
}

.cat-mini-search .cat-search-clear-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 0.78rem;
  cursor: pointer;
  padding: 4px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.cat-mini-search .cat-search-clear-btn:hover {
  color: var(--primary);
}

.cat-no-results {
  padding: 16px 10px;
  font-size: 0.82rem;
  color: #64748b;
  text-align: center;
  background: #f8fafc;
  border-radius: 6px;
  border: 1px dashed #cbd5e1;
  margin: 6px 0;
  line-height: 1.4;
}

/* Styled Category Checkbox List */
.category-checkbox-list {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.category-checkbox-list::-webkit-scrollbar {
  width: 5px;
}

.category-checkbox-list::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.category-checkbox-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.category-checkbox-list::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.cat-checkbox-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  font-size: 0.86rem;
  color: #334155;
}

.cat-checkbox-item:hover {
  background: #f1f5f9;
  color: var(--text-dark);
}

.cat-checkbox-item.is-selected {
  background: rgba(255, 94, 20, 0.09);
  color: var(--primary);
  font-weight: 700;
}

.cat-checkbox-label-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
  overflow: hidden;
}

.cat-custom-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  border: 1.5px solid #cbd5e1;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
  background: #ffffff;
}

.cat-custom-checkbox:checked {
  background: var(--primary);
  border-color: var(--primary);
}

.cat-custom-checkbox:checked::after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cat-checkbox-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cat-checkbox-count {
  font-size: 0.72rem;
  background: #f1f5f9;
  color: #64748b;
  padding: 2px 7px;
  border-radius: 10px;
  font-weight: 600;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.cat-checkbox-item.is-selected .cat-checkbox-count {
  background: var(--primary);
  color: #ffffff;
}

/* Sidebar Quick Help Card */
.sidebar-help-card {
  margin-top: 20px;
  padding: 16px;
  background: var(--dark-hero);
  border-radius: 8px;
  color: #ffffff;
  text-align: center;
}

.sidebar-help-card h5 {
  color: #ffffff;
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.sidebar-help-card p {
  color: #94a3b8;
  font-size: 0.76rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.sidebar-help-card .btn-help-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  width: 100%;
  transition: all 0.25s ease;
}

.sidebar-help-card .btn-help-call:hover {
  background: #e04e0a;
}

/* Enhanced Main Search Bar */
.enhanced-search-container {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1.5px solid var(--industrial-border);
  border-radius: 10px;
  padding: 8px 18px;
  margin-bottom: 22px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  position: relative;
}

.enhanced-search-container:focus-within {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(255, 94, 20, 0.15);
}

.enhanced-search-icon {
  color: var(--primary);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.enhanced-search-input {
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-dark);
  width: 100%;
  background: transparent;
}

.enhanced-search-input::placeholder {
  color: #94a3b8;
}

.search-clear-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.search-clear-btn:hover {
  color: var(--primary);
}

.search-result-pill {
  font-size: 0.78rem;
  font-weight: 700;
  background: #f1f5f9;
  color: #475569;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
}

.search-result-pill span {
  color: var(--primary);
}

/* Mobile Filter Trigger Button */
.mobile-filter-trigger {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 18px;
  background: #ffffff;
  border: 1.5px solid var(--industrial-border);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  cursor: pointer;
  margin-bottom: 16px;
}

@media (max-width: 991px) {
  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mobile-filter-trigger {
    display: flex;
  }

  .catalog-sidebar {
    display: none;
    position: static;
    margin-bottom: 20px;
  }

  .catalog-sidebar.is-open {
    display: block;
  }
}

/* Active Category Intro Banner */
.category-intro-banner {
  background: #f8fafc;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 22px;
  border-top: 1px solid #eef2f6;
  border-right: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-intro-content {
  width: 100%;
}

.category-intro-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.category-intro-header h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  font-weight: 800;
  margin: 0;
  line-height: 1.25;
}

.category-intro-count {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(255, 94, 20, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.category-intro-banner p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* 3 Cards Per Row Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1199px) and (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--industrial-border);
  transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

/* Directional Scroll Reveal Animations */
.product-card.card-reveal-left {
  opacity: 0;
  transform: translateX(-50px) translateY(10px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.4s ease, 
              box-shadow 0.4s ease, 
              border-color 0.4s ease;
  will-change: transform, opacity;
}

.product-card.card-reveal-center {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.4s ease, 
              box-shadow 0.4s ease, 
              border-color 0.4s ease;
  will-change: transform, opacity;
}

.product-card.card-reveal-right {
  opacity: 0;
  transform: translateX(50px) translateY(10px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.4s ease, 
              box-shadow 0.4s ease, 
              border-color 0.4s ease;
  will-change: transform, opacity;
}

.product-card.card-reveal-left.is-revealed,
.product-card.card-reveal-center.is-revealed,
.product-card.card-reveal-right.is-revealed {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 2;
}

.product-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 12px;
  background: transparent;
  pointer-events: auto;
}

.product-card:hover,
.product-card.card-reveal-left.is-revealed:hover,
.product-card.card-reveal-center.is-revealed:hover,
.product-card.card-reveal-right.is-revealed:hover {
  background: #1b2028;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
  border-color: rgba(255, 94, 20, 0.45);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-img-wrap {
  position: relative;
  background: #ffffff;
  margin: 14px auto 14px auto;
  border-radius: 10px;
  padding: 0;
  text-align: center;
  width: calc(100% - 28px);
  max-width: 300px;
  height: 300px;
  max-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #edf2f7;
  overflow: hidden;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.product-card:hover .product-img-wrap {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
}

.product-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  max-height: 300px !important;
  max-width: 300px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  border-radius: 10px !important;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--dark-hero);
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 1;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.product-card:hover .product-badge {
  background: var(--primary);
  color: #ffffff;
}

.product-body {
  padding: 20px 18px 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-body h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
  line-height: 1.35;
  font-weight: 700;
  transition: color 0.4s ease;
}

.product-body h4 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}

.product-card:hover .product-body h4,
.product-card:hover .product-body h4 a {
  color: #ffffff !important;
}

.product-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.4s ease;
}

.product-card:hover .product-body p {
  color: #b0bac9;
}

.product-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f0f3f6;
  display: flex;
  width: 100%;
  transition: border-color 0.4s ease;
}

.product-card:hover .product-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.btn-enquire {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  background: #f8fafc;
  color: var(--text-dark);
  border: 1px solid var(--industrial-border);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.35s ease;
  cursor: pointer;
}

.product-card:hover .btn-enquire {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 94, 20, 0.35);
}

.btn-enquire:hover {
  background: #e04e0a;
  border-color: #e04e0a;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(255, 94, 20, 0.45);
  transform: translateY(-1px);
}

/* ==========================================================================
   SERVICES SECTION (Industo Industrial Dark Aesthetics)
   ========================================================================== */

.services-section {
  padding: 100px 0;
  background: var(--dark-hero);
  color: #ffffff;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.4s ease, transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transition: width 0.4s ease, background 0.4s ease;
}

.service-card:hover {
  background: #1f252e;
  transform: translateY(-8px);
  border-color: rgba(255, 94, 20, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.service-card:hover::before {
  width: 8px;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: rgba(255, 94, 20, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.service-card h4 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

.service-features-list {
  margin-bottom: 24px;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.service-features-list li i {
  color: var(--primary);
  font-size: 0.8rem;
}

/* ==========================================================================
   WHY CHOOSE US / COMPANY STRENGTHS GRID (Dark Factory Atmosphere)
   ========================================================================== */

.why-choose-section {
  padding: 110px 0;
  background: #0b0e14;
  position: relative;
  overflow: hidden;
}

.dark-strengths-section {
  background: #090c10;
}

.strengths-factory-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/site/strengths_factory_bg.jpg');
  background-size: cover;
  background-position: center center;
  opacity: 0.32;
  filter: saturate(1.2) contrast(1.15);
  animation: ambientZoom 22s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes ambientZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.strengths-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(13, 17, 23, 0.72) 0%, rgba(9, 12, 16, 0.96) 100%), linear-gradient(180deg, #090c10 0%, transparent 20%, transparent 80%, #090c10 100%);
  pointer-events: none;
  z-index: 1;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* Glassmorphism Dark Strength Card with Chamfered Shape */
.strength-card {
  padding: 42px 32px 36px 32px;
  background: rgba(18, 23, 31, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  position: relative;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
  z-index: 1;
  will-change: transform;
}

.strength-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 12px;
  background: transparent;
  pointer-events: auto;
}

.strength-card:hover {
  background: rgba(28, 35, 48, 0.95);
  border-color: rgba(255, 94, 20, 0.6);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 94, 20, 0.35);
  transform: translateY(-8px);
}

.strength-card .str-watermark-num {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 4.2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 0;
}

.strength-card:hover .str-watermark-num {
  color: rgba(255, 94, 20, 0.22);
  transform: scale(1.1) translateY(-4px);
}

.strength-card .str-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff5e14 0%, #e04604 100%);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  margin-left: 6px;
  box-shadow: 0 0 20px rgba(255, 94, 20, 0.5);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.strength-card .str-icon-wrap i {
  transform: rotate(-45deg);
  color: #ffffff;
  font-size: 1.4rem;
  transition: transform 0.5s ease;
}

.strength-card:hover .str-icon-wrap {
  transform: rotate(405deg) scale(1.12);
  box-shadow: 0 0 30px rgba(255, 94, 20, 0.9);
}

.strength-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
  line-height: 1.35;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.strength-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.strength-card:hover p {
  color: #ffffff;
}

/* Bottom Glowing Expand Bar */
.strength-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #ff5e14 0%, #ff7b2b 100%);
  box-shadow: 0 0 14px rgba(255, 94, 20, 0.85);
  transition: width 0.45s ease;
  z-index: 2;
}

.strength-card:hover::after {
  width: 100%;
}

/* ==========================================================================
   GALLERY & PROJECT SHOWCASE SECTION
   ========================================================================== */

.gallery-section {
  padding: 100px 0;
  background: var(--industrial-grey);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  height: 240px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 0.5s ease;
}

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 20, 24, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay h5 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 6px;
}

.gallery-overlay span {
  color: var(--primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.gallery-overlay .zoom-icon {
  margin-top: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* ==========================================================================
   FAQ & ASSURANCE SECTION
   ========================================================================== */

.faq-section {
  padding: 100px 0;
  background: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--industrial-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: #ffffff;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-question i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.assurance-card {
  background: var(--dark-hero);
  color: #ffffff;
  padding: 40px;
  border-radius: var(--radius-sm);
  border-left: 6px solid var(--primary);
}

.assurance-card h3 {
  color: #ffffff;
  margin-bottom: 18px;
}

.assurance-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.assurance-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #ffffff;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.assurance-list li i {
  color: var(--primary);
  margin-top: 4px;
}

/* ==========================================================================
   CONTACT / QUICK QUOTE SECTION (Industo Industrial Form)
   ========================================================================== */

.contact-section {
  padding: 100px 0;
  background: var(--industrial-grey);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Left Panel: Glides in smoothly from the LEFT */
.contact-info-panel {
  background: var(--dark-hero);
  color: #ffffff;
  padding: 45px 36px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  
  /* Initial State Before Scroll: Slid from Left */
  opacity: 0;
  transform: translateX(-85px) scale(0.96);
  filter: blur(6px);
  will-change: transform, opacity, filter;
  transition: 
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}

/* Left Panel Vertical Animated Glowing Laser Rail */
.contact-info-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #ff5e14 0%, #ff9e2c 50%, #e04604 100%);
  background-size: 100% 200%;
  border-radius: 20px 0 0 20px;
  box-shadow: 0 0 16px rgba(255, 94, 20, 0.85);
  animation: laserRailPulse 4s ease infinite alternate;
}

@keyframes laserRailPulse {
  0% { background-position: 0% 0%; }
  100% { background-position: 0% 100%; }
}

.contact-info-panel.is-revealed {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.contact-info-panel:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.4);
}

.contact-info-panel h3 {
  color: #ffffff;
  margin-bottom: 14px;
}

.contact-info-panel p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-detail-item:hover {
  transform: translateX(6px);
}

.contact-detail-item .c-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 94, 20, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-detail-item:hover .c-icon {
  background: linear-gradient(135deg, #ff5e14 0%, #e04604 100%);
  color: #ffffff;
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 8px 20px rgba(255, 94, 20, 0.45);
}

.contact-detail-item .c-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.contact-detail-item .c-text strong {
  font-size: 0.98rem;
  color: #ffffff;
  line-height: 1.4;
  display: block;
}

/* Right Panel: Glides in smoothly from the RIGHT with Animated Top Laser Line */
.contact-form-panel {
  background: #ffffff;
  padding: 45px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--industrial-border);
  position: relative;
  overflow: hidden;
  
  /* Initial State Before Scroll: Slid from Right */
  opacity: 0;
  transform: translateX(85px) scale(0.96);
  filter: blur(6px);
  will-change: transform, opacity, filter;
  transition: 
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
    opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
    filter 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
    box-shadow 0.4s ease;
}

/* Form Top Continuous Animated Laser Bar */
.contact-form-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4.5px;
  background: linear-gradient(90deg, #ff5e14 0%, #ff9e2c 30%, #ff5e14 70%, #e04604 100%);
  background-size: 200% auto;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 0 16px rgba(255, 94, 20, 0.85);
  animation: gradientShimmer 3.2s linear infinite;
}

.contact-form-panel.is-revealed {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.contact-form-panel:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.contact-form-panel h3 {
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

/* Animated Accent Laser Line below Form Title */
.contact-form-panel h3::after {
  content: '';
  display: block;
  width: 42px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-top: 8px;
  box-shadow: 0 0 10px rgba(255, 94, 20, 0.6);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form-panel:hover h3::after {
  width: 65px;
}

.contact-form-panel p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 6px;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  background: #ffffff;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  background: #fffbf9;
  box-shadow: 0 0 0 4px rgba(255, 94, 20, 0.15), 0 4px 12px rgba(255, 94, 20, 0.08);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ==========================================================================
   INTERACTIVE FACTORY MAP SHOWCASE SECTION (Unique Shape & Animated Outline)
   ========================================================================== */

.map-showcase-section {
  padding: 95px 0 110px;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.map-card-wrapper {
  position: relative;
  width: 100%;
  height: 530px;
  border-radius: 16px;
  padding: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  opacity: 1;
  transform: none;
  filter: none;
}

.map-card-wrapper:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Inner Frame containing the map */
.map-inner-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #e5e7eb;
}

.map-inner-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
  border: none;
  display: block;
}

/* Floating Red/Orange Get Directions Button in Bottom Right */
.map-directions-btn {
  position: absolute;
  bottom: 26px;
  right: 26px;
  background: linear-gradient(135deg, #e52525 0%, #c41818 100%);
  color: #ffffff !important;
  padding: 13px 24px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(229, 37, 37, 0.45);
  z-index: 10;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-directions-btn:hover {
  background: linear-gradient(135deg, #ff5e14 0%, #e04604 100%);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 30px rgba(255, 94, 20, 0.55);
}

.map-directions-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.map-directions-btn:hover i {
  transform: scale(1.2);
}

@media (max-width: 767px) {
  .map-card-wrapper {
    height: 390px;
    border-radius: 14px;
  }
  .map-inner-frame {
    border-radius: 14px;
  }
  .map-directions-btn {
    bottom: 16px;
    right: 16px;
    padding: 10px 18px;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   FOOTER (Industo Signature Industrial 4-Column Footer)
   ========================================================================== */

.main-footer {
  background: #0d1013;
  color: var(--text-light);
  padding: 80px 0 0;
  position: relative;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-widget .widget-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget .widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--primary);
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-about .footer-logo img {
  height: 48px;
  background: #ffffff;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 22px;
  color: var(--text-light);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer-contact-list li i {
  color: var(--primary);
  margin-top: 4px;
  font-size: 1rem;
}

.footer-bottom {
  padding: 18px 0;
  background: #080a0c;
  font-size: 0.92rem;
  color: #e5e7eb;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .bottom-single-line {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  text-align: center;
  font-size: 0.92rem;
  color: #d1d5db;
}

.footer-bottom .bottom-single-line span {
  color: #e5e7eb;
  font-weight: 500;
}

.footer-bottom .footer-webjerry-link {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 4px;
  transition: all 0.3s ease;
  vertical-align: middle;
}

.footer-bottom .footer-webjerry-link:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 94, 20, 0.5);
}

.footer-bottom .footer-webjerry-img {
  height: 24px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-bottom a {
  color: var(--primary);
}

/* ==========================================================================
   MODALS, FLOATING WIDGETS & LIGHTBOX
   ========================================================================== */
/* ==========================================================================
   FLOATING QUICK ACTION CONTACT DOCK (WhatsApp, Call, Email & Back-To-Top)
   ========================================================================== */

.floating-contact-dock {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 800;
  align-items: flex-end;
}

.float-btn {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  outline: none;
}

.float-btn:hover {
  transform: scale(1.12) translateX(-4px);
  color: #ffffff;
}

.float-pulse-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  pointer-events: none;
}

/* Floating WhatsApp */
.float-btn.float-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  font-size: 1.65rem;
}

.float-btn.float-whatsapp .float-pulse-ring {
  border: 2.5px solid #25d366;
  animation: radarWave 2.4s ease-out infinite;
}

/* Floating Phone Call */
.float-btn.float-call {
  background: linear-gradient(135deg, #ff5e14 0%, #e04604 100%);
  font-size: 1.3rem;
  box-shadow: 0 10px 25px rgba(255, 94, 20, 0.38);
}

.float-btn.float-call .float-pulse-ring {
  border: 2.5px solid #ff5e14;
  animation: radarWave 2.4s ease-out 0.6s infinite;
}

.float-btn.float-call:hover {
  box-shadow: 0 12px 30px rgba(255, 94, 20, 0.65);
}

/* Phone Icons Exact Orientation (Flipped horizontally matching reference) */
.fa-phone,
.fa-phone-alt,
.fa-phone-volume {
  display: inline-block;
  transform: scaleX(-1);
  transform-origin: center center;
}

.float-btn.float-call i {
  display: inline-block;
  font-size: 1.25rem;
  transform: scaleX(-1);
  transform-origin: center center;
  animation: phoneRinging 2.5s ease-in-out infinite;
}

@keyframes phoneRinging {
  0%, 80%, 100% { transform: scaleX(-1) rotate(0deg); }
  85% { transform: scaleX(-1) rotate(14deg); }
  90% { transform: scaleX(-1) rotate(-14deg); }
  95% { transform: scaleX(-1) rotate(8deg); }
}

/* Floating Email */
.float-btn.float-email {
  background: linear-gradient(135deg, #1e2530 0%, #0f1217 100%);
  font-size: 1.25rem;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}

.float-btn.float-email .float-pulse-ring {
  border: 2.5px solid rgba(255, 255, 255, 0.75);
  animation: radarWave 2.4s ease-out 1.2s infinite;
}

.float-btn.float-email:hover {
  background: linear-gradient(135deg, #ff5e14 0%, #1e2530 100%);
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(255, 94, 20, 0.45);
}

@keyframes radarWave {
  0% { transform: scale(1); opacity: 0.95; }
  50% { opacity: 0.5; }
  100% { transform: scale(1.58); opacity: 0; }
}

/* Back to Top in Dock */
.float-btn.back-to-top {
  background: rgba(15, 18, 22, 0.94);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 1rem;
  width: 44px;
  height: 44px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s ease;
}

.float-btn.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.float-btn.back-to-top:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Floating Tooltips */
.float-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(15, 18, 22, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Modal Popup */
.quote-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.quote-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #ffffff;
  border-radius: var(--radius-md);
  max-width: 600px;
  width: 100%;
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-close-btn:hover {
  color: var(--primary);
}

/* ==========================================================================
   PAGE BANNER (For Inner Pages)
   ========================================================================== */

.page-banner {
  background: var(--dark-hero);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--primary);
}

.page-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.page-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-banner h1 {
  color: #ffffff;
  margin-bottom: 12px;
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumb-nav a {
  color: var(--primary);
}

.breadcrumb-nav span {
  color: var(--text-light);
}

/* ==========================================================================
   ACHIEVEMENTS & STATS COUNTER BAR (Industo Orange Brand Styling & Animations)
   ========================================================================== */

.achievements-bar-section {
  padding: 70px 0 80px 0;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 20px;
}

.achievement-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 24px;
  position: relative;
  border-radius: 18px;
  background: transparent;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.achievement-item:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 25px rgba(255, 94, 20, 0.12);
}

.achievement-item.has-left-divider::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 20%;
  height: 60%;
  width: 1.5px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.12), transparent);
  transition: opacity 0.3s ease;
}

.achievement-icon-circle {
  position: relative;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.achievement-item:hover .achievement-icon-circle {
  transform: scale(1.14) rotate(8deg);
}

.icon-solid-orange {
  background: linear-gradient(135deg, #ff5e14 0%, #ff7324 50%, #e04604 100%);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(255, 94, 20, 0.42);
}

.achievement-item:hover .icon-solid-orange {
  box-shadow: 0 14px 35px rgba(255, 94, 20, 0.7);
}

.icon-soft-orange {
  background: rgba(255, 94, 20, 0.1);
  color: #ff5e14;
  border: 1.5px solid rgba(255, 94, 20, 0.2);
}

.achievement-item:hover .icon-soft-orange {
  background: linear-gradient(135deg, #ff5e14 0%, #e04604 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(255, 94, 20, 0.55);
}

/* Pulsating Radar Wave around Icon */
.achievement-pulse-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid #ff5e14;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.achievement-item:hover .achievement-pulse-ring {
  animation: radarWave 2s ease-out infinite;
}

.achievement-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: #ff5e14;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  transition: transform 0.3s ease;
}

.achievement-item:hover .achievement-number {
  transform: scale(1.06);
}

.achievement-number .symbol-plus {
  color: #111418;
  font-weight: 900;
  margin-left: 2px;
}

.achievement-label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #111418;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.achievement-item:hover .achievement-label {
  color: #ff5e14;
}

/* Bottom Expanding Accent Line */
.achievement-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3.5px;
  background: linear-gradient(90deg, #ff5e14, #ff782d);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 94, 20, 0.8);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.achievement-item:hover::after {
  width: 60%;
}

@media (max-width: 767px) {
  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .achievement-item.has-left-divider::before {
    display: none;
  }
  .achievement-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 30px;
  }
  .achievement-item:last-child {
    border-bottom: none;
  }
}

/* ==========================================================================
   ABOUT PAGE VIDEO SHOWCASE SECTION (Clean Light Background & Crisp Modern Layout)
   ========================================================================== */

.video-showcase-section {
  padding: 100px 0 110px;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

/* Subtle Industrial Matrix Grid Pattern */
.video-showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.video-showcase-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.22fr;
  gap: 55px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.video-showcase-content {
  position: relative;
  z-index: 3;
}

.video-showcase-content .sec-title {
  margin-bottom: 24px;
}

.video-showcase-content .sec-subtext {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.video-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.video-feature-box {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  
  /* Initial State Before Scroll Reveal */
  opacity: 0;
  transform: translateX(-70px) scale(0.96);
  filter: blur(6px);
  will-change: transform, opacity, filter;
  transition: 
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.video-feature-box::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 10px;
  background: transparent;
  pointer-events: auto;
}

/* Staggered Delay for Each Box on Scroll */
.video-features-grid .video-feature-box:nth-child(1) { transition-delay: 0.1s; }
.video-features-grid .video-feature-box:nth-child(2) { transition-delay: 0.22s; }
.video-features-grid .video-feature-box:nth-child(3) { transition-delay: 0.34s; }
.video-features-grid .video-feature-box:nth-child(4) { transition-delay: 0.46s; }

/* Revealed State When Scrolled into View */
.video-feature-box.is-revealed {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

/* Top Accent Line expanding on hover */
.video-feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #ff5e14, #ff8c42);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 0 12px rgba(255, 94, 20, 0.8);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover Elevation and Glowing Halo */
.video-feature-box:hover {
  background: linear-gradient(180deg, #ffffff 0%, #fff6f2 100%);
  border-color: rgba(255, 94, 20, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(255, 94, 20, 0.12);
}

.video-feature-box:hover::before {
  width: 100%;
}

.video-feature-box i {
  font-size: 1.65rem;
  color: var(--primary);
  margin-bottom: 6px;
  display: inline-block;
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}

.video-feature-box:hover i {
  transform: scale(1.22) rotate(10deg);
  filter: drop-shadow(0 0 10px rgba(255, 94, 20, 0.5));
}

.video-feature-box h5 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 2px;
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  transition: color 0.3s ease, transform 0.3s ease;
}

.video-feature-box:hover h5 {
  color: var(--primary);
  transform: translateX(2px);
}

.video-feature-box p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.video-feature-box:hover p {
  color: var(--text-dark);
}

@keyframes videoFeatureFadeIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.video-showcase-media {
  position: relative;
  z-index: 2;
}

.video-player-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 25px 55px rgba(0, 0, 0, 0.12),
    0 0 25px rgba(255, 94, 20, 0.1);
  border: 2px solid #e2e8f0;
  background: #0f1216;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-player-wrapper:hover {
  border-color: var(--primary);
  box-shadow: 
    0 30px 65px rgba(0, 0, 0, 0.16),
    0 0 35px rgba(255, 94, 20, 0.25);
  transform: translateY(-4px);
}

.video-player-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Floating Corner Play / Live Tour Badge */
.video-corner-badge {
  position: absolute;
  top: -18px;
  right: -12px;
  background: #ffffff;
  border: 1.5px solid rgba(255, 94, 20, 0.45);
  border-radius: 30px;
  padding: 8px 18px 8px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 0 15px rgba(255, 94, 20, 0.15);
  z-index: 10;
  user-select: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: badgeFloatAnim 4s ease-in-out infinite alternate;
}

.video-corner-badge:hover {
  transform: translateY(-4px) scale(1.06);
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 14px 35px rgba(255, 94, 20, 0.3);
}

.corner-badge-icon {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5e14 0%, #e04604 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(255, 94, 20, 0.5);
  transition: transform 0.35s ease;
}

.video-corner-badge:hover .corner-badge-icon {
  transform: scale(1.1);
}

.corner-radar-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1.5px solid #ff5e14;
  animation: badgeRadarPulse 2.4s ease-out infinite;
  pointer-events: none;
}

.corner-badge-info {
  display: flex;
  flex-direction: column;
}

.corner-badge-info .badge-tag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.corner-badge-info strong {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

@keyframes badgeRadarPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@keyframes badgeFloatAnim {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-6px);
  }
}

@media (max-width: 991px) {
  .video-showcase-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .video-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   WHY CHOOSE US / BUSINESS PILLARS (Smooth On-Scroll Slide-In Transitions)
   ========================================================================== */

.why-choose-section {
  padding: 105px 0 115px;
  background: #f4f6f9;
  position: relative;
  overflow: hidden;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.strength-card {
  position: relative;
  background: #3b424e;
  border-radius: 24px;
  padding: 40px 30px 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  cursor: pointer;
  
  /* Initial State Before Scroll Reveal: Smooth Hidden & Offset */
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  filter: blur(5px);
  will-change: transform, opacity, filter;
  transition: 
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

/* Staggered Delay for Each Card on Scroll */
.strengths-grid .strength-card:nth-child(1) { transition-delay: 0.08s; }
.strengths-grid .strength-card:nth-child(2) { transition-delay: 0.18s; }
.strengths-grid .strength-card:nth-child(3) { transition-delay: 0.28s; }
.strengths-grid .strength-card:nth-child(4) { transition-delay: 0.38s; }
.strengths-grid .strength-card:nth-child(5) { transition-delay: 0.48s; }
.strengths-grid .strength-card:nth-child(6) { transition-delay: 0.58s; }

/* Revealed State When Scrolled into View */
.strength-card.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Hover Physics */
.strength-card:hover {
  transform: translateY(-8px) !important;
  background: #343b46;
  border-color: rgba(255, 94, 20, 0.65);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.28), 0 0 30px rgba(255, 94, 20, 0.25);
}

/* Diamond Icon Frame */
.strength-card .str-icon-wrap {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #ff5e14 0%, #e04604 100%);
  border-radius: 16px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  margin-left: 8px;
  box-shadow: 0 8px 22px rgba(255, 94, 20, 0.5);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  position: relative;
}

.strength-card .str-icon-wrap i {
  transform: rotate(-45deg);
  font-size: 1.45rem;
  color: #ffffff;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.strength-card:hover .str-icon-wrap {
  transform: rotate(55deg) scale(1.15);
  box-shadow: 0 12px 28px rgba(255, 94, 20, 0.75);
}

.strength-card:hover .str-icon-wrap i {
  transform: rotate(-55deg) scale(1.1);
}

.strength-card h4 {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  transition: color 0.3s ease, transform 0.3s ease;
}

.strength-card:hover h4 {
  color: #ff782d;
  transform: translateX(3px);
}

.strength-card p {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.68;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.strength-card:hover p {
  color: #ffffff;
}

/* Expanding Bottom Laser Rail */
.strength-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #ff5e14, #ff8c42);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 0 12px rgba(255, 94, 20, 0.85);
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.strength-card:hover::after {
  width: 100%;
}

@media (max-width: 991px) {
  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .strengths-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1200px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .header-upper .info-boxes {
    display: none;
  }
  .header-lower .nav-outer {
    margin-right: 0;
    padding-right: 15px;
    padding-left: 20px;
    width: 100%;
    justify-content: space-between;
  }
  .header-lower .nav-outer::before {
    display: none;
  }
  .main-nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .about-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-points {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }
  .feature-strip {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .strengths-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .about-points {
    grid-template-columns: 1fr;
  }
  /* Mobile About Section Enhancements */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .about-visual {
    margin-top: 0 !important;
  }
  .industrial-gear-stamp {
    transform: scale(0.68) !important;
    transform-origin: top left !important;
    top: -10px !important;
    left: -10px !important;
    z-index: 10 !important;
  }
  .about-img-frame {
    padding: 6px !important;
    border-radius: 12px !important;
  }
  .about-slide-card {
    height: 300px !important;
    padding: 16px 12px 48px !important;
  }
  .about-slide-card img {
    max-height: 200px !important;
  }
  .about-slide-card::before {
    bottom: 45px !important;
    width: 80% !important;
  }
  .about-slide-tag {
    bottom: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    max-width: 90% !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 0.76rem !important;
    padding: 6px 14px !important;
    text-align: center !important;
    justify-content: center !important;
  }
  .about-exp-badge {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 16px 0 0 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 18px !important;
    border-radius: 14px !important;
    animation: none !important;
  }
  .about-exp-badge .badge-top-row {
    margin-bottom: 0 !important;
    gap: 12px !important;
  }
  .about-exp-badge .badge-icon-pill {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.1rem !important;
  }
  .about-exp-badge .exp-num {
    font-size: 2.1rem !important;
  }
  .about-exp-badge .exp-text {
    text-align: right !important;
  }
  .about-exp-badge .exp-text strong {
    font-size: 0.8rem !important;
  }
  .about-exp-badge .exp-text span {
    font-size: 0.72rem !important;
  }
  .about-cta-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    margin-top: 14px !important;
  }
  .about-cta-row .theme-btn,
  .about-cta-row .about-call-box {
    width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .theme-btn {
    width: 100%;
  }
}

/* ==========================================================================
   POPUP ENQUIRY MODAL (Auto-popup on page refresh & quote buttons)
/* ==========================================================================
   POPUP ENQUIRY MODAL (2-Column Callback Design - Clean & Premium)
   ========================================================================== */

.enquiry-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.enquiry-modal-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.enquiry-modal-card {
  position: relative;
  width: 100%;
  max-width: 820px;
  max-height: 92vh;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  transform: translateY(16px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.enquiry-modal-backdrop.is-active .enquiry-modal-card {
  transform: translateY(0);
}

/* Close Button */
.enquiry-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 20;
}

.enquiry-modal-close:hover {
  color: #0f172a;
  transform: scale(1.15);
}

/* Left Dark Panel */
.enquiry-brand-side {
  background: #18181b;
  padding: 38px 28px 32px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.enquiry-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}

.enquiry-logo-card img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.enquiry-hero-title {
  font-family: var(--font-heading, inherit);
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.enquiry-hero-desc {
  font-size: 0.88rem;
  color: #a1a1aa;
  line-height: 1.55;
  margin: 0;
}

.enquiry-contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
  padding-top: 20px;
}

.enquiry-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.enquiry-contact-row:hover {
  transform: translateX(4px);
}

.enquiry-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 94, 20, 0.14);
  color: #ff5e14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.enquiry-contact-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
}

/* Right Form Panel */
.enquiry-form-side {
  padding: 38px 36px 32px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.enquiry-form-header {
  margin-bottom: 20px;
}

.enquiry-title {
  font-family: var(--font-heading, inherit);
  font-size: 1.7rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
  line-height: 1.2;
}

.enquiry-subtitle {
  font-size: 0.92rem;
  color: #64748b;
  margin: 0;
}

.enquiry-form-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.enquiry-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.enquiry-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.enquiry-field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.enquiry-field input,
.enquiry-field select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.92rem;
  color: #0f172a;
  background: #ffffff;
  outline: none;
  font-family: var(--font-body, inherit);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.enquiry-field select {
  cursor: pointer;
}

.enquiry-field input::placeholder {
  color: #9ca3af;
}

.enquiry-field input:focus,
.enquiry-field select:focus {
  border-color: #ff5e14;
  box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.14);
}

/* Submit Button - Pill style with brand color code */
.enquiry-btn-submit {
  width: 100%;
  background: #ff5e14;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 13px 24px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 8px 20px rgba(255, 94, 20, 0.3);
  transition: all 0.2s ease;
}

.enquiry-btn-submit:hover {
  background: #e04604;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 94, 20, 0.4);
}

.enquiry-btn-submit:active {
  transform: translateY(0);
}

/* Success Message */
.enquiry-success-message {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.enquiry-success-message.is-visible {
  display: block;
}

.enquiry-success-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 12px;
}

.enquiry-success-message h4 {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.enquiry-success-message p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 18px;
}

.enquiry-success-close {
  background: #18181b;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 9px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.enquiry-success-close:hover {
  background: #ff5e14;
}

/* Responsive */
@media (max-width: 768px) {
  .enquiry-modal-card {
    grid-template-columns: 1fr;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
  }
  .enquiry-brand-side {
    padding: 28px 22px 20px;
  }
  .enquiry-contact-links {
    margin-top: 18px;
  }
  .enquiry-form-side {
    padding: 24px 22px 26px;
  }
  .enquiry-field-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}



