/* Custom CSS overrides for Alpha Power Solutions */

:root {
  /* Premium Corporate Alpha brand colors */
  --theme-color: #B71C1C !important;
  /* Primary Deep Red */
  --theme-color2: #C62828 !important;
  /* Secondary Refined Red */
  --accent-color: #D32F2F !important;
  /* Accent Red */
  --title-color: #1F2937 !important;
  /* Enterprise Dark Slate */
  --body-color: #4B5563 !important;
  /* Refined Neutral Body Text */
  --smoke-color2: #F5F5F5 !important;
  /* Soft Section Background */
  --smoke-color3: #E5E7EB !important;
  /* Clean Corporate Border */
  --smoke-color4: #F9FAFB !important;
  /* Light Neutral Warm Tint */
  --black-color: #111827 !important;
  /* Deep Corporate Black/Slate */
  --black-color2: #1F2937 !important;
  /* Subtle Dark Section Background */
  --light-color: #6B7280 !important;
  /* Secondary Text */
  --yellow-color: #D97706 !important;
  /* Warm Gold Accent */
  --success-color: #B71C1C !important;
  /* Primary Red for accents */
  --bg-primary: #FAFAFA !important;
  /* Warm Off-White Main Background */
  --border-color: #E5E7EB !important;
  /* Subtle Border */

  --title-font: 'Manrope', sans-serif !important;
  --body-font: 'Inter', sans-serif !important;
}

/* Base elements & Typography updates */
h1,
h2,
h3,
.h1,
.h2,
.h3,
.mega-menu-title,
.widget_title {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 800 !important;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 600 !important;
}

body,
p,
li,
span,
a,
button,
input,
textarea,
select {
  font-family: 'Inter', sans-serif !important;
}

/* Statistics and numerical counters */
.counter-number,
.box-number,
.counter-grid-title,
.box-counter .counter-number {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 800 !important;
}

/* Logo Dimensions constraint to ensure professional alignment and prevent cutting/clipping */
.header-logo img {
  max-height: 52px !important;
  /* Constant mobile logo height that fits both normal and sticky headers */
  width: auto !important;
  object-fit: contain;
  transition: none !important;
  /* Disabled transitions to prevent layout jittering */
}

@media (min-width: 992px) {
  .header-logo img {
    max-height: 72px !important;
    /* Constant desktop logo height that fits both 95px and 85px headers */
  }
}

.mobile-logo img {
  max-height: 52px !important;
  width: auto !important;
  object-fit: contain;
}

/* Prevent header elements from wrapping or overlapping on any viewports */
.menu-area .row {
  flex-wrap: nowrap !important;
}

/* Adjust logo container width on laptops/medium screens to save menu space */
@media (max-width: 1399px) and (min-width: 992px) {
  .header-logo {
    width: 175px !important;
    padding-left: 12px !important;
  }
}

/* Responsive navigation menu styling to support 8 menu items seamlessly */
.main-menu>ul>li>a {
  font-family: var(--title-font) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.main-menu {
  position: relative !important;
  z-index: 5 !important;
}

/* Large Screens (1400px and up) */
@media (min-width: 1400px) {
  .main-menu>ul>li>a {
    font-size: 14.5px !important;
    padding: 6px 13px !important;
  }

  .header-layout1 .menu-area .main-menu {
    margin-left: 35px !important;
  }
}

/* Medium Screens & Laptops (1200px to 1399px - 14", 15", 16" screens) */
@media (max-width: 1399px) and (min-width: 1200px) {
  .main-menu>ul>li>a {
    font-size: 13px !important;
    padding: 5px 8px !important;
  }

  .header-layout1 .menu-area .main-menu {
    margin-left: 30px !important;
  }
}

/* Small Laptops & Landscape Tablets (992px to 1199px) */
@media (max-width: 1199px) {
  .main-menu>ul>li>a {
    font-size: 12px !important;
    padding: 4px 6px !important;
  }

  .header-layout1 .menu-area .main-menu {
    margin-left: 25px !important;
  }
}

.about-logo {
  margin-bottom: 25px !important;
}

.about-logo img {
  max-height: 110px !important;
  width: auto !important;
  object-fit: contain;
}

/* Premium Top-Class Preloader overrides */
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999999 !important;
  background: #FAFAFA !important;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

/* Floating background decorative glowing light auras */
.preloader::before,
.preloader::after {
  content: "" !important;
  position: absolute !important;
  width: 350px !important;
  height: 350px !important;
  border-radius: 50% !important;
  filter: blur(100px) !important;
  opacity: 0.25 !important;
  z-index: -1 !important;
  pointer-events: none !important;
}

.preloader::before {
  background: radial-gradient(circle, rgba(183, 28, 28, 0.06) 0%, transparent 70%) !important;
  top: -10% !important;
  left: -10% !important;
  animation: preloader-float-1 8s infinite alternate ease-in-out !important;
}

.preloader::after {
  background: radial-gradient(circle, rgba(183, 28, 28, 0.1) 0%, transparent 70%) !important;
  bottom: -10% !important;
  right: -10% !important;
  animation: preloader-float-2 8s infinite alternate ease-in-out !important;
}

/* Inner Container */
.preloader-inner {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
}

/* Typographic Logo Wrapper - displaying 'alpha' with staggered blur effects */
.preloader-text-words-wrap {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-bottom: 25px !important;
}

.preloader-text-words {
  display: inline-block !important;
  margin: 0 6px !important;
  font-family: var(--title-font), sans-serif !important;
  font-size: 42px !important;
  /* 42px as requested */
  font-weight: 900 !important;
  text-transform: lowercase !important;
  line-height: 1 !important;
  animation: blur-text 1.5s infinite linear alternate !important;
}

/* Color theme blending & staggered animation delays */
.preloader-text-words:nth-child(1) {
  color: #081420 !important;
  animation-delay: 0s !important;
}

.preloader-text-words:nth-child(2) {
  color: #B71C1C !important;
  animation-delay: 0.2s !important;
}

.preloader-text-words:nth-child(3) {
  color: #081420 !important;
  animation-delay: 0.4s !important;
}

.preloader-text-words:nth-child(4) {
  color: #B71C1C !important;
  animation-delay: 0.6s !important;
}

.preloader-text-words:nth-child(5) {
  color: #081420 !important;
  animation-delay: 0.8s !important;
}

/* Hide the physical img logo inside preloader */
.preloader-logo {
  display: none !important;
}

/* Sleek Crimson Charging/Energy Indicator */
.preloader-energy-line {
  width: 160px !important;
  height: 3px !important;
  background: rgba(8, 20, 32, 0.05) !important;
  border-radius: 2px !important;
  position: relative !important;
  overflow: hidden !important;
  margin-bottom: 20px !important;
}

.preloader-energy-line::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 40% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, #B71C1C, #D32F2F, transparent) !important;
  animation: energy-flow 1.2s infinite cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 0 6px #B71C1C !important;
}

/* Brand Text Container */
.preloader-text-wrap {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* Hide small redundant title since we have the giant 'alpha' text */
.preloader-title {
  display: none !important;
}

/* Brand Subtitle */
.preloader-subtitle {
  font-family: var(--title-font), sans-serif !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  line-height: 1.9 !important;
  margin-top: 8px !important;
  text-transform: uppercase !important;
  color: #B71C1C !important;
  /* Crimson accent */
  opacity: 0.85 !important;
  text-align: center !important;
  display: block !important;
}

@media (max-width: 575px) {
  .preloader-subtitle {
    font-size: 9.5px !important;
    letter-spacing: 2px !important;
    line-height: 2.2 !important;
    margin-top: 10px !important;
    padding: 0 15px !important;
  }
}

/* Animations */
@keyframes blur-text {
  0% {
    filter: blur(0px);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    filter: blur(5px);
    transform: scale(0.95);
    opacity: 0.35;
  }
}

@keyframes energy-flow {
  0% {
    left: -100%;
  }

  100% {
    left: 150%;
  }
}

/* Adjust header logo padding to allow larger display */
.header-layout1 .header-logo,
.header-logo {
  padding: 2px 0 !important;
  height: 80px !important;
}

@media (min-width: 992px) {

  .header-layout1 .header-logo,
  .header-logo {
    height: 100% !important;
  }
}

/* Custom styles for the energy calculator widget */
.calc-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.calc-tabs {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.calc-tab-btn {
  flex: 1;
  min-width: 120px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 15px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.calc-tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--yellow-color);
}

.calc-tab-btn.active {
  background: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
  color: #fff !important;
}

.calc-content {
  display: none;
}

.calc-content.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

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

.calc-form-group label {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.calc-input {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  font-weight: 500 !important;
}

.calc-input:focus {
  border-color: var(--yellow-color) !important;
}

.calc-input option {
  background: #081420;
  color: #fff;
}

.calc-result-box {
  background: rgba(183, 28, 28, 0.1);
  border: 1px solid rgba(183, 28, 28, 0.12);
  border-radius: 15px;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.calc-result-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--yellow-color);
  margin-bottom: 10px;
  font-family: 'Manrope', sans-serif;
}

.calc-result-label {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}

.calc-result-desc {
  font-size: 0.9rem;
  color: #A0AEC0;
  margin-top: 5px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Clientele logo list style */
.logo-wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.logo-wall-item {
  background: #FAFAFA;
  border: 1px solid #E2E8F0;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.logo-wall-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: var(--theme-color);
}

.logo-wall-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--title-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Solar Solutions indicators */
.solar-card {
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px;
  background: #FAFAFA;
  transition: all 0.3s ease;
}

.solar-card:hover {
  border-color: var(--theme-color2);
  transform: translateY(-5px);
}

/* Header, Topbar, & Logo Curved BG Overrides */
.header-top {
  background: linear-gradient(90deg, #991b1b 0%, #c22727 50%, #991b1b 100%) !important;
  border-bottom: none !important;
  color: #ffffff !important;
  --body-color: #ffffff !important;
  padding: 5px 0 !important;
  height: 35px !important;
  line-height: 25px !important;
  display: flex !important;
  align-items: center !important;
}

.header-top .header-links li,
.header-top .header-links li a,
.header-top .header-links li span {
  color: #ffffff !important;
}

.header-top .header-links li i {
  color: #ffb30f !important;
}

.header-top .header-links li:not(:last-child):after {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.header-top .header-links li,
.header-top .social-links,
.header-top .social-title {
  font-size: 13px !important;
  line-height: 1.2 !important;
}

.header-layout1 .logo-bg,
.logo-bg {
  background: transparent !important;
  background-color: transparent !important;
  clip-path: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  box-shadow: none !important;
  z-index: 1 !important;
}

.header-layout1 .header-logo,
.header-logo {
  position: relative !important;
  z-index: 3 !important;
  /* Bring logo image above logo-bg */
  margin: 0 !important;
  /* Vertically center logo */
  padding: 2px 0 !important;
  display: flex !important;
  align-items: center !important;
  height: 80px !important;
}

.menu-area {
  background-color: #FAFAFA !important;
  position: relative !important;
  z-index: 2 !important;
  height: 80px !important;
  display: flex !important;
  align-items: center !important;
}

.sticky-wrapper.sticky .menu-area {
  height: 80px !important;
}

@media (min-width: 992px) {
  .menu-area {
    height: 95px !important;
  }

  .sticky-wrapper.sticky .menu-area {
    height: 85px !important;
  }
}

/* Premium Header CTA Button Override */
.header-cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 48px !important;
  padding: 0 24px !important;
  background-color: #B71C1C !important;
  /* Crimson Red */
  color: #ffffff !important;
  font-family: var(--title-font), sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 12px rgba(183, 28, 28, 0.06) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.header-cta-btn i {
  font-size: 13px !important;
  transition: transform 0.25s ease !important;
}

.header-cta-btn:hover {
  background-color: #b31b1b !important;
  /* Darker red */
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(183, 28, 28, 0.12) !important;
  text-decoration: none !important;
}

.header-cta-btn:hover i {
  transform: translateX(3px) !important;
}

/* Hero Section Viewport Fit (Desktop) */
@media (min-width: 992px) {
  .th-header {
    height: 115px !important;
  }

  .th-hero-wrapper.hero-1 {
    height: calc(100vh - 115px) !important;
    min-height: 480px !important;
    max-height: 550px !important;
  }

  .hero-inner {
    height: 100% !important;
    min-height: auto !important;
    display: flex !important;
    align-items: center !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .hero-style1 {
    margin-top: 0 !important;
    max-width: 650px !important;
  }

  .hero-style1 .hero-title {
    font-size: 48px !important;
    /* Scaled down headline */
    margin-bottom: 15px !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
  }

  .hero-style1 .sub-title {
    margin-bottom: 8px !important;
    font-size: 14px !important;
  }

  .hero-style1 .hero-text {
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin-bottom: 25px !important;
  }

  /* Trust Indicators section overrides */
  .space-top.trust-indicators-sec {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
    margin-top: -15px !important;
    background: #FAFAFA;
    position: relative;
    z-index: 10;
  }

  .counter-card {
    padding: 12px 10px !important;
    background: #FAFAFA;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    border-radius: 10px !important;
    border: 1px solid #f0f0f0 !important;
  }

  .counter-card .counter-number {
    font-size: 1.6rem !important;
  }

  .counter-card .counter-text {
    font-size: 0.8rem !important;
    line-height: 1.2 !important;
  }
}

/* ==========================================
   Phase 2 Redesign Alignments
   ========================================== */

/* Logo Background Backdrop Curve override with precise responsive calculation and modern slanted edge */
.logo-bg,
.header-layout1 .logo-bg {
  background: transparent !important;
  background-color: transparent !important;
  clip-path: none !important;
  border-radius: 0 !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  box-shadow: none !important;
  position: absolute !important;
  left: 0 !important;
  z-index: 1 !important;
  height: auto !important;
  width: auto !important;
}

.logo-bg::after {
  display: none !important;
}

.header-layout1 .header-logo img,
.header-logo img {
  /* filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.08)) !important; */
  transition: transform 0.3s ease !important;
}

.header-layout1 .header-logo img:hover,
.header-logo img:hover {
  transform: scale(1.02) !important;
}

@media (max-width: 575px) {

  .logo-bg,
  .header-layout1 .logo-bg {
    width: 150px !important;
  }
}

@media (min-width: 576px) and (max-width: 767px) {

  .logo-bg,
  .header-layout1 .logo-bg {
    width: 150px !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  .logo-bg,
  .header-layout1 .logo-bg {
    width: calc((100% - 720px) / 2 + 192px) !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {

  .logo-bg,
  .header-layout1 .logo-bg {
    width: calc((100% - 960px) / 2 + 192px) !important;
    height: 110px !important;
    /* Match larger desktop header height */
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {

  .logo-bg,
  .header-layout1 .logo-bg {
    width: calc((100% - 1140px) / 2 + 192px) !important;
    height: 110px !important;
    /* Match larger desktop header height */
  }
}

@media (min-width: 1400px) {

  .logo-bg,
  .header-layout1 .logo-bg {
    width: calc((100% - 1320px) / 2 + 192px) !important;
    height: 110px !important;
    /* Match larger desktop header height */
  }
}

@media (min-width: 992px) {
  .header-logo {
    width: 175px !important;
    /* Accommodate larger 88px high logo (155px wide) */
    padding-left: 12px !important;
    display: flex !important;
    align-items: center !important;
  }

  /* Restructure the header row to mathematically center the menu on desktop viewports */
  .menu-area .row {
    position: relative !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 !important;
  }

  /* Absolute position the logo column to the left */
  .menu-area .row>.col-auto:first-child {
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Center the menu column and remove margins */
  .menu-area .row>.col-auto:nth-child(2) {
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
  }

  .header-layout1 .menu-area .main-menu {
    margin-left: 0 !important;
    /* Reset margin-left override when centered */
  }

  /* Absolute position the CTA column to the right */
  .menu-area .row>.col-auto:nth-child(3) {
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Industries We Power Grid */
.industries-sec {
  background: #F5F5F5 !important;
  position: relative !important;
  z-index: 2 !important;
}

.industry-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px !important;
  margin-top: 40px !important;
}

@media (max-width: 991px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 575px) {
  .industry-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
}

.industry-card {
  background: #FAFAFA !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 16px !important;
  padding: 30px 25px !important;
  text-align: center !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
  position: relative !important;
  overflow: hidden !important;
}

.industry-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 4px !important;
  background: var(--theme-color) !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform 0.4s ease !important;
}

.industry-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  border-color: var(--theme-color) !important;
}

.industry-card:hover::before {
  transform: scaleX(1) !important;
}

.industry-icon-wrap {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  background: rgba(183, 28, 28, 0.06) !important;
  color: var(--theme-color) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 20px auto !important;
  font-size: 1.8rem !important;
  transition: all 0.4s ease !important;
}

.industry-card:hover .industry-icon-wrap {
  background: var(--theme-color) !important;
  color: #ffffff !important;
  transform: rotateY(360deg) !important;
}

.industry-title {
  font-family: var(--title-font) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--title-color) !important;
  margin-bottom: 10px !important;
}

.industry-desc {
  font-family: var(--body-font) !important;
  font-size: 0.9rem !important;
  color: var(--light-color) !important;
  line-height: 1.5 !important;
}

/* Premium Feature Cards Refinement */
.feature-card {
  position: relative;
  background: #FAFAFA;
  border: 1px solid rgba(183, 28, 28, 0.08);
  border-radius: 24px !important;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(8, 20, 32, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(183, 28, 28, 0.03) 0%, rgba(8, 20, 32, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(183, 28, 28, 0.12) !important;
  box-shadow: 0 20px 40px rgba(8, 20, 32, 0.08), 0 0 0 4px rgba(183, 28, 28, 0.05);
}

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

/* Watermark Number in Corner */
.feature-card::after {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.8rem;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  color: rgba(183, 28, 28, 0.05);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease;
}

.col-md-6:nth-child(1) .feature-card::after {
  content: "01";
}

.col-md-6:nth-child(2) .feature-card::after {
  content: "02";
}

.col-md-6:nth-child(3) .feature-card::after {
  content: "03";
}

.col-md-6:nth-child(4) .feature-card::after {
  content: "04";
}

.feature-card:hover::after {
  color: rgba(183, 28, 28, 0.12);
}

/* Icon Wrap with premium background */
.feature-card .box-icon {
  width: 70px;
  height: 70px;
  background: rgba(183, 28, 28, 0.06);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.feature-card .box-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.feature-card .box-icon i {
  transition: color 0.4s ease, transform 0.4s ease;
  display: inline-block;
}

.feature-card:hover .box-icon {
  background: var(--theme-color, #B71C1C) !important;
  transform: rotate(5deg);
  box-shadow: 0 10px 20px rgba(183, 28, 28, 0.08);
}

.feature-card:hover .box-icon img {
  transform: scale(1.1);
  filter: brightness(0) invert(1);
}

.feature-card:hover .box-icon i {
  color: #ffffff !important;
  transform: scale(1.1);
}

/* Typography styles */
.feature-card .box-title {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
  font-family: 'Manrope', sans-serif !important;
}

.feature-card .box-title a {
  color: var(--title-color, #0E121D) !important;
  transition: color 0.3s ease;
}

.feature-card:hover .box-title a {
  color: var(--theme-color, #B71C1C) !important;
}

.feature-card .box-text {
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  color: var(--body-color, #4D5765) !important;
  margin-bottom: 0 !important;
}

/* About Page Features Refinement */
.features-box-3 {
  position: relative;
  background: #FAFAFA !important;
  border: 1px solid rgba(183, 28, 28, 0.08) !important;
  border-radius: 20px !important;
  padding: 35px 30px !important;
  box-shadow: 0 10px 30px rgba(8, 20, 32, 0.03) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

.features-box-3:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(183, 28, 28, 0.12) !important;
  box-shadow: 0 20px 40px rgba(8, 20, 32, 0.08), 0 0 0 4px rgba(183, 28, 28, 0.05) !important;
}

.features-box-3 .box-icon {
  width: 60px !important;
  height: 60px !important;
  background: rgba(183, 28, 28, 0.06) !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 20px !important;
  transition: all 0.4s ease !important;
}

.features-box-3:hover .box-icon {
  background: var(--theme-color, #B71C1C) !important;
  transform: rotate(5deg) !important;
}

.features-box-3:hover .box-icon img {
  filter: brightness(0) invert(1) !important;
}

.features-box-3 .box-title {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  font-family: 'Manrope', sans-serif !important;
  line-height: 1.4 !important;
  margin-top: 0 !important;
}

.features-box-3 .box-title a {
  color: var(--title-color, #0E121D) !important;
}

.features-box-3:hover .box-title a {
  color: var(--theme-color, #B71C1C) !important;
}

.features-box-3 .icon-link {
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  border-radius: 50% !important;
  background: rgba(8, 20, 32, 0.03) !important;
  border: none !important;
  transition: all 0.4s ease !important;
}

.features-box-3:hover .icon-link {
  background: var(--theme-color, #B71C1C) !important;
}

.features-box-3:hover .icon-link i {
  color: #ffffff !important;
}

/* Mobile View Enhancements */
@media (max-width: 767px) {

  /* Hero section title size on mobile to prevent awkward line breaks and overflow */
  .hero-style1 .hero-title {
    font-size: 26px !important;
    line-height: 1.3 !important;
    margin-bottom: 15px !important;
  }

  .hero-style1 .sub-title {
    font-size: 11px !important;
    letter-spacing: 1px !important;
    margin-bottom: 10px !important;
  }

  /* Make sure footer elements are aligned properly on mobile screens */
  .footer-widget {
    text-align: left !important;
    margin-bottom: 35px !important;
  }

  .about-logo {
    text-align: left !important;
    margin-bottom: 20px !important;
  }

  .about-logo a {
    display: inline-block !important;
  }

  .footer-widget .th-social {
    text-align: left !important;
    justify-content: flex-start !important;
  }

  /* Ensure footer contact details stack and align properly */
  .footer-widget .footer-info {
    text-align: left !important;
    margin-left: 0 !important;
  }
}

/* Hide header topbar on mobile viewports */
@media (max-width: 991px) {
  .header-top {
    display: none !important;
  }
}

/* Map Solak default green highlights to Alpha Crimson Red */
.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
  border-top: 3px solid var(--theme-color) !important;
}

.main-menu ul.sub-menu li a:before {
  color: var(--theme-color) !important;
}

.main-menu ul.mega-menu>li>a {
  border-color: var(--theme-color) !important;
}

.main-menu ul.mega-menu>li>a::after,
.main-menu ul.mega-menu>li>a::before {
  background-color: var(--theme-color) !important;
}

.th-mobile-menu ul li.th-active>a {
  color: var(--theme-color) !important;
}

.th-menu-wrapper .th-menu-area {
  border-right: 3px solid var(--theme-color) !important;
}

.th-menu-toggle,
.th-menu-wrapper .th-menu-toggle {
  background-color: var(--theme-color) !important;
}

/* Interactive Solution Finder Styles */
.solution-finder-container {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px !important;
  padding: 30px !important;
  backdrop-filter: blur(10px) !important;
}

.sf-step {
  margin-bottom: 25px !important;
}

.sf-options-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 8px !important;
}

.sf-opt-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  padding: 10px 18px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  font-family: 'Inter', sans-serif !important;
}

.sf-opt-btn:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: var(--theme-color) !important;
}

.sf-opt-btn.active {
  background: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(183, 28, 28, 0.12) !important;
}

/* Global section padding overrides for optimal B2B enterprise breathing room */
.space {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.space-top {
  padding-top: 50px !important;
}

.space-bottom {
  padding-bottom: 50px !important;
}

@media (max-width: 991px) {
  .space {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }

  .space-top {
    padding-top: 36px !important;
  }

  .space-bottom {
    padding-bottom: 36px !important;
  }
}

/* Section Title Area Spacing */
.title-area {
  margin-bottom: 32px !important;
}

.title-area .sec-title {
  margin-bottom: 12px !important;
}

.title-area .sec-desc,
.title-area p {
  margin-top: 8px !important;
  margin-bottom: 14px !important;
}

/* About Us section stat cards */
.info-stat-card {
  background: #FAFAFA;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.info-stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--theme-color);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.info-stat-card .stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(183, 28, 28, 0.06);
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-stat-card:hover .stat-icon {
  background: var(--theme-color) !important;
  color: #ffffff !important;
}

.info-stat-card .stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--title-color) !important;
  margin-bottom: 2px;
  font-family: 'Manrope', sans-serif;
  line-height: 1.2;
}

.info-stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--light-color) !important;
  margin-bottom: 0;
  line-height: 1.3;
}

/* Mobile styling adjustments for sub-titles (hide red dots on mobile) */
@media (max-width: 991px) {
  .sub-title::before {
    display: none !important;
  }

  .sub-title {
    padding-left: 0 !important;
  }
}

/* About Us image section styling overrides */
.about-image-wrapper {
  position: relative;
  height: auto;
  width: 100%;
}

.about-img-main {
  height: auto;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #FAFAFA;
}

.about-img-main img {
  height: auto;
  width: 100%;
  object-fit: contain;
  display: block;
}

.floating-stats-card {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
  min-width: 180px;
  background: #FAFAFA;
  border: 2px solid rgba(183, 28, 28, 0.08);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
  .about-image-wrapper {
    height: auto;
    margin-bottom: 20px;
  }
}

/* Infinite scrolling logo marquee styles */
.logo-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
}

.logo-marquee-row {
  display: flex;
  width: max-content;
  gap: 20px;
  padding: 10px 0;
}

.marquee-track-ltr {
  display: flex;
  gap: 20px;
  animation: scroll-ltr 45s linear infinite;
}

.marquee-track-rtl {
  display: flex;
  gap: 20px;
  animation: scroll-rtl 45s linear infinite;
}

.logo-marquee-row:hover .marquee-track-ltr,
.logo-marquee-row:hover .marquee-track-rtl {
  animation-play-state: paused;
}

.logo-card {
  background: #FAFAFA;
  border: 1px solid #e2e8f0;
  padding: 15px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 180px;
  flex-shrink: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.logo-card img {
  max-height: 50px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  transition: all 0.3s ease;
}

.logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: var(--theme-color);
}

.logo-card:hover img {
  transform: scale(1.05);
}

@keyframes scroll-ltr {
  0% {
    transform: translateX(0);
  }

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

@keyframes scroll-rtl {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Award card custom styles */
.award-card {
  background: #FAFAFA;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.award-card:hover {
  transform: translateY(-5px);
  border-color: var(--theme-color);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.award-card .award-logo {
  height: 80px;
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-card .award-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(0%) !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
}

.award-card:hover .award-logo img {
  transform: scale(1.08) !important;
}

.award-card .award-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 4px;
  line-height: 1.3;
}

.award-card .award-desc {
  font-size: 0.75rem;
  color: var(--light-color);
  margin-bottom: 0;
}

/* Dark version of award card for black sections */
.award-card.dark-version {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
}

.award-card.dark-version:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--theme-color) !important;
  box-shadow: 0 10px 25px rgba(183, 28, 28, 0.06) !important;
}

.award-card.dark-version .award-title {
  color: #ffffff !important;
}

.award-card.dark-version .award-desc {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Testimonial user icon fallback styling */
.testi-card .box-author {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}

.testi-card .box-author i {
  font-size: 20px;
  color: var(--theme-color);
}

/* Ensure service cards are equal height and buttons are aligned at the bottom */
.swiper-wrapper {
  display: flex !important;
}

.swiper-slide {
  height: auto !important;
}

.service-card {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.service-card .box-content {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.service-card .box-text {
  flex-grow: 1 !important;
  margin-bottom: 25px !important;
}

.service-card .th-btn {
  margin-top: auto !important;
  align-self: flex-start !important;
}

/* Alpha Prolite Battery Showcase Section */
.prolite-image-wrapper {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #F5F5F5);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}

.prolite-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(183, 28, 28, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.prolite-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(183, 28, 28, 0.08);
  border-color: rgba(183, 28, 28, 0.08);
}

.prolite-img {
  max-width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s ease;
}

.prolite-image-wrapper:hover .prolite-img {
  transform: scale(1.04);
}

.prolite-badge {
  position: absolute;
  background: #0B1F3A;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.prolite-badge-1 {
  top: 25px;
  left: 25px;
  background: var(--theme-color);
}

.prolite-badge-2 {
  bottom: 25px;
  right: 25px;
}

.prolite-badge-3 {
  bottom: 25px;
  left: 25px;
  background: #2BB673;
}

.prolite-badge:hover {
  transform: scale(1.05);
}

.prolite-app-card {
  display: flex;
  gap: 20px;
  background: #FAFAFA;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  align-items: flex-start;
}

.prolite-app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(183, 28, 28, 0.08);
}

.prolite-app-icon-wrap {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.prolite-app-card:hover .prolite-app-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.icon-solar {
  background: rgba(79, 70, 229, 0.07);
  color: #4F46E5;
  border: 2px solid rgba(79, 70, 229, 0.15);
}

.prolite-app-card:hover .icon-solar {
  background: #4F46E5;
  color: #ffffff;
  border-color: #4F46E5;
}

.icon-ups {
  background: rgba(183, 28, 28, 0.07);
  color: #B71C1C;
  border: 2px solid rgba(183, 28, 28, 0.06);
}

.prolite-app-card:hover .icon-ups {
  background: #B71C1C;
  color: #ffffff;
  border-color: #B71C1C;
}

.icon-wind {
  background: rgba(13, 148, 136, 0.07);
  color: #0D9488;
  border: 2px solid rgba(13, 148, 136, 0.15);
}

.prolite-app-card:hover .icon-wind {
  background: #0D9488;
  color: #ffffff;
  border-color: #0D9488;
}

.icon-machine {
  background: rgba(234, 88, 12, 0.07);
  color: #EA580C;
  border: 2px solid rgba(234, 88, 12, 0.15);
}

.prolite-app-card:hover .icon-machine {
  background: #EA580C;
  color: #ffffff;
  border-color: #EA580C;
}

.prolite-app-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--title-color);
  font-family: var(--title-font);
}

.prolite-app-text {
  font-size: 0.875rem;
  color: var(--body-color);
  margin-bottom: 0;
  line-height: 1.45;
}

@media (max-width: 991px) {
  .prolite-image-wrapper {
    min-height: auto;
    padding: 30px;
    margin-bottom: 40px;
  }
}

/* Make breadcrumb header text highly readable with a modern dark overlay gradient */
.breadcumb-wrapper {
  position: relative !important;
  background-position: center center !important;
  background-size: cover !important;
}

@media (max-width: 767px) {
  .breadcumb-wrapper {
    padding: 80px 0 !important;
  }
}

@media (max-width: 575px) {
  .breadcumb-wrapper {
    padding: 60px 0 !important;
  }
}

.breadcumb-wrapper::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(180deg, rgba(8, 20, 32, 0.8) 0%, rgba(8, 20, 32, 0.4) 100%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.breadcumb-wrapper .container {
  position: relative !important;
  z-index: 2 !important;
}

.breadcumb-title {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

.breadcumb-menu a,
.breadcumb-menu li {
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.08) !important;
}

/* Premium Creative Redesign for Why Choose Us Statistics section */
.choose-wrapper2 {
  margin-left: 40px !important;
  margin-right: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 30px !important;
}

@media(max-width: 1299px) {
  .choose-wrapper2 {
    margin-left: 0 !important;
  }
}

.choose-item2 {
  display: flex !important;
  background: rgba(30, 41, 59, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
}

.choose-item2:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 45px rgba(183, 28, 28, 0.06) !important;
  border-color: rgba(183, 28, 28, 0.12) !important;
}

.choose-item2:not(:last-child) {
  background: rgba(30, 41, 59, 0.45) !important;
}

.choose-item2 .choose-img {
  width: 50% !important;
  overflow: hidden !important;
  position: relative !important;
  background: #5c727a !important;
  /* Match and blend with the battery image background */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.choose-item2 .choose-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  /* Contain so the batteries are fully visible and beautiful */
  transition: transform 0.6s ease !important;
}

.choose-item2:hover .choose-img img {
  transform: scale(1.05) !important;
}

.choose-item2 .choose-content {
  width: 50% !important;
  padding: 45px 40px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 15px !important;
  background: transparent !important;
}

.choose-item2 .box-number {
  font-size: clamp(36px, 4vw, 54px) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
  margin: 0 !important;
  background: linear-gradient(90deg, #ffffff 0%, #cbd5e1 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
}

.choose-item2:nth-child(even) .box-number {
  background: linear-gradient(90deg, #D32F2F 0%, #ffffff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.choose-item2 .box-text {
  font-size: 18px !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
  color: #e2e8f0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

@media(max-width: 767px) {
  .choose-item2 {
    flex-direction: column !important;
  }

  .choose-item2 .choose-img {
    width: 100% !important;
    height: 250px !important;
  }

  .choose-item2 .choose-content {
    width: 100% !important;
    padding: 30px !important;
  }

  .choose-item2:nth-child(even) .choose-img {
    order: 0 !important;
  }

  .choose-item2:nth-child(even) .choose-content {
    order: 1 !important;
  }
}

/* Service.html Redesign styles - Sticky Navigation & Premium Cards */
.service-redesign-wrapper {
  margin-top: 20px;
}

/* Scroll Offset behavior for smooth scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  /* Offset for sticky header */
}

/* Sticky Navigator */
.service-sticky-nav {
  position: sticky !important;
  top: 120px !important;
  z-index: 10 !important;
  background: #FAFAFA;
  padding: 30px 24px !important;
  border-radius: 20px !important;
  border: 1px solid #f1f5f9 !important;
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.02) !important;
}

.service-sticky-nav-title {
  font-size: 1rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  color: var(--title-color) !important;
  margin-bottom: 20px !important;
  border-bottom: 2px solid rgba(183, 28, 28, 0.1) !important;
  padding-bottom: 10px !important;
}

.service-sticky-nav-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.service-sticky-nav-item {
  margin-bottom: 12px !important;
}

.service-sticky-nav-link {
  display: flex !important;
  align-items: center !important;
  padding: 12px 16px !important;
  border-radius: 12px !important;
  color: var(--light-color) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
  border: 1px solid transparent !important;
}

.service-sticky-nav-link i {
  font-size: 1.1rem !important;
  margin-right: 12px !important;
  transition: transform 0.3s ease !important;
  width: 20px !important;
  text-align: center !important;
}

.service-sticky-nav-link:hover {
  color: var(--theme-color) !important;
  background: rgba(183, 28, 28, 0.04) !important;
  padding-left: 20px !important;
}

.service-sticky-nav-link:hover i {
  transform: scale(1.15) !important;
}

/* Active Link State */
.service-sticky-nav-link.active {
  color: #ffffff !important;
  background: var(--theme-color) !important;
  box-shadow: 0 4px 15px rgba(183, 28, 28, 0.08) !important;
}

.service-sticky-nav-link.active i {
  color: #ffffff !important;
}

/* Responsive Sticky Menu - Mobile Horizontal Scroll */
@media (max-width: 991px) {
  .service-sticky-nav {
    position: sticky !important;
    top: 90px !important;
    margin-bottom: 30px !important;
    padding: 12px 16px !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
  }

  .service-sticky-nav-title {
    display: none !important;
  }

  .service-sticky-nav-list {
    display: flex !important;
    gap: 10px !important;
  }

  .service-sticky-nav-item {
    margin-bottom: 0 !important;
  }

  .service-sticky-nav-link {
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
  }

  .service-sticky-nav-link:hover {
    padding-left: 16px !important;
  }
}

/* Showcase Cards for service list */
.showcase-card {
  display: flex !important;
  gap: 30px !important;
  background: #FAFAFA !important;
  padding: 30px !important;
  border-radius: 24px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.015) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  flex-wrap: wrap !important;
  margin-bottom: 40px !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.showcase-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 25px 50px rgba(11, 31, 58, 0.05) !important;
  border-color: rgba(183, 28, 28, 0.06) !important;
}

/* Image frame zoom effect */
.showcase-img-frame {
  flex: 1 !important;
  min-width: 280px !important;
  max-width: 100% !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  max-height: 400px !important;
  position: relative !important;
  box-sizing: border-box !important;
}

.showcase-img-frame img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background-color: #F5F5F5 !important;
  padding: 12px !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.showcase-card:hover .showcase-img-frame img {
  transform: scale(1.05) !important;
}

.showcase-content {
  flex: 1.4 !important;
  min-width: 280px !important;
  max-width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

/* Monospace Badge Label */
.showcase-badge-tag {
  font-family: 'Space Mono', 'Courier New', monospace !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--theme-color) !important;
  margin-bottom: 12px !important;
  display: inline-block !important;
}

.showcase-title {
  font-family: var(--title-font) !important;
  font-weight: 800 !important;
  color: var(--title-color) !important;
  font-size: 1.8rem !important;
  line-height: 1.3 !important;
  margin-bottom: 16px !important;
}

.showcase-desc {
  font-family: var(--body-font) !important;
  color: var(--light-color) !important;
  line-height: 1.6 !important;
  font-size: 0.95rem !important;
  margin-bottom: 24px !important;
}

/* Capabilities Micro-Cards Grid */
.capability-header {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: var(--title-color) !important;
  margin-bottom: 14px !important;
}

.capability-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)) !important;
  gap: 12px !important;
  margin-bottom: 30px !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.capability-micro-card {
  display: flex !important;
  align-items: flex-start !important;
  padding: 12px 14px !important;
  background: #FAFAFA !important;
  border-radius: 12px !important;
  border: 1px solid #e2e8f0 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  word-break: break-word !important;
}

.capability-micro-card:hover {
  background: rgba(183, 28, 28, 0.01) !important;
  border-color: rgba(183, 28, 28, 0.08) !important;
  box-shadow: 0 4px 15px rgba(183, 28, 28, 0.03) !important;
  transform: translateY(-2px) !important;
}

.capability-icon-wrap {
  color: var(--theme-color) !important;
  font-size: 0.95rem !important;
  margin-right: 10px !important;
  margin-top: 2px !important;
  flex-shrink: 0 !important;
}

.capability-text-wrap {
  min-width: 0 !important;
  flex: 1 !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.capability-name {
  font-weight: 700 !important;
  color: var(--title-color) !important;
  margin-bottom: 3px !important;
}

.capability-detail {
  font-size: 0.78rem !important;
  color: var(--light-color) !important;
  line-height: 1.4 !important;
}

/* Product.html Redesign styles - Filtering & Premium Cards */
.product-filter-container {
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 45px !important;
  width: 100% !important;
}

.product-filter-list {
  display: flex !important;
  gap: 12px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.product-filter-btn {
  background: #FAFAFA !important;
  border: 1px solid #e2e8f0 !important;
  color: var(--light-color) !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  font-family: var(--body-font) !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  outline: none !important;
}

.product-filter-btn:hover {
  color: var(--theme-color) !important;
  border-color: rgba(183, 28, 28, 0.08) !important;
  background: rgba(183, 28, 28, 0.02) !important;
}

.product-filter-btn.active {
  background: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(183, 28, 28, 0.08) !important;
}

/* Responsive Tabs for Mobile */
@media (max-width: 991px) {
  .product-filter-container {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding: 5px 15px 12px 15px !important;
    margin-bottom: 30px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    /* Hide scrollbar for clean view */
  }

  .product-filter-container::-webkit-scrollbar {
    display: none !important;
  }

  .product-filter-list {
    display: flex !important;
    gap: 8px !important;
  }

  .product-filter-btn {
    padding: 8px 16px !important;
    font-size: 0.82rem !important;
  }
}

/* Product Card Grid */
.product-card-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 30px !important;
  justify-content: center !important;
  width: 100% !important;
}

/* Premium Product Card */
.product-premium-card {
  flex: 1 1 350px !important;
  max-width: calc(33.333% - 20px) !important;
  display: flex !important;
  flex-direction: column !important;
  background: #FAFAFA !important;
  border-radius: 20px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.01) !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}

@media (max-width: 1199px) {
  .product-premium-card {
    max-width: calc(50% - 15px) !important;
  }
}

@media (max-width: 767px) {
  .product-premium-card {
    max-width: 100% !important;
  }
}

.product-premium-card.hidden {
  display: none !important;
  opacity: 0 !important;
  transform: scale(0.95) !important;
}

.product-premium-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(11, 31, 58, 0.04) !important;
  border-color: rgba(183, 28, 28, 0.06) !important;
}

/* Card Image Section */
.product-img-wrap {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  position: relative !important;
  border-bottom: 1px solid #f1f5f9 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #FAFAFA !important;
}

.product-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background-color: #F5F5F5 !important;
  padding: 15px !important;
  display: block !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-premium-card:hover .product-img-wrap img {
  transform: scale(1.03) !important;
}

/* Card Body Section */
.product-info {
  padding: 15px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.product-tag {
  font-family: 'Space Mono', 'Courier New', monospace !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: var(--theme-color) !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
  display: inline-block !important;
}

.product-card-title {
  font-family: var(--title-font) !important;
  font-weight: 800 !important;
  color: var(--title-color) !important;
  font-size: 1.25rem !important;
  line-height: 1.35 !important;
  margin-bottom: 12px !important;
  min-height: 2.7rem !important;
  /* Ensure alignment if titles wrap differently */
}

.product-card-desc {
  font-family: var(--body-font) !important;
  font-size: 0.85rem !important;
  color: var(--light-color) !important;
  line-height: 1.6 !important;
  margin-bottom: 22px !important;
  flex-grow: 1 !important;
  /* Push spec lists to same alignment */
}

/* Custom Specs list */
.product-spec-header {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: var(--title-color) !important;
  margin-bottom: 12px !important;
}

.product-spec-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 26px 0 !important;
}

.product-spec-item {
  display: flex !important;
  align-items: flex-start !important;
  font-size: 0.8rem !important;
  color: var(--title-color) !important;
  line-height: 1.5 !important;
  margin-bottom: 8px !important;
}

.product-spec-item:last-child {
  margin-bottom: 0 !important;
}

.product-spec-item i {
  color: var(--theme-color) !important;
  font-size: 0.85rem !important;
  margin-right: 10px !important;
  margin-top: 2px !important;
}

.product-action-wrap {
  margin-top: auto !important;
}

/* B2B Product Matcher Section */
.product-matcher-sec {
  background: linear-gradient(135deg, #0b1f3a 0%, #182c47 100%) !important;
  color: #ffffff !important;
  border-radius: 30px !important;
  padding: 60px 40px !important;
  margin-top: 60px !important;
  margin-bottom: 80px !important;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.05) !important;
}

.matcher-steps-wrap {
  display: flex !important;
  flex-direction: column !important;
  gap: 30px !important;
}

.matcher-step-title {
  font-family: var(--title-font) !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 14px !important;
}

.matcher-pill-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.matcher-pill-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  padding: 12px 20px !important;
  border-radius: 12px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  outline: none !important;
}

.matcher-pill-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-1px) !important;
}

.matcher-pill-btn.active {
  background: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(183, 28, 28, 0.12) !important;
}

/* Matcher Result Frosted Glass Box */
.matcher-result-box {
  background: rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  padding: 35px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  transition: all 0.4s ease !important;
}

.matcher-result-pre {
  font-family: 'Space Mono', monospace !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: var(--theme-color) !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
  display: block !important;
}

.matcher-result-title {
  font-family: var(--title-font) !important;
  font-weight: 800 !important;
  font-size: 1.5rem !important;
  color: #ffffff !important;
  margin-bottom: 15px !important;
  line-height: 1.3 !important;
}

.matcher-result-text {
  font-size: 0.88rem !important;
  color: rgba(255, 255, 255, 0.75) !important;
  line-height: 1.6 !important;
  margin-bottom: 22px !important;
}

.matcher-result-specs {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-top: 20px !important;
  margin-bottom: 25px !important;
}

.matcher-spec-line {
  display: flex !important;
  align-items: center !important;
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 8px !important;
}

.matcher-spec-line i {
  color: var(--theme-color) !important;
  margin-right: 8px !important;
  font-size: 0.9rem !important;
}

.matcher-result-btn {
  margin-top: auto !important;
}

.cert-badge-img-wrap {
  background: #FAFAFA !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  padding: 6px 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 48px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s ease !important;
  opacity: 0.45 !important;
  filter: grayscale(100%) !important;
}

.cert-badge-img-wrap:hover,
.cert-badge-img-wrap.highlight-seal {
  opacity: 1 !important;
  filter: grayscale(0%) !important;
  transform: translateY(-2px) !important;
  border-color: var(--active-accent-color, #B71C1C) !important;
  box-shadow: 0 10px 20px rgba(var(--active-accent-rgb, 214, 40, 40), 0.12) !important;
}

.cert-badge-img-wrap img {
  height: 30px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* Certification Grid Cards */
.cert-card {
  background: #FAFAFA !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 30px !important;
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.01) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.cert-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 40px rgba(11, 31, 58, 0.03) !important;
  border-color: rgba(183, 28, 28, 0.06) !important;
}

.cert-icon-wrap {
  width: 50px !important;
  height: 50px !important;
  border-radius: 12px !important;
  background: rgba(183, 28, 28, 0.08) !important;
  color: var(--theme-color) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.3rem !important;
  margin-bottom: 20px !important;
  transition: all 0.3s ease !important;
}

.cert-card:hover .cert-icon-wrap {
  background: var(--theme-color) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(183, 28, 28, 0.08) !important;
}

.cert-card-title {
  font-family: var(--title-font) !important;
  font-weight: 800 !important;
  font-size: 1.15rem !important;
  color: var(--title-color) !important;
  margin-bottom: 10px !important;
}

.cert-card-desc {
  font-family: var(--body-font) !important;
  font-size: 0.82rem !important;
  color: var(--light-color) !important;
  line-height: 1.55 !important;
  margin-bottom: 0 !important;
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
  .product-cert-sec {
    padding: 60px 0 !important;
  }
}

/* ==========================================================================
   Global B2B Product Image Scaling Overrides (Full Images, No Cropping)
   ========================================================================== */

/* Specific product shots (battery and bypass switch) that should be contained */
.product-img-wrap img[src*="prolite_battery.webp"],
.product-img-wrap img[src*="static_bypass_switch.webp"] {
  object-fit: contain !important;
  max-width: 90% !important;
  max-height: 90% !important;
  width: auto !important;
  height: auto !important;
  margin: auto !important;
  display: block !important;
  padding: 15px !important;
  background-color: #F5F5F5 !important;
}

.showcase-img-frame img[src*="prolite_battery.webp"],
.showcase-img-frame img[src*="static_bypass_switch.webp"] {
  object-fit: contain !important;
  max-width: 90% !important;
  max-height: 90% !important;
  width: auto !important;
  height: auto !important;
  margin: auto !important;
  display: block !important;
  padding: 15px !important;
}

.showcase-img-frame {
  background-color: #F5F5F5 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Homepage Service Cards - Permanent Background Images & Premium Overlay */
.service-card {
  background-color: #0b1f3a !important;
  /* Dark fallback background */
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.service-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

/* Hide the top-right thumbnail image completely to prevent layout breaks and overlap */
.service-card .box-img {
  display: none !important;
}

/* Make background image overlay permanently visible with centered white fill */
.service-card .service-overlay {
  opacity: 1 !important;
  visibility: visible !important;
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #FAFAFA !important;
  transition: transform 0.6s ease !important;
}

/* Hide the white sliding transition layer */
.service-card .service-overlay:before {
  display: none !important;
}

/* Apply a clean dark gradient overlay to ensure text readability */
.service-card .service-overlay:after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(8, 20, 32, 0.4) 0%, rgba(8, 20, 32, 0.85) 100%) !important;
  z-index: 2 !important;
}

/* Zoom background image slightly on hover for a premium kinetic effect */
.service-card:hover .service-overlay {
  transform: scale(1.08) !important;
}

/* Text alignment and styling for readability */
.service-card .box-title,
.service-card .box-title a {
  color: #ffffff !important;
}

.service-card .box-text {
  color: #cbd5e1 !important;
  /* Slate grey for high text contrast */
}

/* Button styles for dark background (Ensure CTA is fully visible) */
.service-card .th-btn {
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: #ffffff !important;
  background-color: transparent !important;
}

.service-card .th-btn .btn-text:before,
.service-card .th-btn .btn-text:after,
.service-card .th-btn i {
  color: #ffffff !important;
}

.service-card .th-btn:hover {
  background-color: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
}

/* ==========================================================================
   Visual Power Topology Blueprint Builder Section Styles
   ========================================================================== */

.product-blueprint-sec {
  background: #FAFAFA !important;
  /* Crisp white dashboard container */
  border: 1px solid #eaeef2 !important;
  border-radius: 24px !important;
  padding: 40px !important;
  /* Spacious panel padding */
  margin-top: 40px !important;
  margin-bottom: 40px !important;
  box-shadow: 0 15px 40px rgba(8, 20, 32, 0.04) !important;
}

.blueprint-control-card {
  background: transparent !important;
  /* Flat inside dashboard */
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.blueprint-step-group {
  margin-bottom: 25px !important;
}

.blueprint-step-group:last-child {
  margin-bottom: 0 !important;
}

.blueprint-step-title {
  font-family: var(--title-font) !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  color: var(--title-color) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 12px !important;
}

.blueprint-pill-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.blueprint-pill-btn {
  background: #F5F5F5 !important;
  border: 1px solid #e2e8f0 !important;
  color: var(--title-color) !important;
  padding: 12px 16px !important;
  border-radius: 10px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  text-align: left !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  outline: none !important;
}

.blueprint-pill-btn:hover {
  background: #f1f5f9 !important;
  border-color: #cbd5e1 !important;
}

.blueprint-pill-btn.active {
  background: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(183, 28, 28, 0.08) !important;
}

.blueprint-pill-btn .badge-icon {
  font-size: 1rem !important;
  opacity: 0.7 !important;
}

.blueprint-pill-btn.active .badge-icon {
  opacity: 1 !important;
}

/* Spec Summary Box */
.blueprint-spec-card {
  margin-top: 25px !important;
  background: #0b1f3a !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  padding: 20px !important;
}

.blueprint-spec-title {
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-bottom: 12px !important;
  font-weight: 700 !important;
}

.blueprint-spec-item {
  display: flex !important;
  justify-content: space-between !important;
  font-size: 0.8rem !important;
  margin-bottom: 8px !important;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1) !important;
  padding-bottom: 6px !important;
}

.blueprint-spec-item:last-child {
  margin-bottom: 0 !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.blueprint-spec-value {
  font-weight: 700 !important;
  color: #ffffff !important;
}

/* Visual Canvas Layout */
.schematic-canvas {
  background: transparent !important;
  /* Flat inside dashboard */
  border: none !important;
  border-radius: 0 !important;
  padding: 0 0 0 40px !important;
  /* Spacing from divider */
  border-left: 1px solid #eaeef2 !important;
  /* Premium vertical divider line */
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  align-items: center !important;
  height: 100% !important;
  box-shadow: none !important;
}

.schematic-flow-wrap {
  display: flex !important;
  flex-direction: column !important;
  /* Stack vertically for balanced hierarchy */
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  flex-grow: 1 !important;
  padding: 20px 0 !important;
  gap: 10px !important;
  /* Vertical gap between items */
}

.schematic-node {
  background: #FAFAFA !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 12px 20px !important;
  width: 280px !important;
  /* Matches control button widths */
  display: grid !important;
  grid-template-columns: 44px 1fr !important;
  /* Icon column, Text column */
  grid-template-rows: auto auto !important;
  /* Title row, Subtitle row */
  column-gap: 15px !important;
  row-gap: 2px !important;
  align-items: center !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s ease !important;
}

.schematic-node:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(11, 31, 58, 0.05) !important;
}

.schematic-node.active-node {
  border-color: var(--theme-color) !important;
  box-shadow: 0 4px 20px rgba(183, 28, 28, 0.08) !important;
}

.schematic-node-icon {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  /* Stretch vertically next to text */
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(183, 28, 28, 0.05) !important;
  color: var(--theme-color) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.15rem !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
}

.schematic-node.active-node .schematic-node-icon {
  background: var(--theme-color) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(183, 28, 28, 0.08) !important;
}

.schematic-node-title {
  grid-column: 2 !important;
  grid-row: 1 !important;
  font-family: var(--title-font) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  color: var(--title-color) !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  align-self: end !important;
  /* Bottom-align to balance with subtitle */
}

.schematic-node-subtitle {
  grid-column: 2 !important;
  grid-row: 2 !important;
  font-size: 0.68rem !important;
  color: var(--light-color) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  margin: 0 !important;
  align-self: start !important;
  /* Top-align to balance with title */
}

/* Connecting Dotted Line SVGs rotated vertically */
.schematic-arrow-wrap {
  flex-grow: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 20px !important;
  height: 35px !important;
  transform: rotate(90deg) !important;
  /* Rotates horizontal arrow to point straight down */
  margin: 2px 0 !important;
}

.schematic-arrow-svg {
  width: 100% !important;
  height: 20px !important;
  overflow: visible !important;
}

.animated-flow-path {
  stroke: var(--theme-color) !important;
  stroke-width: 2px !important;
  stroke-dasharray: 6, 4 !important;
  animation: flow-dash 1.2s linear infinite !important;
}

.schematic-arrow-head {
  fill: var(--theme-color) !important;
}

@keyframes flow-dash {
  to {
    stroke-dashoffset: -20 !important;
  }
}

/* Bottom summary info in blueprint canvas */
.schematic-details-wrap {
  width: 100% !important;
  margin-top: auto !important;
  /* Push to bottom to balance vertical space */
  border-top: 1px solid #e2e8f0 !important;
  padding-top: 20px !important;
}

.schematic-details-title {
  font-family: var(--title-font) !important;
  font-weight: 800 !important;
  font-size: 1.2rem !important;
  color: var(--title-color) !important;
  margin-bottom: 8px !important;
}

.schematic-details-text {
  font-size: 0.82rem !important;
  color: var(--light-color) !important;
  line-height: 1.6 !important;
  margin-bottom: 20px !important;
}

/* ==========================================================================
   Responsive Rules for Visual Power Topology Builder
   ========================================================================== */

@media (max-width: 991px) {
  .product-blueprint-sec {
    padding: 30px 20px !important;
    border-radius: 20px !important;
  }

  .schematic-canvas {
    padding: 30px 0 0 0 !important;
    margin-top: 30px !important;
    border-left: none !important;
    /* Remove vertical divider on mobile */
    border-top: 1px solid #eaeef2 !important;
    /* Add top divider instead */
    height: auto !important;
  }

  .schematic-flow-wrap {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .schematic-node {
    width: 100% !important;
    max-width: 250px !important;
    padding: 15px !important;
  }

  .schematic-arrow-wrap {
    transform: rotate(90deg) !important;
    height: 30px !important;
    margin: 5px 0 !important;
    max-width: 100% !important;
    width: 20px !important;
  }
}

/* ==========================================================================
   Battery Advantages Section Styles (Why Alpha is the Best Battery)
   ========================================================================== */

.battery-advantages-sec {
  background: #FAFAFA !important;
  padding: 80px 0 !important;
  border-top: 1px solid #f1f5f9 !important;
  border-bottom: 1px solid #f1f5f9 !important;
  position: relative !important;
}

.advantage-card {
  background: #FAFAFA !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 30px !important;
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.01) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
  margin-bottom: 0 !important;
}

.advantage-card:hover,
.advantage-card.active-card {
  transform: translateY(-4px) !important;
  border-color: rgba(183, 28, 28, 0.08) !important;
  box-shadow: 0 15px 35px rgba(183, 28, 28, 0.04) !important;
}

.advantage-icon-wrap {
  width: 50px !important;
  height: 50px !important;
  border-radius: 12px !important;
  background: rgba(183, 28, 28, 0.06) !important;
  color: var(--theme-color) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.3rem !important;
  margin-bottom: 20px !important;
  transition: all 0.3s ease !important;
}

.advantage-card:hover .advantage-icon-wrap,
.advantage-card.active-card .advantage-icon-wrap {
  background: var(--theme-color) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(183, 28, 28, 0.08) !important;
}

.advantage-title {
  font-family: var(--title-font) !important;
  font-weight: 800 !important;
  font-size: 1.15rem !important;
  color: var(--title-color) !important;
  margin-bottom: 12px !important;
}

.advantage-desc {
  font-family: var(--body-font) !important;
  font-size: 0.82rem !important;
  color: var(--light-color) !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

/* Center Battery Graphic */
.battery-graphic-wrap {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 280px !important;
  height: 320px !important;
  margin: 0 auto !important;
}

.battery-central-img {
  max-width: 90% !important;
  max-height: 90% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  position: relative !important;
  z-index: 2 !important;
  filter: drop-shadow(0 15px 30px rgba(11, 31, 58, 0.08)) !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.battery-graphic-wrap:hover .battery-central-img {
  transform: translateY(-5px) !important;
}

.battery-glow-ring {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 220px !important;
  height: 220px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(183, 28, 28, 0.06) 0%, rgba(183, 28, 28, 0) 70%) !important;
  z-index: 1 !important;
  transition: background 0.4s ease !important;
  animation: pulse-ring 3s ease-in-out infinite !important;
}

@keyframes pulse-ring {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1) !important;
    opacity: 0.8 !important;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1) !important;
    opacity: 1 !important;
  }
}

/* Connecting Lines SVGs */
.schematic-lines-svg {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 400px !important;
  height: 320px !important;
  z-index: 1 !important;
  pointer-events: none !important;
  overflow: visible !important;
}

.schematic-lines-svg path {
  stroke: #cbd5e1 !important;
  stroke-width: 2px !important;
  stroke-dasharray: 4, 4 !important;
  transition: all 0.3s ease !important;
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
  .battery-advantages-sec {
    padding: 60px 0 !important;
  }

  .battery-graphic-wrap {
    height: 240px !important;
    max-width: 200px !important;
    margin: 30px auto !important;
  }

  .schematic-lines-svg {
    display: none !important;
  }
}

/* ==========================================================================
   Futuristic B2B Compliance Hub Redesign
   ========================================================================== */

:root {
  --active-accent-color: #B71C1C;
  --active-accent-rgb: 214, 40, 40;
}

/* Compliance Section Wrapper */
.product-cert-sec {
  padding: 100px 0 !important;
  border-top: 1px solid #f1f5f9 !important;
  background: radial-gradient(circle at 10% 20%, rgba(248, 250, 252, 0.7) 0%, rgba(255, 255, 255, 1) 90%) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Outer grid system */
.compliance-hub-grid {
  display: grid !important;
  grid-template-columns: 1.1fr 1.9fr !important;
  gap: 40px !important;
  align-items: stretch !important;
  margin-top: 40px !important;
}

/* Left Column - Diagnostic Controls */
.diagnostic-controls {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.diagnostic-card {
  background: #FAFAFA !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 24px !important;
  text-align: left !important;
  cursor: pointer !important;
  position: relative !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  box-shadow: 0 4px 12px rgba(11, 31, 58, 0.01) !important;
  overflow: hidden !important;
  outline: none !important;
}

/* Base border left highlight indicator */
.diagnostic-card::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 5px !important;
  background: transparent !important;
  transition: background 0.3s ease !important;
}

/* Specific Card Accent Hover/Active Colors */
.diagnostic-card.cert-cpri:hover,
.diagnostic-card.cert-cpri.active {
  border-color: #B71C1C !important;
  box-shadow: 0 10px 25px rgba(183, 28, 28, 0.08) !important;
}

.diagnostic-card.cert-cpri::before {
  background: #B71C1C !important;
  opacity: 0;
}

.diagnostic-card.cert-cpri.active::before {
  opacity: 1 !important;
}

.diagnostic-card.cert-iso:hover,
.diagnostic-card.cert-iso.active {
  border-color: #2563eb !important;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08) !important;
}

.diagnostic-card.cert-iso::before {
  background: #2563eb !important;
  opacity: 0;
}

.diagnostic-card.cert-iso.active::before {
  opacity: 1 !important;
}

.diagnostic-card.cert-stqc:hover,
.diagnostic-card.cert-stqc.active {
  border-color: #10b981 !important;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.08) !important;
}

.diagnostic-card.cert-stqc::before {
  background: #10b981 !important;
  opacity: 0;
}

.diagnostic-card.cert-stqc.active::before {
  opacity: 1 !important;
}

.diagnostic-card.cert-nsic:hover,
.diagnostic-card.cert-nsic.active {
  border-color: #f59e0b !important;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.08) !important;
}

.diagnostic-card.cert-nsic::before {
  background: #f59e0b !important;
  opacity: 0;
}

.diagnostic-card.cert-nsic.active::before {
  opacity: 1 !important;
}

/* Micro Card Content */
.diag-icon-box {
  width: 56px !important;
  height: 56px !important;
  border-radius: 14px !important;
  background: #F5F5F5 !important;
  color: var(--light-color) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.4rem !important;
  transition: all 0.3s ease !important;
  flex-shrink: 0 !important;
}

.diagnostic-card:hover .diag-icon-box {
  transform: scale(1.05) !important;
}

/* Card active icon shift styling */
.diagnostic-card.cert-cpri.active .diag-icon-box {
  background: rgba(183, 28, 28, 0.08) !important;
  color: #B71C1C !important;
}

.diagnostic-card.cert-iso.active .diag-icon-box {
  background: rgba(37, 99, 235, 0.08) !important;
  color: #2563eb !important;
}

.diagnostic-card.cert-stqc.active .diag-icon-box {
  background: rgba(16, 185, 129, 0.08) !important;
  color: #10b981 !important;
}

.diagnostic-card.cert-nsic.active .diag-icon-box {
  background: rgba(245, 158, 11, 0.08) !important;
  color: #f59e0b !important;
}

.diag-meta {
  flex-grow: 1 !important;
}

.diag-status-dot {
  font-size: 0.65rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-weight: 700 !important;
  color: var(--light-color) !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-bottom: 4px !important;
}

.diag-status-dot::before {
  content: "" !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: currentColor !important;
  display: inline-block !important;
}

.diagnostic-card.active .diag-status-dot {
  color: #2bb673 !important;
}

.diagnostic-card.active .diag-status-dot::before {
  animation: blink-dot 1.5s ease-in-out infinite !important;
}

.diag-title {
  font-family: var(--title-font) !important;
  font-weight: 800 !important;
  font-size: 1.1rem !important;
  color: var(--title-color) !important;
  margin-bottom: 2px !important;
}

.diag-subtitle {
  font-size: 0.78rem !important;
  color: var(--light-color) !important;
  margin-bottom: 0 !important;
}

.diag-arrow {
  font-size: 0.95rem !important;
  color: #cbd5e1 !important;
  transition: all 0.3s ease !important;
}

.diagnostic-card.active .diag-arrow {
  transform: translateX(5px) !important;
}

.diagnostic-card.cert-cpri.active .diag-arrow {
  color: #B71C1C !important;
}

.diagnostic-card.cert-iso.active .diag-arrow {
  color: #2563eb !important;
}

.diagnostic-card.cert-stqc.active .diag-arrow {
  color: #10b981 !important;
}

.diagnostic-card.cert-nsic.active .diag-arrow {
  color: #f59e0b !important;
}

/* Right Column - Laboratory Monitor Console */
.diagnostic-monitor {
  background: #0b1329 !important;
  /* Cyber space dark background */
  border: 1px solid rgba(var(--active-accent-rgb), 0.18) !important;
  border-radius: 30px !important;
  padding: 40px !important;
  color: #ffffff !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  box-shadow: 0 30px 60px rgba(11, 19, 41, 0.4) !important;
  transition: border-color 0.4s ease, box-shadow 0.4s ease !important;
  overflow: hidden !important;
}

/* Background grid network overlay */
.diagnostic-monitor::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background-image: radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px) !important;
  background-size: 24px 24px !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.monitor-content-wrap {
  position: relative !important;
  z-index: 2 !important;
}

/* Ticket/ID Stamp header layout */
.monitor-header-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1) !important;
  padding-bottom: 25px !important;
  margin-bottom: 25px !important;
}

.monitor-reg-badge {
  font-family: 'Space Mono', monospace !important;
  font-size: 0.68rem !important;
  letter-spacing: 1.5px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  color: var(--active-accent-color) !important;
  display: inline-block !important;
  margin-bottom: 12px !important;
  transition: color 0.3s ease !important;
}

.monitor-title {
  font-family: var(--title-font) !important;
  font-weight: 800 !important;
  font-size: 1.7rem !important;
  color: #ffffff !important;
  margin-bottom: 6px !important;
  letter-spacing: -0.3px !important;
}

.monitor-subtitle {
  font-size: 0.88rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-bottom: 0 !important;
}

/* Laboratory Seal Scanner Box */
.monitor-scanner-wrap {
  width: 90px !important;
  height: 90px !important;
  background: #FAFAFA !important;
  border-radius: 16px !important;
  padding: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.monitor-scanner-wrap img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  transition: opacity 0.3s ease !important;
}

/* Dynamic scanning laser beam */
.scanner-laser {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  background: var(--active-accent-color) !important;
  box-shadow: 0 0 10px var(--active-accent-color), 0 0 4px var(--active-accent-color) !important;
  z-index: 10 !important;
  pointer-events: none !important;
  animation: laser-sweep 2.5s ease-in-out infinite !important;
  opacity: 0.8 !important;
}

@keyframes laser-sweep {

  0%,
  100% {
    top: 5%;
    opacity: 0.2;
  }

  50% {
    top: 90%;
    opacity: 0.9;
  }
}

/* Oscilloscope graphic telemetry */
.monitor-telemetry-row {
  display: grid !important;
  grid-template-columns: 1fr 1.2fr !important;
  gap: 30px !important;
  align-items: center !important;
  margin-bottom: 30px !important;
}

.oscilloscope-box {
  background: rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 16px !important;
  height: 76px !important;
  position: relative !important;
  overflow: hidden !important;
}

.oscilloscope-grid {
  position: absolute !important;
  top: 0 !important;
  left: 0;
  right: 0;
  bottom: 0 !important;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) !important;
  background-size: 15px 15px !important;
  z-index: 1 !important;
}

.oscilloscope-svg {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 200% !important;
  /* Extra width for loop horizontal shift */
  height: 100% !important;
  z-index: 2 !important;
}

.oscilloscope-path {
  animation: wave-run 3s linear infinite !important;
  transform-origin: left center !important;
  transition: stroke 0.3s ease !important;
}

@keyframes wave-run {
  0% {
    transform: translateX(0);
  }

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

.scope-meta {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.8rem !important;
}

.scope-text-desc {
  color: #ffffff !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
}

/* Parameters Progress Indicator Grid */
.monitor-params-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  margin-bottom: 30px !important;
}

.param-meter-card {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 16px !important;
  padding: 16px 20px !important;
  transition: transform 0.3s ease !important;
}

.param-meter-card:hover {
  transform: translateY(-2px) !important;
}

.param-meter-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 8px !important;
}

.param-meter-label {
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.param-meter-value {
  font-family: 'Space Mono', monospace !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: var(--active-accent-color) !important;
  transition: color 0.3s ease !important;
}

.param-bar-track {
  height: 6px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border-radius: 4px !important;
  overflow: hidden !important;
}

.param-bar-fill {
  height: 100% !important;
  background: var(--active-accent-color) !important;
  border-radius: 4px !important;
  width: 0% !important;
  /* Updated dynamically via JS */
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease !important;
}

/* Interactive CTA Download Hub */
.monitor-footer-cta {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 25px !important;
  margin-top: auto !important;
}

.monitor-trust-note {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.monitor-trust-note i {
  color: var(--active-accent-color) !important;
  transition: color 0.3s ease !important;
}

.monitor-btn-glow {
  box-shadow: 0 4px 20px rgba(var(--active-accent-rgb), 0.25) !important;
  transition: all 0.3s ease !important;
}

.monitor-btn-glow:hover {
  box-shadow: 0 6px 25px rgba(var(--active-accent-rgb), 0.45) !important;
}

/* ==========================================================================
   Responsive Rules
   ========================================================================== */
@media (max-width: 1199px) {
  .compliance-hub-grid {
    grid-template-columns: 1.2fr 1.8fr !important;
    gap: 30px !important;
  }

  .monitor-title {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 991px) {
  .compliance-hub-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .diagnostic-controls {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .product-cert-sec {
    padding: 70px 0 !important;
  }

  .diagnostic-controls {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .diagnostic-card {
    padding: 20px !important;
  }

  .monitor-telemetry-row {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .monitor-params-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .diagnostic-monitor {
    padding: 30px !important;
  }

  .monitor-scanner-wrap {
    width: 80px !important;
    height: 80px !important;
  }

  .monitor-title {
    font-size: 1.35rem !important;
  }
}

@media (max-width: 480px) {
  .monitor-header-row {
    flex-direction: column-reverse !important;
    align-items: flex-start !important;
  }

  .monitor-scanner-wrap {
    align-self: flex-start !important;
  }

  .monitor-footer-cta a {
    width: 100% !important;
    text-align: center !important;
  }
}

/* ==========================================================================
   Premium Mobile Sidemenu Visual Overrides
   ========================================================================== */

.sidemenu-wrapper {
  background-color: rgba(8, 20, 32, 0.4) !important;
  backdrop-filter: blur(8px) !important;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  transition-delay: 0s !important;
  -webkit-transition-delay: 0s !important;
}

.sidemenu-wrapper .sidemenu-content {
  background: #FAFAFA !important;
  /* Premium clean white background */
  border-left: 1px solid rgba(8, 20, 32, 0.06) !important;
  box-shadow: -10px 0 40px rgba(8, 20, 32, 0.08) !important;
  color: #081420 !important;
  padding: 80px 40px 40px 40px !important;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  transition-delay: 0s !important;
  -webkit-transition-delay: 0s !important;
  display: block !important;
  overflow-y: auto !important;
}

.sidemenu-wrapper.show {
  transition-delay: 0s !important;
  -webkit-transition-delay: 0s !important;
}

.sidemenu-wrapper.show .sidemenu-content {
  transition-delay: 0s !important;
  -webkit-transition-delay: 0s !important;
  right: 0 !important;
}

/* Custom scrollbar for light side drawer */
.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
  width: 4px !important;
  background-color: #FAFAFA !important;
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
  background-color: #FAFAFA !important;
  box-shadow: none !important;
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-thumb {
  background-color: rgba(8, 20, 32, 0.1) !important;
  border-radius: 2px !important;
}

/* Close Button Styling */
.sidemenu-wrapper .closeButton {
  border: 1px solid rgba(8, 20, 32, 0.1) !important;
  background-color: rgba(8, 20, 32, 0.03) !important;
  color: #081420 !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 10px rgba(8, 20, 32, 0.05) !important;
  top: 25px !important;
  right: 25px !important;
  width: 42px !important;
  height: 42px !important;
  line-height: 40px !important;
  font-size: 20px !important;
  border-radius: 50% !important;
}

.sidemenu-wrapper .closeButton:hover {
  background-color: #B71C1C !important;
  color: #ffffff !important;
  border-color: #B71C1C !important;
  transform: rotate(90deg) scale(1.05) !important;
  box-shadow: 0 0 15px rgba(183, 28, 28, 0.12) !important;
}

/* About Section */
.sidemenu-wrapper .th-widget-about .about-logo {
  margin-bottom: 25px !important;
  display: inline-block !important;
  background: rgba(8, 20, 32, 0.02) !important;
  padding: 10px 18px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(8, 20, 32, 0.06) !important;
}

.sidemenu-wrapper .th-widget-about .about-logo img {
  filter: brightness(1) contrast(1.05) !important;
  max-width: 130px !important;
}

.sidemenu-wrapper .about-text {
  color: #4b5563 !important;
  font-size: 0.85rem !important;
  line-height: 1.6 !important;
  margin-bottom: 30px !important;
}

/* Custom separator line */
.sidemenu-wrapper .widget::after {
  content: "" !important;
  display: block !important;
  height: 1px !important;
  background: linear-gradient(90deg, rgba(8, 20, 32, 0) 0%, rgba(8, 20, 32, 0.08) 50%, rgba(8, 20, 32, 0) 100%) !important;
  margin: 30px 0 !important;
  border: none !important;
}

.sidemenu-wrapper .widget:last-of-type::after {
  display: none !important;
}

/* Widget Header Title */
.sidemenu-wrapper .widget .widget_title {
  color: #081420 !important;
  font-family: var(--title-font) !important;
  font-weight: 800 !important;
  font-size: 1.15rem !important;
  margin-bottom: 20px !important;
  letter-spacing: -0.3px !important;
  position: relative !important;
}

/* Contacts Redesign - White Clean Cards */
.sidemenu-wrapper .footer-info {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  padding: 14px 20px !important;
  max-width: 100% !important;
  background: rgba(8, 20, 32, 0.02) !important;
  border: 1px solid rgba(8, 20, 32, 0.06) !important;
  border-radius: 14px !important;
  margin-bottom: 14px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  color: #4b5563 !important;
  text-align: left !important;
}

.sidemenu-wrapper .footer-info:hover {
  border-color: rgba(183, 28, 28, 0.08) !important;
  background: rgba(183, 28, 28, 0.02) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(8, 20, 32, 0.04) !important;
}

.sidemenu-wrapper .footer-info strong {
  display: block !important;
  font-size: 0.72rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: rgba(8, 20, 32, 0.5) !important;
  margin-bottom: 2px !important;
  font-weight: 600 !important;
}

.sidemenu-wrapper .footer-info a {
  color: #081420 !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  transition: color 0.3s ease !important;
}

.sidemenu-wrapper .footer-info a:hover {
  color: #B71C1C !important;
}

/* Contacts icon container */
.sidemenu-wrapper .footer-info i {
  position: static !important;
  /* override absolute */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  background-color: rgba(183, 28, 28, 0.08) !important;
  color: #B71C1C !important;
  font-size: 13px !important;
  border-radius: 8px !important;
  margin-right: 15px !important;
  flex-shrink: 0 !important;
  transition: all 0.3s ease !important;
}

.sidemenu-wrapper .footer-info:hover i {
  background-color: #B71C1C !important;
  color: #ffffff !important;
  box-shadow: 0 0 10px rgba(183, 28, 28, 0.12) !important;
  transform: scale(1.05) !important;
}

/* Social icons layout */
.sidemenu-wrapper .th-social {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.sidemenu-wrapper .th-social a {
  width: 38px !important;
  height: 38px !important;
  line-height: 36px !important;
  font-size: 14px !important;
  border-radius: 10px !important;
  background-color: rgba(8, 20, 32, 0.02) !important;
  border: 1px solid rgba(8, 20, 32, 0.08) !important;
  color: rgba(8, 20, 32, 0.6) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  outline: none !important;
}

/* Social media brand colors on hover */
.sidemenu-wrapper .th-social a:hover {
  transform: translateY(-3px) scale(1.05) !important;
  color: #ffffff !important;
}

.sidemenu-wrapper .th-social a[href*="facebook.com"]:hover {
  background-color: #1877f2 !important;
  border-color: #1877f2 !important;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.25) !important;
}

.sidemenu-wrapper .th-social a[href*="twitter.com"]:hover,
.sidemenu-wrapper .th-social a[href*="x.com"]:hover {
  background-color: #111111 !important;
  border-color: #111111 !important;
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.25) !important;
}

.sidemenu-wrapper .th-social a[href*="linkedin.com"]:hover {
  background-color: #0a66c2 !important;
  border-color: #0a66c2 !important;
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.25) !important;
}

.sidemenu-wrapper .th-social a[href*="instagram.com"]:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aec 90%) !important;
  border-color: #d6249f !important;
  box-shadow: 0 4px 12px rgba(214, 36, 159, 0.25) !important;
}

.sidemenu-wrapper .th-social a[href*="youtube.com"]:hover {
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.25) !important;
}

/* Mobile responsive fixes */
@media (max-width: 575px) {
  .sidemenu-wrapper .sidemenu-content {
    width: 100% !important;
    max-width: 320px !important;
    padding: 70px 25px 30px 25px !important;
    background: #FAFAFA !important;
  }

  .sidemenu-wrapper .footer-info {
    padding: 12px 15px !important;
  }

  .sidemenu-wrapper .footer-info i {
    width: 32px !important;
    height: 32px !important;
    font-size: 12px !important;
    margin-right: 12px !important;
  }
}

/* ==========================================
   Phase 3 Mobile Menu Redesign (Dark Glassmorphic)
   ========================================== */

/* Outer wrapper overlay */
.th-menu-wrapper {
  background-color: rgba(4, 10, 18, 0.7) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  transition-delay: 0s !important;
  -webkit-transition-delay: 0s !important;
}

/* Menu area drawer */
.th-menu-wrapper .th-menu-area {
  background: linear-gradient(180deg, rgba(8, 20, 32, 0.95) 0%, rgba(5, 12, 20, 0.98) 100%) !important;
  backdrop-filter: blur(25px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 15px 0 40px rgba(0, 0, 0, 0.08) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  align-items: stretch !important;
  text-align: left !important;
  max-width: 320px !important;
  padding: 0 !important;
  height: 100% !important;
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease !important;
  transition-delay: 0s !important;
  -webkit-transition-delay: 0s !important;
}

.th-menu-wrapper.th-body-visible .th-menu-area {
  left: 0 !important;
  transition-delay: 0s !important;
  -webkit-transition-delay: 0s !important;
}

/* Close button custom design */
.th-menu-wrapper .th-menu-toggle {
  background-color: rgba(183, 28, 28, 0.06) !important;
  border: 1px solid rgba(183, 28, 28, 0.12) !important;
  color: #B71C1C !important;
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
  top: 25px !important;
  right: -18px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.th-menu-wrapper .th-menu-toggle:hover {
  background-color: #B71C1C !important;
  color: #ffffff !important;
  border-color: #B71C1C !important;
  box-shadow: 0 0 15px rgba(183, 28, 28, 0.12) !important;
  transform: scale(1.05) !important;
}

/* Mobile logo container */
.th-menu-wrapper .mobile-logo {
  padding: 35px 20px 25px 20px !important;
  background: rgba(8, 20, 32, 0.4) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  text-align: center !important;
}

.th-menu-wrapper .mobile-logo img {
  max-height: 72px !important;
  width: auto !important;
  object-fit: contain !important;
  display: inline-block !important;
  margin: 0 auto !important;
}

/* Navigation scroll area */
.th-mobile-menu {
  flex-grow: 1 !important;
  overflow-y: auto !important;
  max-height: none !important;
  padding: 20px 25px !important;
  margin: 0 !important;
}

/* Scrollbar styles for modern look */
.th-mobile-menu::-webkit-scrollbar {
  width: 4px !important;
}

.th-mobile-menu::-webkit-scrollbar-track {
  background: transparent !important;
}

.th-mobile-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 2px !important;
}

/* Navigation items reset */
.th-mobile-menu ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
}

.th-mobile-menu ul li:last-child {
  border-bottom: none !important;
}

/* Navigation Links */
.th-mobile-menu ul li a {
  color: rgba(255, 255, 255, 0.75) !important;
  font-family: var(--title-font) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  padding: 16px 0 16px 20px !important;
  position: relative !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: block !important;
  border-radius: 8px !important;
}

/* Remove default template bullet icon */
.th-mobile-menu ul li a:before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) scaleX(0) !important;
  width: 3px !important;
  height: 16px !important;
  background-color: #B71C1C !important;
  border-radius: 0 4px 4px 0 !important;
  transition: transform 0.3s ease, background-color 0.3s ease !important;
  transform-origin: left !important;
}

/* Link active/hover styles */
.th-mobile-menu ul li a:hover,
.th-mobile-menu ul li.th-active>a {
  color: #ffffff !important;
  background: linear-gradient(90deg, rgba(183, 28, 28, 0.12) 0%, rgba(183, 28, 28, 0) 100%) !important;
  padding-left: 28px !important;
}

.th-mobile-menu ul li a:hover:before,
.th-mobile-menu ul li.th-active>a:before {
  transform: translateY(-50%) scaleY(1) !important;
  background-color: #B71C1C !important;
  box-shadow: 0 0 8px rgba(183, 28, 28, 0.12) !important;
}

/* Telemetry Footer Section */
.th-mobile-menu-footer {
  display: none !important;
  /* Hide phone/email to allow whole tabs in mob view */
  padding: 25px !important;
  background: rgba(4, 10, 18, 0.6) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* Status Indicator style */
.th-mobile-menu-footer .telemetry-status {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 18px !important;
}

.th-mobile-menu-footer .telemetry-status .pulse-dot {
  width: 8px !important;
  height: 8px !important;
  background-color: #2bb673 !important;
  border-radius: 50% !important;
  margin-right: 10px !important;
  display: inline-block !important;
  box-shadow: 0 0 0 rgba(43, 182, 115, 0.4) !important;
  animation: telemetryPulse 2s infinite !important;
}

.th-mobile-menu-footer .telemetry-status .status-text {
  font-family: var(--title-font) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}

/* Footer contact card block */
.th-mobile-menu-footer .footer-contact-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.th-mobile-menu-footer .contact-item {
  display: flex !important;
  align-items: center !important;
  padding: 10px 14px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 10px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.th-mobile-menu-footer .contact-item:hover {
  background: rgba(183, 28, 28, 0.08) !important;
  border-color: rgba(183, 28, 28, 0.08) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

.th-mobile-menu-footer .contact-item i {
  color: #B71C1C !important;
  margin-right: 12px !important;
  font-size: 13px !important;
  width: 16px !important;
  text-align: center !important;
}

/* Status Dot Pulsing animation */
@keyframes telemetryPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.7);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(43, 182, 115, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(43, 182, 115, 0);
  }
}

/* Hide red cursor follower dot in mobile view to prevent trailing touch markers */
@media (max-width: 991px) {
  .cursor-follower {
    display: none !important;
  }
}

/* About Section Badge Layout Fix & Text Justification */
.about-area .badge {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  margin-bottom: 5px !important;
}

.about-area .about-overview,
.about-area .about-intro {
  text-align: justify !important;
  text-justify: inter-word !important;
}

@media (max-width: 991px) {
  .about-area .sec-desc {
    text-align: justify !important;
    text-justify: inter-word !important;
  }
}

/* Footer layout adjustment for mobile: Useful Links & Our Solutions side-by-side */
@media (max-width: 767px) {

  .footer-wrapper .widget-area .row>div:nth-child(2),
  .footer-wrapper .widget-area .row>div:nth-child(3) {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

/* Desktop Navigation Hover & Active States Override */
.main-menu.style2>ul>li>a:hover,
.main-menu.style2>ul>li>a.active {
  color: var(--theme-color) !important;
}

.main-menu.style2>ul>li>a:hover:before,
.main-menu.style2>ul>li>a.active:before {
  background-color: rgba(183, 28, 28, 0.08) !important;
  -webkit-transform: scaleX(1) !important;
  transform: scaleX(1) !important;
}

/* Mobile Navigation Active State Highlight */
.th-mobile-menu a.active {
  color: var(--theme-color) !important;
  font-weight: 700 !important;
}

/* ==========================================
   Specials Page Premium Redesign Overrides
   ========================================== */

.specials-selector-hub {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.specials-selector-card {
  background: #FAFAFA !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 16px !important;
  padding: 20px 20px 32px 20px !important;
  /* Spacious bottom padding for interactive hint */
  cursor: pointer !important;
  position: relative !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03) !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.specials-selector-card::after {
  content: "Click to Select" !important;
  position: absolute !important;
  bottom: 12px !important;
  left: 20px !important;
  font-family: var(--body-font) !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #94a3b8 !important;
  opacity: 0.85 !important;
  transition: all 0.2s ease !important;
}

.specials-selector-card:hover::after {
  content: "Click to View →" !important;
  color: var(--theme-color) !important;
  opacity: 1 !important;
}

.specials-selector-card.active::after {
  content: "Active Model ✓" !important;
  color: var(--theme-color) !important;
  opacity: 1 !important;
  font-weight: 800 !important;
}

.specials-selector-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 24px -5px rgba(183, 28, 28, 0.08), 0 4px 6px -2px rgba(183, 28, 28, 0.04) !important;
  border-color: rgba(183, 28, 28, 0.08) !important;
}

.specials-selector-card.active {
  border-color: var(--theme-color) !important;
  box-shadow: 0 12px 24px -5px rgba(183, 28, 28, 0.06), 0 4px 6px -2px rgba(183, 28, 28, 0.08) !important;
  background: linear-gradient(180deg, #ffffff 0%, rgba(183, 28, 28, 0.02) 100%) !important;
}

.specials-led {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: #CBD5E1 !important;
  transition: all 0.3s ease !important;
}

.specials-selector-card.active .specials-led {
  background-color: var(--theme-color) !important;
  box-shadow: 0 0 0 rgba(183, 28, 28, 0.12) !important;
  animation: specialsRedPulse 2s infinite !important;
}

@keyframes specialsRedPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(183, 28, 28, 0.12);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(183, 28, 28, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(183, 28, 28, 0);
  }
}

.specials-selector-card .card-icon-box {
  width: 48px !important;
  height: 48px !important;
  border-radius: 12px !important;
  background: #F1F5F9 !important;
  color: #64748B !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.25rem !important;
  margin-bottom: 15px !important;
  transition: all 0.3s ease !important;
}

.specials-selector-card:hover .card-icon-box {
  color: var(--theme-color) !important;
}

.specials-selector-card.active .card-icon-box {
  background: rgba(183, 28, 28, 0.1) !important;
  color: var(--theme-color) !important;
}

.specials-selector-card .card-title {
  font-family: var(--title-font) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--title-color) !important;
  margin-bottom: 4px !important;
}

.specials-selector-card .card-highlight {
  font-family: var(--body-font) !important;
  font-size: 0.8rem !important;
  color: var(--light-color) !important;
  font-weight: 500 !important;
  transition: color 0.3s ease !important;
}

.specials-selector-card.active .card-highlight {
  color: var(--theme-color) !important;
  font-weight: 600 !important;
}

/* Showcase Dashboard Panel */
.specials-showcase-panel {
  background: #FAFAFA !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 24px !important;
  padding: 45px !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.03), 0 10px 10px -5px rgba(0, 0, 0, 0.01) !important;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  opacity: 1;
  transform: translateY(0);
}

.specials-showcase-panel:not(:last-child) {
  margin-bottom: 50px !important;
}

.specials-image-container {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  height: 100% !important;
  min-height: 380px !important;
  background: #F5F5F5 !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.02) !important;
  border: 1px solid #F1F5F9 !important;
}

/* Add a technical wireframe decorative pattern under image */
.specials-image-container::before {
  content: "" !important;
  position: absolute !important;
  top: 15px !important;
  left: 15px !important;
  right: 15px !important;
  bottom: 15px !important;
  border: 1px dashed rgba(0, 0, 0, 0.05) !important;
  border-radius: 10px !important;
  pointer-events: none !important;
}

/* Technical Corner brackets */
.specials-image-container::after {
  content: "" !important;
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  width: 15px !important;
  height: 15px !important;
  border-top: 2px solid rgba(183, 28, 28, 0.08) !important;
  border-left: 2px solid rgba(183, 28, 28, 0.08) !important;
  pointer-events: none !important;
}

.specials-image-corner-br {
  position: absolute !important;
  bottom: 10px !important;
  right: 10px !important;
  width: 15px !important;
  height: 15px !important;
  border-bottom: 2px solid rgba(183, 28, 28, 0.08) !important;
  border-right: 2px solid rgba(183, 28, 28, 0.08) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.specials-image-container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.specials-image-container:hover img {
  transform: scale(1.03) !important;
}

.image-tech-overlay {
  position: absolute !important;
  bottom: 20px !important;
  left: 20px !important;
  right: 20px !important;
  background: rgba(8, 20, 32, 0.9) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  padding: 12px 18px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  z-index: 3 !important;
}

.image-tech-overlay .tech-col {
  display: flex !important;
  flex-direction: column !important;
}

.image-tech-overlay .tech-label {
  font-family: var(--title-font) !important;
  font-size: 9px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-weight: 700 !important;
  margin-bottom: 2px !important;
}

.image-tech-overlay .tech-value {
  font-family: var(--body-font) !important;
  font-size: 12px !important;
  color: #ffffff !important;
  font-weight: 600 !important;
}

/* Specs Panel Description Side */
.specials-showcase-panel .panel-subtitle {
  font-family: var(--title-font) !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: var(--theme-color) !important;
  font-weight: 700 !important;
  display: block !important;
  margin-bottom: 8px !important;
}

.specials-showcase-panel .panel-title {
  font-family: var(--title-font) !important;
  font-size: 1.85rem !important;
  font-weight: 800 !important;
  color: var(--title-color) !important;
  margin-bottom: 15px !important;
  line-height: 1.25 !important;
}

.specials-showcase-panel .panel-desc {
  font-family: var(--body-font) !important;
  font-size: 0.95rem !important;
  color: var(--body-color) !important;
  line-height: 1.6 !important;
  margin-bottom: 25px !important;
}

/* Telemetry Grid & Progress Meters */
.telemetry-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  margin-bottom: 28px !important;
}

.telemetry-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.telemetry-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.telemetry-name {
  font-family: var(--title-font) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--title-color) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.telemetry-readout {
  font-family: var(--title-font) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  color: var(--theme-color) !important;
}

.telemetry-track {
  height: 6px !important;
  background: #F1F5F9 !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  position: relative !important;
}

.telemetry-fill {
  height: 100% !important;
  width: 0% !important;
  background: linear-gradient(90deg, var(--theme-color) 0%, #D32F2F 100%) !important;
  border-radius: 4px !important;
  transition: width 1.2s cubic-bezier(0.1, 0.8, 0.1, 1) !important;
  box-shadow: 0 0 6px rgba(183, 28, 28, 0.08) !important;
}

/* Features checklist */
.specials-checklist {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 35px 0 !important;
}

.specials-checklist li {
  font-family: var(--body-font) !important;
  font-size: 0.95rem !important;
  color: #334155 !important;
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: flex-start !important;
  line-height: 1.45 !important;
}

.specials-checklist li i {
  color: var(--theme-color) !important;
  margin-right: 12px !important;
  font-size: 0.95rem !important;
  margin-top: 3px !important;
  flex-shrink: 0 !important;
}

/* Button animation tweaks */
.specials-showcase-panel .th-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.specials-showcase-panel .th-btn i {
  transition: transform 0.3s ease !important;
}

.specials-showcase-panel .th-btn:hover i {
  transform: translateX(4px) !important;
}

/* Mobile responsive layout for Specials page */
@media (max-width: 991px) {
  .specials-selector-hub {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 15px !important;
    padding-bottom: 15px !important;
    margin-bottom: 25px !important;
    scrollbar-width: thin !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .specials-selector-hub::-webkit-scrollbar {
    height: 4px !important;
  }

  .specials-selector-hub::-webkit-scrollbar-track {
    background: #F1F5F9 !important;
    border-radius: 4px !important;
  }

  .specials-selector-hub::-webkit-scrollbar-thumb {
    background: #CBD5E1 !important;
    border-radius: 4px !important;
  }

  .specials-selector-card {
    flex: 0 0 250px !important;
    scroll-snap-align: start !important;
    padding: 16px !important;
  }

  .specials-showcase-panel {
    padding: 30px 20px !important;
    border-radius: 16px !important;
  }

  .specials-image-container {
    min-height: 250px !important;
    margin-bottom: 30px !important;
  }

  .telemetry-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
}

/* ==========================================
   Solutions Page Premium Styles
   ========================================== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 40px;
}

.solution-card {
  background: #FAFAFA;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.solution-img-wrap {
  height: 230px;
  overflow: hidden;
  position: relative;
  background: #F5F5F5;
}

.solution-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: var(--theme-color) !important;
  box-shadow: 0 20px 30px rgba(8, 20, 32, 0.08);
}

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

.solution-info {
  padding: 30px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.solution-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.solution-card-title {
  font-family: var(--title-font);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--title-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.solution-card-desc {
  font-family: var(--body-font);
  font-size: 0.92rem;
  color: var(--light-color);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.solution-action-wrap {
  margin-top: auto;
}

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

  .solution-img-wrap {
    height: 200px;
  }
}

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

/* ==========================================
   Equal Height Testimonial Cards
   ========================================== */
.testiSlide1 .swiper-wrapper {
  display: flex !important;
}

.testiSlide1 .swiper-slide {
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
}

.testiSlide1 .testi-card {
  position: relative !important;
  background: #FAFAFA !important;
  border: 1px solid rgba(15, 23, 42, 0.07) !important;
  border-radius: 20px !important;
  padding: 35px 30px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.04) !important;
  overflow: hidden !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

/* Subtle background decorative quote mark */
.testi-card::after {
  content: "“" !important;
  position: absolute !important;
  top: 15px !important;
  right: 25px !important;
  font-family: Georgia, serif !important;
  font-size: 8rem !important;
  font-weight: bold !important;
  line-height: 1 !important;
  color: var(--theme-color) !important;
  opacity: 0.05 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.testi-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(183, 28, 28, 0.08) !important;
  box-shadow: 0 20px 40px -15px rgba(11, 31, 58, 0.08) !important;
}

.testi-card:hover::after {
  opacity: 0.08 !important;
  transform: scale(1.05) !important;
}

/* Gold stars custom styling */
.testi-card .box-review {
  margin-top: 0 !important;
  margin-bottom: 15px !important;
  display: flex !important;
  gap: 3px !important;
}

.testi-card .box-review i {
  color: #F59E0B !important;
  /* Premium Amber Gold */
  font-size: 13px !important;
}

/* Review Title styling */
.testi-card .box-title2 {
  font-family: var(--title-font) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--title-color) !important;
  margin-bottom: 12px !important;
  line-height: 1.4 !important;
  max-width: 100% !important;
}

/* Review Text body styling */
.testi-card .box-text {
  font-family: var(--body-font) !important;
  font-size: 0.925rem !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  color: #475569 !important;
  /* Dark Slate Gray */
  margin-bottom: 25px !important;
  flex-grow: 1 !important;
}

/* Author wrapper styling */
.testi-card .box-wrapp {
  display: flex !important;
  justify-content: space-between !important;
  margin-top: auto !important;
}

.testi-card .box-profile {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

/* Author Avatar styling (user icon fallback) */
.testi-card .box-author {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  background: rgba(183, 28, 28, 0.05) !important;
  border: 1px solid rgba(183, 28, 28, 0.12) !important;
  border-radius: 50% !important;
  /* Circular shape */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.testi-card:hover .box-author {
  background: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
}

.testi-card .box-author i {
  color: var(--theme-color) !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
}

.testi-card:hover .box-author i {
  color: #ffffff !important;
}

.testi-card .box-info {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

/* Author Name */
.testi-card .box-title {
  font-family: var(--title-font) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: var(--title-color) !important;
  margin: 0 0 2px 0 !important;
}

/* Author Designation */
.testi-card .box-desig {
  font-family: var(--body-font) !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  color: #64748B !important;
}

/* Testimonial slider navigation buttons styling */
.slider-area .slider-arrow {
  background: #FAFAFA !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  color: var(--title-color) !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
}

.slider-area .slider-arrow:hover {
  background: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(183, 28, 28, 0.08) !important;
}

#testi-sec {
  background: radial-gradient(circle at 10% 10%, rgba(183, 28, 28, 0.02) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(11, 31, 58, 0.015) 0%, transparent 40%) !important;
  position: relative !important;
}

/* ==========================================
   Integrity Consult Section Styling Refinements
   ========================================== */

/* Layout 45% / 55% on Desktop */
@media (min-width: 992px) {
  .consult-layout-row>.col-form {
    flex: 0 0 45% !important;
    max-width: 45% !important;
  }

  .consult-layout-row>.col-badges {
    flex: 0 0 55% !important;
    max-width: 55% !important;
  }
}

/* ==========================================
   Engineering Operations Center Styles
   ========================================== */

#calc-sec {
  background: radial-gradient(circle at 10% 20%, rgba(183, 28, 28, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(43, 182, 115, 0.04) 0%, transparent 45%),
    #030914 !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Technical blueprint grid overlay */
#calc-sec::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px) !important;
  background-size: 35px 35px !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

#calc-sec .container {
  position: relative !important;
  z-index: 2 !important;
}

/* Columns flex stretching (Desktop Only) */
@media (min-width: 992px) {
  .consult-layout-row {
    display: flex !important;
    align-items: stretch !important;
  }

  .consult-layout-row>.col-form,
  .consult-layout-row>.col-badges {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-self: stretch !important;
    /* Force matching column heights */
    height: auto !important;
  }
}

@media (max-width: 991px) {
  .consult-layout-row>.col-form {
    margin-bottom: 30px !important;
  }
}

/* Glass Engineering Form Card */
.premium-consult-card {
  background: rgba(13, 22, 38, 0.75) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 16px !important;
  padding: 30px 30px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-left: 4px solid var(--theme-color, #B71C1C) !important;
  position: relative !important;
}

.premium-consult-card::before {
  display: none !important;
  /* Remove old colored gradient top bar */
}

.premium-consult-card .form-group {
  margin-bottom: 16px !important;
  position: relative !important;
}

.premium-consult-card .form-label {
  font-family: var(--title-font) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: #94a3b8 !important;
  margin-bottom: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  display: block !important;
}

/* Icon input container */
.premium-input-icon-wrap {
  position: relative !important;
}

.premium-input-icon-wrap i {
  position: absolute !important;
  left: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #475569 !important;
  font-size: 0.95rem !important;
  pointer-events: none !important;
  transition: color 0.3s ease !important;
}

.premium-input-icon-wrap .form-control {
  background: rgba(6, 12, 23, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  padding: 12px 16px 12px 42px !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  height: auto !important;
  width: 100% !important;
}

.premium-input-icon-wrap .form-control::placeholder {
  color: #475569 !important;
}

.premium-input-icon-wrap .form-control:focus {
  background: rgba(4, 9, 18, 0.9) !important;
  border-color: var(--theme-color, #B71C1C) !important;
  box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.08) !important;
  outline: none !important;
}

.premium-input-icon-wrap .form-control:focus+i {
  color: var(--theme-color, #B71C1C) !important;
}

/* Dropdown styling */
.premium-input-icon-wrap select.form-control {
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 14px !important;
  padding-right: 40px !important;
}

.premium-input-icon-wrap select.form-control option {
  background-color: #0c1424 !important;
  color: #ffffff !important;
}

/* Textarea alignment */
.premium-input-icon-wrap.textarea-wrap i {
  top: 18px !important;
  transform: none !important;
}

.premium-input-icon-wrap textarea.form-control {
  min-height: 75px !important;
  padding-top: 12px !important;
  resize: none !important;
}

/* Request Consultation Button */
.premium-submit-btn {
  background: var(--theme-color, #B71C1C) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 14px 20px !important;
  font-family: var(--title-font) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(183, 28, 28, 0.12) !important;
}

.premium-submit-btn i {
  transition: transform 0.3s ease !important;
}

.premium-submit-btn:hover {
  background: #b51c1c !important;
  box-shadow: 0 6px 20px rgba(183, 28, 28, 0.12) !important;
  transform: translateY(-2px) !important;
}

.premium-submit-btn:hover i {
  transform: translateX(4px) !important;
}

/* Removed trust text layout inside form card */
.premium-consult-card .trust-text-container {
  display: none !important;
}

/* ==========================================
   Engineering Process Timeline (Left Bottom)
   ========================================== */
.ops-process-timeline {
  background: rgba(6, 12, 23, 0.4) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 16px 20px !important;
  margin: 20px -30px -30px -30px !important;
  /* Bleeds to the edges of the form card */
  border-radius: 0 0 12px 12px !important;
  box-shadow: none !important;
  border: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.ops-timeline-title {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #94a3b8 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 14px !important;
  border-left: 2px solid var(--theme-color, #B71C1C) !important;
  padding-left: 8px !important;
}

.ops-timeline-steps {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 6px !important;
}

.ops-timeline-step {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  flex: 1 !important;
}

.ops-step-num {
  width: 24px !important;
  height: 24px !important;
  background: rgba(183, 28, 28, 0.1) !important;
  border: 1px solid rgba(183, 28, 28, 0.12) !important;
  color: var(--theme-color, #B71C1C) !important;
  border-radius: 50% !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 6px !important;
  transition: all 0.3s ease !important;
}

.ops-timeline-step:hover .ops-step-num {
  background: var(--theme-color, #B71C1C) !important;
  color: #ffffff !important;
  box-shadow: 0 0 10px rgba(183, 28, 28, 0.12) !important;
}

.ops-step-text {
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  color: #cbd5e1 !important;
  line-height: 1.2 !important;
}

.ops-timeline-arrow {
  color: #475569 !important;
  font-size: 0.7rem !important;
  margin-top: -15px !important;
}

/* Timeline Responsiveness */
@media (max-width: 767px) {
  .ops-timeline-steps {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding-left: 10px !important;
  }

  .ops-timeline-step {
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    gap: 12px !important;
  }

  .ops-step-num {
    margin-bottom: 0 !important;
  }

  .ops-timeline-arrow {
    display: none !important;
  }
}

/* ==========================================
   Engineering Operations Slideshow (Right)
   ========================================== */
.ops-slideshow-container {
  background: #08101e !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 16px !important;
}

@media (min-width: 992px) {
  .ops-slideshow-container {
    flex: 1 !important;
    height: auto !important;
    min-height: 480px !important;
  }
}

@media (max-width: 991px) {
  .ops-slideshow-container {
    height: 380px !important;
  }
}

.ops-slide {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out !important;
  z-index: 1 !important;
}

.ops-slide.active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2 !important;
}

.ops-slide-img-wrap {
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
}

.ops-slide-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.ops-slide img[src*="new_products"] {
  object-fit: contain !important;
  background-color: #F5F5F5 !important;
  padding: 15px !important;
}

/* Precise image alignment to prevent cropping primary details */
.ops-slide[data-slide-index="0"] img {
  object-position: center top !important;
  /* Keep engineer helmet and face visible */
}

.ops-slide[data-slide-index="1"] img {
  object-position: center center !important;
}

.ops-slide[data-slide-index="2"] img {
  object-position: center center !important;
  object-fit: contain !important;
  background-color: #F5F5F5 !important;
  padding: 15px !important;
}

.ops-slide[data-slide-index="3"] img {
  object-position: center center !important;
  object-fit: contain !important;
  background-color: #F5F5F5 !important;
  padding: 15px !important;
}

.ops-slide-img-wrap::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(3, 9, 20, 0.95) 20%, rgba(3, 9, 20, 0.4) 60%, transparent 100%) !important;
  z-index: 1 !important;
}

.ops-slide-overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 30px !important;
  z-index: 2 !important;
}

.ops-slide-badge {
  display: inline-block !important;
  background: rgba(183, 28, 28, 0.06) !important;
  color: var(--theme-color, #B71C1C) !important;
  border: 1px solid rgba(183, 28, 28, 0.12) !important;
  padding: 4px 10px !important;
  border-radius: 4px !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 12px !important;
}

.ops-slide-metric {
  font-family: var(--title-font) !important;
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1 !important;
  margin-bottom: 8px !important;
}

.ops-slide-metric span {
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: #94a3b8 !important;
  margin-left: 8px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.ops-slide-title {
  color: #ffffff !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  margin-bottom: 6px !important;
}

.ops-slide-desc {
  color: #cbd5e1 !important;
  font-size: 0.85rem !important;
  line-height: 1.4 !important;
  margin-bottom: 0 !important;
  max-width: 90% !important;
}

/* Dots and progress indicator */
.ops-progress-bar-wrap {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  z-index: 3 !important;
}

.ops-progress-bar {
  height: 100% !important;
  background: var(--theme-color, #B71C1C) !important;
  width: 0% !important;
}

.ops-dots-indicator {
  position: absolute !important;
  top: 25px !important;
  right: 25px !important;
  display: flex !important;
  gap: 8px !important;
  z-index: 3 !important;
}

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

.ops-dot.active {
  background: var(--theme-color, #B71C1C) !important;
  transform: scale(1.2) !important;
}

/* ==========================================
   Credentials Trust Stamp Strip (Right Bottom)
   ========================================== */
.ops-trust-badges-strip {
  margin-top: 20px !important;
}

.ops-badges-title {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: #64748b !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 12px !important;
  text-align: left !important;
}

.ops-badges-grid {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 10px !important;
}

.ops-badge-item {
  background: #FAFAFA !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  padding: 8px 4px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: default !important;
  text-align: center !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.ops-badge-item img {
  height: 24px !important;
  width: auto !important;
  max-width: 90% !important;
  object-fit: contain !important;
  filter: none !important;
  /* Always visible */
  opacity: 1 !important;
  /* Always visible */
  transition: all 0.3s ease !important;
  margin-bottom: 6px !important;
}

.ops-badge-item span {
  font-size: 0.58rem !important;
  font-weight: 700 !important;
  color: #334155 !important;
  /* Dark Slate Gray for readability */
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
}

.ops-badge-item:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15) !important;
  background: #F5F5F5 !important;
}

.ops-badge-item:hover img {
  transform: scale(1.05) !important;
}

.ops-badge-item:hover span {
  color: #0f172a !important;
  /* Darker slate on hover */
}

/* Badges Responsiveness */
@media (max-width: 991px) {
  .ops-badges-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
}

@media (max-width: 480px) {
  .ops-badges-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ==========================================
   Premium Enterprise Website Footer Styles
   ========================================== */
.premium-footer {
  background-color: #081420 !important;
  color: #B7BEC8 !important;
  font-family: var(--body-font), sans-serif !important;
  font-size: 0.85rem !important;
  position: relative !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Subtle dotted texture pattern overlay */
.premium-footer::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background-image: url('../img/bg/dot-shape.webp') !important;
  background-repeat: repeat !important;
  opacity: 0.08 !important;
  pointer-events: none !important;
}

.footer-widget-area {
  padding: 50px 0 35px 0 !important;
  /* Compact padding */
  position: relative !important;
  z-index: 2 !important;
}

.premium-footer .footer-widget {
  margin-bottom: 0 !important;
}

.premium-footer .footer-logo {
  margin-bottom: 12px !important;
}

.premium-footer .footer-logo img {
  max-height: 106px !important;
  width: auto !important;
  object-fit: contain !important;
  /* margin-left: -15px !important; */
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.05)) !important;
}

.premium-footer .iso-certified-badge {
  font-family: var(--title-font) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-bottom: 12px !important;
}

.premium-footer .iso-certified-badge i {
  color: #B71C1C !important;
  /* Accent red */
}

.premium-footer .footer-widget-text {
  font-size: 0.8rem !important;
  line-height: 1.5 !important;
  color: #94A3B8 !important;
  margin-bottom: 15px !important;
}

.premium-footer .footer-social-links {
  display: flex !important;
  gap: 10px !important;
}

.premium-footer .footer-social-links a {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #B7BEC8 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.85rem !important;
  transition: all 0.3s ease !important;
}

.premium-footer .footer-social-links a:hover {
  background: #B71C1C !important;
  /* Brand red */
  color: #ffffff !important;
  border-color: #B71C1C !important;
  transform: translateY(-2px) !important;
}

/* Headings */
.premium-footer .footer-widget-title {
  font-family: var(--title-font) !important;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
  letter-spacing: 1px !important;
  position: relative !important;
  padding-bottom: 8px !important;
}

.premium-footer .footer-widget-title::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 35px !important;
  height: 2px !important;
  background: #B71C1C !important;
}

/* Links List */
.premium-footer .footer-menu-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.premium-footer .footer-menu-links li {
  margin-bottom: 8px !important;
}

.premium-footer .footer-menu-links a {
  color: #94A3B8 !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  display: inline-flex !important;
  align-items: center !important;
}

.premium-footer .footer-menu-links a::before {
  content: "›" !important;
  margin-right: 6px !important;
  font-size: 1rem !important;
  color: #B71C1C !important;
  transition: transform 0.25s ease !important;
  line-height: 1 !important;
}

.premium-footer .footer-menu-links a:hover {
  color: #ffffff !important;
}

.premium-footer .footer-menu-links a:hover::before {
  transform: translateX(3px) !important;
}

/* Get in touch styling */
.premium-footer .footer-contact-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
}

.premium-footer .contact-info-item {
  display: flex !important;
  gap: 14px !important;
}

.premium-footer .contact-info-icon {
  width: 28px !important;
  height: 28px !important;
  border-radius: 6px !important;
  background: #B71C1C !important;
  /* Red icon box */
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.8rem !important;
  flex-shrink: 0 !important;
  margin-top: 3px !important;
  box-shadow: 0 4px 10px rgba(183, 28, 28, 0.08) !important;
}

.premium-footer .contact-info-text strong {
  font-family: var(--title-font) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  display: block !important;
  margin-bottom: 2px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.premium-footer .contact-info-text p {
  font-size: 0.8rem !important;
  line-height: 1.4 !important;
  color: #94A3B8 !important;
  margin: 0 !important;
}

.premium-footer .contact-info-text a {
  color: #94A3B8 !important;
  text-decoration: none !important;
  transition: color 0.25s ease !important;
}

.premium-footer .contact-info-text a:hover {
  color: #ffffff !important;
}

.premium-footer .footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  margin: 30px 0 !important;
  opacity: 1 !important;
}

/* Manufacturing Units cards */
.premium-footer .unit-card {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 12px !important;
  padding: 14px 12px !important;
  height: 100% !important;
  transition: all 0.3s ease !important;
}

.premium-footer .unit-card:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px) !important;
}

.premium-footer .unit-card-title {
  font-family: var(--title-font) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 6px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.premium-footer .unit-card-title i {
  font-size: 0.8rem !important;
  color: #B71C1C !important;
}

.premium-footer .unit-card-text {
  font-size: 0.72rem !important;
  line-height: 1.4 !important;
  color: #94A3B8 !important;
  margin: 0 !important;
}

/* Certifications horizontal badges */
.premium-footer .footer-certs-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
  margin-bottom: 12px !important;
}

.premium-footer .footer-cert-badge-box {
  background: #FAFAFA !important;
  border-radius: 8px !important;
  padding: 6px 12px !important;
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12) !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}

.premium-footer .footer-cert-badge-box:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 16px rgba(183, 28, 28, 0.08) !important;
}

.premium-footer .footer-cert-badge-box img {
  max-height: 90% !important;
  max-width: 90% !important;
  object-fit: contain !important;
}

.premium-footer .footer-cert-cta-btn {
  font-family: var(--title-font) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #B71C1C !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.25s ease !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.premium-footer .footer-cert-cta-btn i {
  transition: transform 0.25s ease !important;
}

.premium-footer .footer-cert-cta-btn:hover {
  color: #ffffff !important;
}

.premium-footer .footer-cert-cta-btn:hover i {
  transform: translateX(4px) !important;
}

/* Bottom Bar styling */
.premium-footer .footer-bottom-bar {
  background: #040d17 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
  padding: 15px 0 !important;
  position: relative !important;
  z-index: 2 !important;
}

.premium-footer .footer-copyright-text {
  font-size: 0.78rem !important;
  color: #64748b !important;
  margin: 0 !important;
}

.premium-footer .footer-copyright-text a {
  color: #94A3B8 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.premium-footer .footer-copyright-text a:hover {
  color: #ffffff !important;
}

.premium-footer .footer-branding-container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

@media (min-width: 768px) {
  .premium-footer .footer-branding-container {
    justify-content: flex-end !important;
  }
}

.premium-footer .footer-branding {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.premium-footer .footer-branding .sart-logo {
  height: 24px !important;
  width: auto !important;
  opacity: 0.85 !important;
  transition: opacity 0.3s ease !important;
}

.premium-footer .footer-branding .branding-text {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.premium-footer .footer-branding .powered-by {
  font-family: var(--title-font) !important;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  color: #94A3B8 !important;
  transition: color 0.3s ease !important;
  line-height: 1 !important;
}

.premium-footer .footer-branding .brand-name {
  font-family: var(--title-font) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #E2E8F0 !important;
  transition: color 0.3s ease !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.premium-footer .footer-branding:hover .sart-logo {
  opacity: 1 !important;
}

.premium-footer .footer-branding:hover .powered-by {
  color: #CBD5E1 !important;
}

.premium-footer .footer-branding:hover .brand-name {
  color: #FFFFFF !important;
}

.premium-footer .footer-back-to-top {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: #B7BEC8 !important;
  border-radius: 8px !important;
  padding: 6px 12px !important;
  font-family: var(--title-font) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.premium-footer .footer-back-to-top:hover {
  background: #B71C1C !important;
  color: #ffffff !important;
  border-color: #B71C1C !important;
  transform: translateY(-2px) !important;
}

/* Responsive Media Queries */
@media (max-width: 1199px) {
  .premium-footer .footer-certs-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }
}

@media (max-width: 991px) {
  .footer-widget-area {
    padding: 40px 0 25px 0 !important;
  }

  .premium-footer .footer-widget {
    margin-bottom: 25px !important;
  }

  .premium-footer .footer-widget-title {
    margin-bottom: 15px !important;
  }

  .premium-footer .footer-divider {
    margin: 15px 0 25px 0 !important;
  }

  .premium-footer .units-widget,
  .premium-footer .certs-widget {
    padding-left: 0 !important;
  }

  .premium-footer .footer-certs-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }
}

@media (max-width: 767px) {

  /* Mobile View optimizations */
  .premium-footer .footer-menu-links {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .premium-footer .footer-menu-links li {
    margin-bottom: 0 !important;
  }

  .premium-footer .footer-certs-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
}

/* ==========================================
   PREMIUM CONTACT & CONSULTATION PAGE UI
   ========================================== */

/* Section Colors & Utilities */
.bg-light-surface {
  background-color: #F5F5F5 !important;
}

.text-theme-red {
  color: #B71C1C !important;
}

.text-navy-title {
  color: #081420 !important;
  font-family: 'Manrope', sans-serif !important;
  font-weight: 800 !important;
}

.contact-section-space {
  padding: 80px 0 !important;
}

@media (max-width: 991px) {
  .contact-section-space {
    padding: 60px 0 !important;
  }
}

/* SECTION 1 - HERO BANNER */
.contact-hero-area {
  padding: 140px 0 100px 0 !important;
  /* Made smaller and more compact */
  background-image: url('../img/normal/contact_hero.webp') !important;
  background-size: cover !important;
  background-position: right center !important;
  background-repeat: no-repeat !important;
  position: relative !important;
}

@media (max-width: 1199px) {
  .contact-hero-area {
    padding: 120px 0 80px 0 !important;
  }
}

@media (max-width: 991px) {
  .contact-hero-area {
    padding: 100px 0 70px 0 !important;
    background-position: 70% center !important;
  }
}

@media (max-width: 767px) {
  .contact-hero-area {
    padding: 95px 0 65px 0 !important;
    background-position: 85% center !important;
  }
}

.contact-hero-area::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(to right,
      #081420 0%,
      #081420 40%,
      rgba(8, 20, 32, 0.92) 55%,
      rgba(8, 20, 32, 0.3) 85%,
      rgba(8, 20, 32, 0) 100%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

@media (max-width: 991px) {
  .contact-hero-area::before {
    background: linear-gradient(to bottom,
        rgba(8, 20, 32, 0.98) 0%,
        rgba(8, 20, 32, 0.94) 60%,
        rgba(8, 20, 32, 0.8) 100%) !important;
  }
}

/* Hero Section text visibility on Dark Navy Gradient Background */
.contact-hero-area .hero-large-title {
  color: #ffffff !important;
}

.contact-hero-area .hero-support-text {
  color: #cbd5e1 !important;
  /* Light slate gray */
}

.contact-hero-area .contact-btn-outline {
  color: #ffffff !important;
  border-color: #ffffff !important;
}

.contact-hero-area .contact-btn-outline:hover {
  background: #FAFAFA !important;
  color: #081420 !important;
  border-color: #ffffff !important;
}

.eyebrow-red {
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  color: #B71C1C !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  margin-bottom: 12px !important;
  display: block !important;
}

.hero-large-title {
  font-family: 'Manrope', sans-serif !important;
  font-size: 3.2rem !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  color: #081420 !important;
  margin-bottom: 20px !important;
  letter-spacing: -1px !important;
}

@media (max-width: 1199px) {
  .hero-large-title {
    font-size: 2.8rem !important;
  }
}

@media (max-width: 767px) {
  .hero-large-title {
    font-size: 2.2rem !important;
  }
}

.hero-support-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.05rem !important;
  line-height: 1.6 !important;
  color: #475569 !important;
  margin-bottom: 30px !important;
}

/* Hero Split CTA Buttons */
.contact-hero-ctas {
  display: flex !important;
  gap: 15px !important;
  flex-wrap: wrap !important;
}

.contact-btn-red {
  background: #B71C1C !important;
  color: #ffffff !important;
  border: 1px solid #B71C1C !important;
  padding: 14px 28px !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.contact-btn-red:hover {
  background: #b21c1c !important;
  border-color: #b21c1c !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(183, 28, 28, 0.08) !important;
  color: #ffffff !important;
}

.contact-btn-outline {
  background: transparent !important;
  color: #081420 !important;
  border: 1.5px solid #081420 !important;
  padding: 14px 28px !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.contact-btn-outline:hover {
  background: #081420 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(8, 20, 32, 0.15) !important;
}

/* Right Side Image Frame */
.contact-hero-image-wrap {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 11 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.contact-hero-image-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.8s ease !important;
}

.contact-hero-image-wrap:hover img {
  transform: scale(1.03) !important;
}

/* Trust Stats Strip */
.trust-stats-strip-wrap {
  margin-top: -60px !important;
  position: relative !important;
  z-index: 10 !important;
}

.trust-stats-strip {
  background: #FAFAFA !important;
  border-radius: 16px !important;
  padding: 24px 30px !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06) !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
}

.trust-stats-item {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  justify-content: center !important;
}

.trust-stats-icon {
  width: 48px !important;
  height: 48px !important;
  background: rgba(183, 28, 28, 0.04) !important;
  border: 1px solid rgba(183, 28, 28, 0.1) !important;
  color: #B71C1C !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  flex-shrink: 0 !important;
}

.trust-stats-label {
  display: flex !important;
  flex-direction: column !important;
}

.trust-stats-number {
  font-family: 'Manrope', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #081420 !important;
  line-height: 1.2 !important;
}

.trust-stats-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.78rem !important;
  color: #64748b !important;
  font-weight: 500 !important;
}


@media (max-width: 767px) {
  .trust-stats-strip-wrap {
    margin-top: -30px !important;
    padding: 0 8px !important;
  }

  .trust-stats-strip {
    padding: 20px 10px !important;
  }

  .trust-stats-item {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
  }

  .trust-stats-icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.1rem !important;
  }

  .trust-stats-number {
    font-size: 1.05rem !important;
  }

  .trust-stats-text {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
  }
}

/* SECTION 2 - TEAM CARDS */
.help-card {
  background: #FAFAFA !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 16px !important;
  padding: 30px 24px !important;
  text-align: center !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s ease !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.help-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 32px rgba(8, 20, 32, 0.08) !important;
  border-color: rgba(183, 28, 28, 0.06) !important;
}

.help-card-icon {
  width: 56px !important;
  height: 56px !important;
  background: rgba(183, 28, 28, 0.05) !important;
  color: #B71C1C !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.4rem !important;
  margin-bottom: 20px !important;
  transition: all 0.3s ease !important;
}

.help-card:hover .help-card-icon {
  background: #B71C1C !important;
  color: #ffffff !important;
  transform: scale(1.05) !important;
}

.help-card-title {
  font-family: 'Manrope', sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #081420 !important;
  margin-bottom: 10px !important;
}

.help-card-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.85rem !important;
  line-height: 1.5 !important;
  color: #64748b !important;
  margin-bottom: 18px !important;
  flex-grow: 1 !important;
}

.help-card-link {
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  color: #B71C1C !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.help-card-link:hover {
  color: #b21c1c !important;
}

/* SECTION 3 - CONSULTATION BLOCK */
.consultation-form-card {
  background: #FAFAFA !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 20px !important;
  padding: 40px 30px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04) !important;
}

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

.form-control-custom {
  background-color: #F5F5F5 !important;
  border: 1px solid #E2E8F0 !important;
  color: #081420 !important;
  padding: 12px 18px !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  width: 100% !important;
  transition: all 0.25s ease !important;
}

.form-control-custom:focus {
  border-color: #B71C1C !important;
  background-color: #FAFAFA !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.06) !important;
}

.form-select-custom {
  background-color: #F5F5F5 !important;
  border: 1px solid #E2E8F0 !important;
  color: #64748b !important;
  padding: 12px 18px !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  width: 100% !important;
  display: block !important;
  height: 48px !important;
  transition: all 0.25s ease !important;
}

.form-select-custom:focus {
  border-color: #B71C1C !important;
  background-color: #FAFAFA !important;
  outline: none !important;
}

/* Checkbox Style */
.checkbox-custom-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  margin-bottom: 24px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.88rem !important;
  color: #475569 !important;
  font-weight: 500 !important;
}

.checkbox-custom-wrap input {
  width: 18px !important;
  height: 18px !important;
  accent-color: #B71C1C !important;
  cursor: pointer !important;
}

/* Right Side Benefits Panel */
.consultation-benefits-panel {
  background: linear-gradient(135deg, #F5F5F5 0%, #F1F5F9 100%) !important;
  border-radius: 20px !important;
  padding: 40px 35px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  position: relative !important;
}

.benefits-title {
  font-family: 'Manrope', sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: #081420 !important;
  margin-bottom: 25px !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid rgba(183, 28, 28, 0.1) !important;
}

.benefits-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 30px 0 !important;
}

.benefits-list li {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #334155 !important;
  margin-bottom: 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.benefits-list li i {
  color: #B71C1C !important;
  font-size: 1rem !important;
}

.benefits-product-img {
  width: 100% !important;
  max-width: 320px !important;
  height: auto !important;
  margin: 0 auto !important;
  display: block !important;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.06)) !important;
}

/* SECTION 4 - LOCATIONS */
.location-office-card {
  background: #FAFAFA !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 16px !important;
  padding: 26px 20px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s ease !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.location-office-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 30px rgba(8, 20, 32, 0.07) !important;
}

.location-office-icon {
  font-size: 1.3rem !important;
  color: #B71C1C !important;
  margin-bottom: 12px !important;
  display: block !important;
}

.location-office-title {
  font-family: 'Manrope', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #081420 !important;
  margin-bottom: 8px !important;
}

.location-office-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.82rem !important;
  line-height: 1.5 !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* SECTION 5 - MAP & METRICS */
.map-legend-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 0 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
}

.map-legend-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #475569 !important;
}

.map-legend-dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  display: inline-block !important;
}

.map-legend-dot.red {
  background-color: #B71C1C !important;
}

.map-legend-dot.orange {
  background-color: #F7941D !important;
}

.map-legend-dot.blue {
  background-color: #0072BC !important;
}

.map-legend-dot.green {
  background-color: #2BB673 !important;
}

.network-map-wrapper {
  background: #FAFAFA !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 20px !important;
  padding: 20px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

.network-map-wrapper img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* Side trust grid cards */
.metric-sidebar-card {
  background: #FAFAFA !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.01) !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
}

.metric-sidebar-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 24px rgba(8, 20, 32, 0.05) !important;
  border-color: rgba(183, 28, 28, 0.1) !important;
}

.metric-sidebar-icon {
  width: 42px !important;
  height: 42px !important;
  background: rgba(183, 28, 28, 0.04) !important;
  border-radius: 8px !important;
  color: #B71C1C !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.1rem !important;
  flex-shrink: 0 !important;
}

.metric-sidebar-num {
  font-family: 'Manrope', sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #081420 !important;
  line-height: 1.2 !important;
}

.metric-sidebar-txt {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.72rem !important;
  color: #64748b !important;
  font-weight: 500 !important;
}

/* SECTION 6 - CERTIFICATIONS ROW */
.cert-hub-card {
  background: #FAFAFA !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 12px !important;
  padding: 18px 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 72px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s ease !important;
}

.cert-hub-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 20px rgba(183, 28, 28, 0.1) !important;
  border-color: rgba(183, 28, 28, 0.06) !important;
}

.cert-hub-card img {
  max-height: 100% !important;
  max-width: 90% !important;
  object-fit: contain !important;
}

/* SECTION 8 - FAQ ACCORDION */
.faq-accordion-custom {
  max-width: 950px !important;
  margin: 0 auto !important;
}

.faq-item-custom {
  background: #FAFAFA !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 8px !important;
  margin-bottom: 12px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

.faq-item-custom.active {
  border-color: rgba(183, 28, 28, 0.08) !important;
  box-shadow: 0 8px 24px rgba(183, 28, 28, 0.04) !important;
}

.faq-header-custom {
  width: 100% !important;
  background: none !important;
  border: none !important;
  padding: 18px 24px !important;
  text-align: left !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #081420 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  cursor: pointer !important;
  outline: none !important;
  transition: all 0.25s ease !important;
}

.faq-header-custom:hover {
  color: #B71C1C !important;
}

.faq-arrow-icon {
  font-size: 0.8rem !important;
  transition: transform 0.3s ease !important;
  color: #64748b !important;
}

.faq-item-custom.active .faq-arrow-icon {
  transform: rotate(180deg) !important;
  color: #B71C1C !important;
}

.faq-body-custom {
  padding: 0 24px 20px 24px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
  color: #475569 !important;
  display: none;
}

.faq-item-custom.active .faq-body-custom {
  display: block;
}

/* Custom Network Map Section Styles */
.alpha-network-map-section {
  position: relative;
  width: 100%;
}

.map-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.95), rgba(243, 246, 250, 0.98)),
    linear-gradient(180deg, #F5F5F5 0%, #edf2f7 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(8, 20, 32, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  z-index: 1;
}

.map-base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.india-map-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.india-shape {
  fill: url(#india-gradient) !important;
  stroke: #ffffff !important;
  stroke-width: 2.5;
  stroke-linejoin: round;
}

.continent-shape {
  stroke: #ffffff !important;
  stroke-width: 1.5;
  stroke-linejoin: round;
  transition: all 0.3s ease;
}

.continent-shape:hover {
  opacity: 0.65;
}

/* Route animations */
.map-routes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.route {
  fill: none !important;
  stroke: #B71C1C !important;
  stroke-width: 2.5 !important;
  stroke-linecap: round !important;
  opacity: 0.85 !important;
  filter: drop-shadow(0 0 5px rgba(183, 28, 28, 0.12)) !important;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawRoute 3.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.route-uk {
  animation-delay: 0.2s;
}

.route-dubai {
  animation-delay: 0.5s;
}

.route-singapore {
  animation-delay: 0.8s;
}

.route-africa {
  animation-delay: 1.1s;
}

.route-srilanka {
  animation-delay: 1.4s;
}

@keyframes drawRoute {
  to {
    stroke-dashoffset: 0;
  }
}

/* Destination point styles */
.map-point {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #B71C1C;
  box-shadow: 0 0 0 0 rgba(183, 28, 28, 0.12);
  transform: translate(-50%, -50%);
  z-index: 4;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-point:hover {
  background: #081420;
  transform: translate(-50%, -50%) scale(1.3);
  box-shadow: 0 0 15px rgba(8, 20, 32, 0.4);
}

.point-head-office {
  background: #081420 !important;
  width: 16px;
  height: 16px;
  animation: pulseHQ 2s infinite;
}

@keyframes pulsePoint {
  0% {
    box-shadow: 0 0 0 0 rgba(183, 28, 28, 0.12);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(183, 28, 28, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(183, 28, 28, 0);
  }
}

@keyframes pulseHQ {
  0% {
    box-shadow: 0 0 0 0 rgba(8, 20, 32, 0.5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(8, 20, 32, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(8, 20, 32, 0);
  }
}

.point-uk,
.point-dubai,
.point-singapore,
.point-africa,
.point-srilanka {
  animation: pulsePoint 2.2s infinite;
}

.point-uk {
  animation-delay: 0.3s;
}

.point-dubai {
  animation-delay: 0.6s;
}

.point-singapore {
  animation-delay: 0.9s;
}

.point-africa {
  animation-delay: 1.2s;
}

.point-srilanka {
  animation-delay: 1.5s;
}

/* Labels styles */
.map-label {
  position: absolute;
  font-family: 'Manrope', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #081420 !important;
  background: rgba(255, 255, 255, 0.92) !important;
  padding: 4px 8px !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.label-head-office {
  background: #081420 !important;
  color: #ffffff !important;
  border-color: #081420 !important;
  font-size: 12px !important;
}

/* Service dot styles */
.service-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #2b6cb0 !important;
  border-radius: 2px !important;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 6px rgba(43, 108, 176, 0.5) !important;
  z-index: 3;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-dot:hover {
  background: #B71C1C !important;
  transform: translate(-50%, -50%) scale(1.4) !important;
  box-shadow: 0 0 10px rgba(183, 28, 28, 0.12) !important;
}

/* Legend Styles */
.map-legend {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(8px) !important;
  padding: 15px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05) !important;
  z-index: 10;
  min-width: 180px;
}

.legend-title {
  font-family: 'Manrope', sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  color: #081420 !important;
  margin-bottom: 10px !important;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}

.legend-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  margin-bottom: 6px !important;
}

.legend-item:last-child {
  margin-bottom: 0 !important;
}

.lg {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
}

.lg.head {
  background: #081420 !important;
}

.lg.intl {
  background: #B71C1C !important;
}

.lg.sales {
  background: #2b6cb0 !important;
  border-radius: 2px !important;
}

/* Responsive adjustment for small screens */
@media (max-width: 991px) {
  .map-stage {
    min-height: 400px !important;
  }

  .map-label {
    font-size: 9px !important;
    padding: 2px 6px !important;
  }

  .label-head-office {
    font-size: 10px !important;
  }
}

/* ==========================================================================
   PRODUCT GALLERY SHOWCASE SECTION
   ========================================================================== */
.product-gallery-sec {
  position: relative;
  z-index: 2;
}

.gallery-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.gallery-tabs {
  background: #F5F5F5;
  padding: 6px;
  border-radius: 14px;
  display: inline-flex;
  gap: 4px;
  border: 1px solid #e2e8f0;
}

.gallery-tab-btn {
  background: transparent;
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-tab-btn:hover {
  color: var(--title-color);
}

.gallery-tab-btn.active {
  background: var(--title-color);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(14, 18, 29, 0.15);
}

@media (max-width: 767px) {
  .gallery-tabs-wrap {
    padding: 0 12px;
    margin-top: 5px;
  }

  .gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    background: #F5F5F5;
    border: 1px solid #e2e8f0;
    padding: 6px;
    border-radius: 14px;
    width: 100%;
    max-width: 100%;
  }

  .gallery-tab-btn {
    padding: 8px 10px;
    font-size: 0.8rem;
    border-radius: 8px;
    flex: 1 1 calc(50% - 6px);
    text-align: center;
  }
}

/* Card Design */
.gallery-product-card {
  background: #FAFAFA;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.gallery-product-card .card-img-container {
  height: 240px;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
}

.gallery-product-card .card-img-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.95) 100%);
  z-index: 1;
}

.gallery-product-card .card-img-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 28, 28, 0.06);
  box-shadow: 0 20px 40px rgba(183, 28, 28, 0.05);
}

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

.gallery-product-card .card-body-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-product-card .card-category-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #B71C1C;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.gallery-product-card .card-product-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

.gallery-product-card .card-spec-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.gallery-product-card .card-spec-bullets li {
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.gallery-product-card .card-spec-bullets li i {
  color: #2BB673;
  font-size: 0.8rem;
}

.gallery-product-card .gallery-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: #f1f5f9;
  color: var(--title-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.gallery-product-card .gallery-card-btn i {
  transition: transform 0.3s ease;
}

.gallery-product-card:hover .gallery-card-btn {
  background: var(--title-color);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(14, 18, 29, 0.15);
}

.gallery-product-card:hover .gallery-card-btn i {
  transform: translateX(4px);
}

/* Card Filtering Animations */
.gallery-card-item {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card-item.filtered-out {
  opacity: 0;
  transform: scale(0.9);
  display: none !important;
}

/* Premium Quote Modal Popup Styles */
.white-popup {
  position: relative !important;
  background: radial-gradient(circle at center, #0e1628 0%, #030712 100%) !important;
  padding: 40px !important;
  width: auto !important;
  max-width: 600px !important;
  margin: 40px auto !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
}

@media (max-width: 767px) {
  .white-popup {
    padding: 30px 20px 20px 20px !important;
    margin: 20px auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

.mfp-zoom-in.mfp-ready .mfp-content {
  transform: none !important;
  -webkit-transform: none !important;
}

/* Close button style inside Magnific Popup */
.mfp-close-btn-in .mfp-close {
  color: #ffffff !important;
  font-size: 32px !important;
  top: 15px !important;
  right: 15px !important;
  transition: color 0.2s ease !important;
}

.mfp-close-btn-in .mfp-close:hover {
  color: #B71C1C !important;
}

.popup-title {
  font-family: var(--title-font), sans-serif !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-align: center !important;
  margin-bottom: 8px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.popup-desc {
  font-size: 14px !important;
  color: #94a3b8 !important;
  text-align: center !important;
  margin-bottom: 30px !important;
  line-height: 1.6 !important;
}

/* Form controls styling */
.quote-popup-form .form-group {
  margin-bottom: 18px !important;
}

.quote-popup-form .form-control,
.quote-popup-form .form-select {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  color: #ffffff !important;
  height: 52px !important;
  padding: 0 16px !important;
  font-size: 14px !important;
  font-family: 'Inter', sans-serif !important;
  transition: all 0.3s ease !important;
}

.quote-popup-form .form-select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 16px !important;
  padding-right: 40px !important;
}

.quote-popup-form textarea.form-control {
  height: auto !important;
  padding: 16px !important;
}

.quote-popup-form .form-control:focus,
.quote-popup-form .form-select:focus {
  border-color: #B71C1C !important;
  box-shadow: 0 0 10px rgba(183, 28, 28, 0.08) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.quote-popup-form .form-control::placeholder {
  color: #64748b !important;
}

.quote-popup-form .form-select option {
  background-color: #0d1222 !important;
  color: #ffffff !important;
}

/* Submit Button in popup */
.quote-popup-form .th-btn {
  background-color: #B71C1C !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  padding: 15px 35px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(183, 28, 28, 0.08) !important;
  cursor: pointer !important;
}

.quote-popup-form .th-btn:hover {
  background-color: #b31b1b !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(183, 28, 28, 0.12) !important;
}

/* Animated Success Checkmark */
.success-checkmark-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.checkmark-svg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #4bb543;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #4bb543;
  animation: fill-checkmark .4s ease-in-out .4s forwards, scale-checkmark .3s ease-in-out .9s both;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4bb543;
  fill: none;
  animation: stroke-checkmark .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: #4bb543;
  animation: stroke-checkmark .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

@keyframes stroke-checkmark {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale-checkmark {

  0%,
  100% {
    transform: none;
  }

  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill-checkmark {
  100% {
    box-shadow: inset 0px 0px 0px 30px transparent;
  }
}

/* Mobile menu CTA styling */
.mobile-cta-btn-wrap {
  padding: 20px 15px 10px 15px !important;
  display: flex !important;
  justify-content: center !important;
}

.mobile-cta-btn-wrap .header-cta-btn {
  width: 100% !important;
  max-width: 280px !important;
  margin-right: 0 !important;
  /* Reset header space margin */
  box-shadow: 0 4px 15px rgba(183, 28, 28, 0.08) !important;
}

/* ==========================================================================
   GLOBAL TEXT ALIGNMENT OVERRIDES (PREMIUM TYPOGRAPHY DESIGN SYSTEM)
   ========================================================================== */

/* 1. Card Description Paragraphs - Justified for premium layout spacing */
.solar-card p,
.solar-card .box-text,
.service-card p,
.service-card .box-text,
.service-grid p,
.service-grid .box-text,
.feature-card p,
.feature-card .box-text,
.about-feature p,
.about-feature .box-text,
.industry-card p,
.industry-card .box-text,
.award-card p,
.award-card .award-desc,
.help-card p,
.help-card .box-text,
.advantage-card p,
.advantage-card .box-text,
.gallery-product-card p,
.gallery-product-card .box-text,
.gallery-product-card .card-body-content p,
.testi-card p,
.testi-card .box-text,
.diagnostic-card p,
.diagnostic-card .diag-meta p,
.info-stat-card p,
.info-stat-card .stat-label,
.floating-stats-card p,
.footer-contact-card p,
.about-profile p,
.year-counter p,
.counter-card p,
.counter-card .box-text,
.process-card p,
.process-card .box-text {
  text-align: justify !important;
  text-justify: inter-word !important;
}

/* 2. Section Supporting Intro Texts - Left Aligned for consistent tracking by default */
.sec-desc,
.sec-desc2,
.sec-text,
.sec-text2,
.title-area p {
  text-align: left !important;
}

/* Allow centered alignment when parent is explicitly centered */
.text-center .sec-desc,
.text-center .sec-desc2,
.text-center .sec-text,
.text-center .sec-text2,
.text-center .title-area p,
.title-area.text-center .sec-desc,
.title-area.text-center p {
  text-align: center !important;
}

/* ==========================================================================
   CLIENTELE LOGO GRID & CARD SYSTEM
   ========================================================================== */

.client-category-block {
  margin-bottom: 60px;
}

.client-category-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--title-color);
  border-bottom: 2px solid rgba(183, 28, 28, 0.08);
  padding-bottom: 12px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.client-category-title i {
  color: #B71C1C;
  font-size: 1.1rem;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.client-logo-card {
  background: #FAFAFA;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 165px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px -2px rgba(11, 31, 58, 0.02), 0 2px 4px -1px rgba(11, 31, 58, 0.01);
  position: relative;
  overflow: hidden;
}

.client-logo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 28, 28, 0.08);
  box-shadow: 0 20px 25px -5px rgba(183, 28, 28, 0.08), 0 10px 10px -5px rgba(183, 28, 28, 0.03);
}

.client-logo-card .logo-img-wrap {
  height: 90px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: transparent;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
}

.client-logo-card:hover .logo-img-wrap {
  background: transparent;
}

.client-logo-card .logo-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: none !important;
  /* Remove grayscale/opacity transition entirely */
  opacity: 1 !important;
  /* Always show in color and full visibility */
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo-card:hover .logo-img-wrap img {
  transform: scale(1.08);
}

.client-logo-card .client-name {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--title-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.35;
  margin-top: auto;
}

/* Fallback text initials logos */
.logo-fallback {
  font-family: var(--title-font), sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #B71C1C;
  background: rgba(183, 28, 28, 0.05);
  min-width: 55px;
  height: 55px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  padding: 0 12px;
  white-space: nowrap;
}

.logo-fallback.long {
  font-size: 0.95rem;
}

/* Premium text-only logo card styling (Corporation Bank, Eka Furniture, CFSP&TI) */
.text-logo-card {
  padding: 16px;
}

.text-logo-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}

.text-logo-main {
  display: block;
  font-family: var(--title-font), sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0b1f3a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.client-logo-card.text-logo-card:hover .text-logo-main {
  color: #B71C1C !important;
}

.text-logo-sub {
  display: block;
  font-family: var(--body-font), sans-serif;
  font-size: 0.65rem;
  line-height: 1.35;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 155px;
}

/* Responsive grid rules */
@media (max-width: 1200px) {
  .client-logo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .client-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 576px) {
  .client-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .client-logo-card {
    height: 145px;
    padding: 12px;
    border-radius: 12px;
  }

  .client-logo-card .logo-img-wrap {
    height: 70px;
    border: none;
    background: transparent;
    padding: 0;
    margin-bottom: 8px;
  }

  .client-logo-card .client-name {
    font-size: 0.68rem;
  }

  .text-logo-main {
    font-size: 0.98rem;
  }

  .text-logo-sub {
    font-size: 0.58rem;
    max-width: 120px;
  }
}

/* ==========================================
   Specials Page Workflow Section overrides
   ========================================== */
.process-box-wrap {
  position: relative;
  margin-bottom: 30px;
}

.process-box_icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #FAFAFA !important;
  border: 1px solid #E2E8F0;
  transition: all 0.4s ease-in-out !important;
}

.process-box_icon i {
  color: var(--theme-color) !important;
  transition: all 0.4s ease-in-out !important;
}

.process-box:hover .process-box_icon {
  background-color: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
}

.process-box:hover .process-box_icon i {
  color: #ffffff !important;
  transform: rotateY(180deg);
}

.process-box .box-title {
  margin-top: 15px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #081420;
}

.process-box .box-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--light-color);
  max-width: 260px;
  margin: 0 auto;
  text-align: justify !important;
  text-justify: inter-word !important;
}

/* Align connection arrows to the center of the circles */
.process-box-wrap::after {
  top: 25px !important;
  right: -75px !important;
  opacity: 0.65;
  pointer-events: none;
}

@media (max-width: 1199px) {
  .process-box-wrap::after {
    display: none !important;
  }
}

/* ==========================================
   Premium Hero Upgrades
   ========================================== */
.hero-1 .th-hero-bg:before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg,
      rgba(8, 20, 32, 0.96) 0%,
      rgba(8, 20, 32, 0.88) 28%,
      rgba(8, 20, 32, 0.62) 52%,
      rgba(8, 20, 32, 0.18) 78%,
      rgba(8, 20, 32, 0.06) 100%) !important;
  z-index: 1 !important;
}

.hero-style1 {
  position: relative !important;
  z-index: 5 !important;
}

.hero-style1 .sub-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 3px !important;
  margin-bottom: 12px !important;
  color: var(--theme-color) !important;
  display: inline-block !important;
}

.hero-style1 .hero-title {
  font-size: 54px !important;
  line-height: 1.12 !important;
  font-weight: 800 !important;
  margin-bottom: 20px !important;
  letter-spacing: -0.01em !important;
}

.hero-style1 .hero-text {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 520px !important;
  margin-top: 15px !important;
  margin-bottom: 35px !important;
  font-weight: 400 !important;
}

.hero-style1 .btn-group {
  gap: 15px !important;
}

/* Floating Trust Strip (Frosted White Glass style) */
.hero-trust-strip {
  position: relative;
  margin-top: -45px;
  /* Float on the border of hero */
  z-index: 10;
  padding: 0 15px;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  border-bottom: 3px solid var(--theme-color) !important;
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #081420 !important;
  font-family: var(--title-font);
  font-size: 0.92rem;
}

.trust-item i {
  font-size: 1.15rem;
  color: var(--theme-color) !important;
}

.trust-item span {
  font-weight: 500;
  letter-spacing: 0.2px;
}

.trust-item strong {
  font-weight: 800;
  color: #081420 !important;
}

.trust-divider {
  width: 1px;
  height: 25px;
  background-color: rgba(8, 20, 32, 0.15) !important;
}

/* Responsive controls for layout shifts */
@media (max-width: 1199px) {
  .hero-style1 .hero-title {
    font-size: 44px !important;
  }

  .hero-style1 .hero-text {
    font-size: 14px !important;
  }
}

@media (max-width: 991px) {
  .hero-trust-strip {
    margin-top: 30px;
    /* Stack layout flow naturally */
  }

  .trust-strip-inner {
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-start;
    padding: 20px 24px;
  }

  .trust-item {
    width: calc(50% - 10px);
    font-size: 0.88rem;
  }

  .trust-divider {
    display: none;
  }
}

@media (max-width: 575px) {
  .trust-item {
    width: 100%;
  }
}

/* ==========================================
   Why Choose Us Redesign overrides – Tabbed Accordion Layout
   ========================================== */

/* Left Accordion Buttons Stack */
.why-accordion-menu {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  height: 100% !important;
  justify-content: space-between !important;
}

.why-accordion-btn {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  width: 100% !important;
  padding: 12px 24px !important;
  background: #FAFAFA !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  border-radius: 14px !important;
  text-align: left !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  flex: 1 !important;
}

.why-accordion-btn .btn-num {
  font-family: var(--title-font) !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: rgba(8, 20, 32, 0.2) !important;
  transition: color 0.3s ease !important;
}

.why-accordion-btn .btn-title {
  font-family: var(--title-font) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: var(--title-color) !important;
  flex-grow: 1 !important;
  transition: color 0.3s ease !important;
}

.why-accordion-btn .btn-arrow {
  font-size: 0.8rem !important;
  color: rgba(8, 20, 32, 0.3) !important;
  transition: transform 0.3s ease, color 0.3s ease !important;
}

/* Hover & Active States */
.why-accordion-btn:hover {
  background: #F5F5F5 !important;
  border-color: rgba(183, 28, 28, 0.06) !important;
}

.why-accordion-btn.active {
  background: #FAFAFA !important;
  border-color: var(--theme-color) !important;
  box-shadow: 0 10px 25px -10px rgba(8, 20, 32, 0.06) !important;
}

.why-accordion-btn.active .btn-num {
  color: var(--theme-color) !important;
}

.why-accordion-btn.active .btn-title {
  color: var(--theme-color) !important;
}

.why-accordion-btn.active .btn-arrow {
  color: var(--theme-color) !important;
  transform: translateX(3px) !important;
}

/* Right Rich Telemetry Display Pane */
.why-data-display-pane {
  background: #081420 !important;
  border-radius: 20px !important;
  padding: 40px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 25px 50px -12px rgba(8, 20, 32, 0.25) !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 380px !important;
  display: flex !important;
  align-items: center !important;
}

.why-data-display-pane .blueprint-grid-overlay {
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px) !important;
  background-size: 20px 20px !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.display-pane-content {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
}

.why-pane-item {
  display: none !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
}

.why-pane-item.active {
  display: block !important;
  opacity: 1 !important;
}

.why-pane-item .pane-large-num {
  font-family: var(--title-font) !important;
  font-size: 3.2rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1 !important;
  margin-bottom: 12px !important;
  display: block !important;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.15) !important;
}

.why-pane-item .pane-title {
  font-family: var(--title-font) !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: var(--theme-color) !important;
  margin-bottom: 14px !important;
}

.why-pane-item .pane-text {
  font-family: var(--body-font) !important;
  font-size: 0.925rem !important;
  line-height: 1.65 !important;
  color: #94a3b8 !important;
  margin-bottom: 25px !important;
}

/* Telemetry Grid inside Pane */
.pane-telemetry-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 20px !important;
}

.telemetry-cell {
  display: flex !important;
  flex-direction: column !important;
}

.telemetry-cell .tel-label {
  font-size: 0.65rem !important;
  font-family: monospace !important;
  color: #64748B !important;
  letter-spacing: 0.8px !important;
  margin-bottom: 3px !important;
}

.telemetry-cell .tel-val {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #F5F5F5 !important;
}

/* Mobile View: Vertical Accordion Dropdowns */
.why-mobile-accordion {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  width: 100% !important;
}

.why-m-acc-item {
  background: #FAFAFA !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

.why-m-acc-item.active {
  border-color: var(--theme-color) !important;
  box-shadow: 0 8px 20px rgba(8, 20, 32, 0.04) !important;
}

.why-m-acc-trigger {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100% !important;
  padding: 16px 20px !important;
  background: transparent !important;
  border: none !important;
  text-align: left !important;
  cursor: pointer !important;
}

.why-m-acc-trigger .m-acc-num {
  font-family: var(--title-font) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: rgba(8, 20, 32, 0.2) !important;
  transition: color 0.3s ease !important;
}

.why-m-acc-item.active .why-m-acc-trigger .m-acc-num {
  color: var(--theme-color) !important;
}

.why-m-acc-trigger .m-acc-title {
  font-family: var(--title-font) !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: var(--title-color) !important;
  flex-grow: 1 !important;
  line-height: 1.3 !important;
  transition: color 0.3s ease !important;
}

.why-m-acc-item.active .why-m-acc-trigger .m-acc-title {
  color: var(--theme-color) !important;
}

.why-m-acc-trigger .m-acc-arrow {
  font-size: 0.8rem !important;
  color: rgba(8, 20, 32, 0.4) !important;
  transition: transform 0.3s ease, color 0.3s ease !important;
}

.why-m-acc-item.active .why-m-acc-trigger .m-acc-arrow {
  transform: rotate(180deg) !important;
  color: var(--theme-color) !important;
}

.why-m-acc-content {
  display: none !important;
  border-top: 1px solid rgba(15, 23, 42, 0.05) !important;
}

.why-m-acc-item.active .why-m-acc-content {
  display: block !important;
}

.m-acc-inner {
  padding: 20px !important;
  background: #fafafb !important;
}

.m-acc-large-val {
  font-family: var(--title-font) !important;
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  margin-bottom: 10px !important;
  display: block !important;
}

.m-acc-text {
  font-family: var(--body-font) !important;
  font-size: 0.85rem !important;
  line-height: 1.5 !important;
  color: #475569 !important;
  margin-bottom: 15px !important;
}

.m-acc-meta {
  font-family: monospace !important;
  font-size: 0.72rem !important;
  color: #64748B !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  border-top: 1px dashed rgba(15, 23, 42, 0.1) !important;
  padding-top: 10px !important;
}

/* ==========================================================================
   Premium Motion System (Smooth, High-End Transitions)
   ========================================================================== */

/* 1. Global Viewport Entrance Animations (Subtle & High Performance) */
@keyframes fadeInUp {
  0% {
    opacity: 0 !important;
    transform: translateY(16px) !important;
  }

  100% {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

.fadeInUp {
  animation-name: fadeInUp !important;
  animation-duration: 0.6s !important;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0 !important;
    transform: translateX(-16px) !important;
  }

  100% {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft !important;
  animation-duration: 0.6s !important;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@keyframes fadeInRight {
  0% {
    opacity: 0 !important;
    transform: translateX(16px) !important;
  }

  100% {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
}

.fadeInRight {
  animation-name: fadeInRight !important;
  animation-duration: 0.6s !important;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0 !important;
  }

  100% {
    opacity: 1 !important;
  }
}

.fadeIn {
  animation-name: fadeIn !important;
  animation-duration: 0.6s !important;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@keyframes zoomIn {
  0% {
    opacity: 0 !important;
    transform: scale(0.97) !important;
  }

  100% {
    opacity: 1 !important;
    transform: scale(1) !important;
  }
}

.zoomIn {
  animation-name: zoomIn !important;
  animation-duration: 0.6s !important;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Optimize animate delay properties */
.wow {
  animation-fill-mode: both !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
}

/* Disable animations for users with motion reduction preferences */
@media (prefers-reduced-motion: reduce) {

  .wow,
  .fadeInUp,
  .fadeInLeft,
  .fadeInRight,
  .fadeIn,
  .zoomIn,
  .ops-slide.active,
  .ops-slide.active img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* 2. Unified Premium Card Hover Transitions */
.service-card,
.service-item,
.product-card,
.product-item,
.th-product,
.industry-card,
.testi-card,
.testi-item,
.award-card,
.cert-card,
.feature-card,
.client-card,
.client-item,
.why-card,
.why-accordion-menu .tab-btn {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  transition-property: transform, box-shadow, border-color, background-color !important;
  will-change: transform, box-shadow, border-color !important;
}

.service-card:hover,
.service-item:hover,
.product-card:hover,
.product-item:hover,
.th-product:hover,
.industry-card:hover,
.testi-card:hover,
.testi-item:hover,
.award-card:hover,
.cert-card:hover,
.feature-card:hover,
.client-card:hover,
.client-item:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(183, 28, 28, 0.06) !important;
}

/* 3. Subtle Image Scale transitions on Hover */
.product-card .product-img img,
.service-card .service-img img,
.project-item img,
.th-product .product-img img,
.why-data-display-pane img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: transform !important;
}

.product-card:hover .product-img img,
.service-card:hover .service-img img,
.project-item:hover img,
.th-product:hover .product-img img {
  transform: scale(1.035) !important;
  /* Gentle zoom-out */
}

/* 4. Button Interactions & Lift */
.th-btn,
.btn,
.premium-submit-btn,
.slider-arrow,
.scroll-top {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease !important;
  will-change: transform, box-shadow !important;
}

.th-btn:hover,
.btn:hover,
.premium-submit-btn:hover,
.slider-arrow:hover {
  transform: translateY(-1.5px) !important;
  box-shadow: 0 6px 18px rgba(183, 28, 28, 0.08) !important;
}

/* Soft arrow/icon shift inside buttons on hover */
.th-btn i,
.btn i,
.premium-submit-btn i {
  transition: transform 0.3s ease !important;
  will-change: transform !important;
}

.th-btn:hover i,
.btn:hover i,
.premium-submit-btn:hover i {
  transform: translateX(3px) !important;
}

/* 5. Clean Dropdown Navigation transitions */
.main-menu ul li ul.sub-menu {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(8px) !important;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: block !important;
  /* Avoid instant display:none toggle */
}

.main-menu ul li:hover ul.sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Smooth sticky header state transitions */
.sticky-wrapper {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* 6. Form Focus transitions */
.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  transition: border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease !important;
}

/* Subtle focus transitions for form labels */
.form-group label {
  transition: color 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.form-group:focus-within label {
  color: var(--theme-color, #B71C1C) !important;
}

/* 7. Floating WhatsApp Chat Widget */
.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  background-color: #25D366;
  color: #ffffff !important;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  cursor: pointer;
  transition: bottom 300ms cubic-bezier(0.16, 1, 0.3, 1), background-color 300ms ease, transform 300ms ease, box-shadow 300ms ease !important;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
  color: #ffffff !important;
}

.whatsapp-float::before {
  content: "Chat with us";
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background-color: #0b1f3a;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  right: 57px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #0b1f3a;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.scroll-top.show~.whatsapp-float {
  bottom: 95px;
}

@media (max-width: 767px) {

  .whatsapp-float::before,
  .whatsapp-float::after {
    display: none !important;
  }
}

/* Wide featured card horizontal layout for desktop and tablet screens */
@media (min-width: 768px) {
  .product-premium-card.wide-card {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    flex-direction: row !important;
    align-items: stretch !important;
  }

  .product-premium-card.wide-card .product-img-wrap {
    flex: 0 0 35% !important;
    width: 35% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    border-bottom: none !important;
    border-right: 1px solid #f1f5f9 !important;
  }

  .product-premium-card.wide-card .product-img-wrap img {
    height: 100% !important;
    width: 100% !important;
    object-fit: contain !important;
    background-color: #F5F5F5 !important;
    padding: 15px !important;
  }

  .product-premium-card.wide-card .product-info {
    flex: 1 !important;
    justify-content: center !important;
  }
}

/* ==========================================
   Clean & Simple Centered Typography Hero Styling (Red & White Theme)
   ========================================== */

.hero-inner-clean {
  position: relative !important;
  background-color: #FAFAFA !important;
  /* Warm white background */
  overflow: hidden !important;
  padding: 52px 0 !important;
  /* Enterprise breathable padding */
  z-index: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 500px !important;
  box-sizing: border-box !important;
}

/* Very subtle glowing radial gradient */
.hero-clean-bg {
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(circle at 50% 50%, rgba(183, 28, 28, 0.05) 0%, transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%) !important;
  z-index: -1 !important;
}

/* Premium Badge styling */
.hero-badge-clean {
  background: rgba(183, 28, 28, 0.05) !important;
  border: 1px solid rgba(183, 28, 28, 0.06) !important;
  padding: 8px 18px !important;
  border-radius: 100px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  color: #B71C1C !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 16px !important;
  /* Reduced margin to tighten layout */
  text-transform: uppercase !important;
  position: relative !important;
}

/* Hide template's absolute lightning shape */
.hero-badge-clean::before,
.hero-badge-clean::after,
.hero-badge-clean:before,
.hero-badge-clean:after {
  display: none !important;
}

/* Direct styling for badge icon */
.hero-badge-clean i {
  font-size: 13px !important;
  color: #B71C1C !important;
  display: inline-block !important;
}

/* Pulsing dot indicator inside badge */
.pulse-dot-clean {
  width: 8px !important;
  height: 8px !important;
  background-color: #B71C1C !important;
  border-radius: 50% !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
  box-shadow: 0 0 0 0 rgba(183, 28, 28, 0.12) !important;
  animation: pulse-red-clean 2s infinite !important;
}

@keyframes pulse-red-clean {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(183, 28, 28, 0.12);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(183, 28, 28, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(183, 28, 28, 0);
  }
}

/* Title typography */
.hero-title-clean {
  font-size: 54px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  margin-bottom: 16px !important;
  /* Reduced margin to tighten layout */
  letter-spacing: -0.02em !important;
  color: #081420 !important;
  /* Dark navy for high contrast */
}

/* Highlighted Gradient Text */
.highlight-text-clean {
  color: #B71C1C !important;
  background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
}

/* Body Text typography */
.hero-text-clean {
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: #4d5765 !important;
  /* Slate grey body color */
  max-width: 720px !important;
  margin: 0 auto 24px auto !important;
  /* Set clean bottom margin of 24px */
  font-weight: 400 !important;
}

/* Button enhancements */
.clean-primary-btn {
  background-color: #B71C1C !important;
  border-color: #B71C1C !important;
  color: #ffffff !important;
}

.clean-secondary-btn {
  background: transparent !important;
  border: 1px solid rgba(8, 20, 32, 0.2) !important;
  color: #081420 !important;
}

.clean-secondary-btn:hover {
  background: #081420 !important;
  color: #ffffff !important;
  border-color: #081420 !important;
  transform: translateY(-2px) !important;
}

/* Responsiveness overrides */
@media (max-width: 991px) {
  .hero-inner-clean {
    padding: 100px 0 80px 0 !important;
  }

  .hero-title-clean {
    font-size: 38px !important;
  }

  .hero-text-clean {
    font-size: 15px !important;
  }
}

/* ==========================================
   Twitter Icon replacement with SVG Mask
   ========================================== */
.fa-x-twitter {
  background-color: currentColor !important;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z'/%3E%3C/svg%3E") !important;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z'/%3E%3C/svg%3E") !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  width: 1em !important;
  height: 1em !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.fa-x-twitter::before {
  content: "" !important;
  display: none !important;
}

/* ==========================================
   Deployment Flow Section: Premium White and Red Theme
   ========================================== */
#project-sec {
  background-color: #FAFAFA !important;
  /* Pure White background */
  background-image: none !important;
}

/* Override text colors on the light background */
#project-sec .sec-title,
#project-sec .sec-title.text-white {
  color: #081420 !important;
  /* Rich Dark Navy */
}

#project-sec .sec-desc,
#project-sec .sec-desc.text-light {
  color: #4d5765 !important;
  /* Charcoal Grey */
}

/* Style the static step cards */
#project-sec .project-box-static {
  background-color: #F5F5F5 !important;
  /* Soft slate gray/blue background */
  background-image: none !important;
  /* Force remove dark background image */
  border: 1px solid #eaeef2 !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(8, 20, 32, 0.02) !important;
  padding: 45px !important;
  margin-bottom: 40px !important;
  width: 100% !important;
}

/* Step Title styling */
#project-sec .project-box .box-title,
#project-sec .project-box .box-title a {
  color: #081420 !important;
  /* Dark Navy */
  font-weight: 700 !important;
  font-size: 32px !important;
}

#project-sec .project-box .box-title a:hover {
  color: #B71C1C !important;
  /* High-class Crimson Red hover state */
}

/* Step Description text */
#project-sec .project-box .box-text {
  color: #5d6775 !important;
  /* Highly readable body color */
  font-size: 16px !important;
  line-height: 1.7 !important;
}

/* Counter Grids (Downtime %, Custom kVA, Transfer time etc) */
#project-sec .counter-grid_wrapp {
  border-top: 1px solid #eaeef2 !important;
  border-bottom: 1px solid #eaeef2 !important;
  background-color: #FAFAFA !important;
  /* Standout white background */
  padding: 20px !important;
  border-radius: 12px !important;
  margin: 30px 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  /* Expanded to 3 columns to utilize extra space */
  max-width: 480px !important;
  /* Increased from 320px to fit 3 items beautifully */
}

#project-sec .counter-grid {
  border-right: 1px solid #eaeef2 !important;
}

#project-sec .counter-grid:last-child {
  border-right: none !important;
}

#project-sec .counter-grid-title {
  color: #B71C1C !important;
  /* Vivid Red highlights for metrics */
  font-weight: 700 !important;
}

#project-sec .counter-text {
  color: #5d6775 !important;
  font-weight: 500 !important;
}

/* Buttons inside the cards */
#project-sec .project-box .th-btn {
  background-color: #B71C1C !important;
  /* Crimson Red button background */
  border: 1px solid #B71C1C !important;
  color: #ffffff !important;
}

#project-sec .project-box .th-btn .btn-text:before,
#project-sec .project-box .th-btn .btn-text:after {
  color: #ffffff !important;
}

#project-sec .project-box .th-btn.th-icon i {
  color: #ffffff !important;
}

#project-sec .project-box .th-btn:hover {
  background-color: #081420 !important;
  /* High-class Dark Navy hover state */
  border-color: #081420 !important;
}

/* Divider lines */
#project-sec .line-bottom {
  border-top: 1px solid #eaeef2 !important;
}

/* ==========================================
   Global Counter Animation Shaking Stabilization
   ========================================== */
.counter-number,
.counter-grid-title {
  font-variant-numeric: tabular-nums !important;
  font-feature-settings: "tnum" !important;
  -webkit-font-feature-settings: "tnum" !important;
  -moz-font-feature-settings: "tnum" !important;
  display: inline-block !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.counter-grid {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
}

/* ==========================================
   Integrity Consult Section: Premium White and Red Theme
   ========================================== */
#calc-sec {
  background: #f7f9fb !important;
  /* Premium light backdrop */
}

#calc-sec::before {
  background-image: linear-gradient(rgba(8, 20, 32, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 20, 32, 0.02) 1px, transparent 1px) !important;
  /* Tech blueprint grid in light gray */
  background-size: 35px 35px !important;
}

/* Section Header override on light background */
#calc-sec .sec-title,
#calc-sec .sec-title.text-white {
  color: #081420 !important;
  /* Rich Dark Navy */
}

#calc-sec .sec-desc,
#calc-sec .sec-desc.text-light {
  color: #4d5765 !important;
  /* Charcoal Grey */
}

/* Premium Consultation Form Card */
.premium-consult-card {
  background: #FAFAFA !important;
  /* Crisp solid white background */
  border: 1px solid #eaeef2 !important;
  border-left: 4px solid var(--theme-color, #B71C1C) !important;
  /* Crimson Red left border */
  box-shadow: 0 15px 40px rgba(8, 20, 32, 0.05) !important;
}

/* Form controls and input boxes */
.premium-consult-card .form-label {
  color: #5d6775 !important;
  /* Defined gray labels */
}

.premium-input-icon-wrap i {
  color: #8b96a5 !important;
  /* Stable gray icons */
}

.premium-input-icon-wrap .form-control {
  background: #F5F5F5 !important;
  /* Light slate backdrop */
  border: 1px solid #cbd5e1 !important;
  /* Defined border */
  color: #081420 !important;
  /* Dark text for typing */
}

.premium-input-icon-wrap .form-control::placeholder {
  color: #94a3b8 !important;
}

.premium-input-icon-wrap .form-control:focus {
  background: #FAFAFA !important;
  border-color: var(--theme-color, #B71C1C) !important;
  box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.06) !important;
}

/* Select options */
.premium-input-icon-wrap select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238b96a5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") !important;
}

.premium-input-icon-wrap select.form-control option {
  background-color: #FAFAFA !important;
  color: #081420 !important;
}

/* Consultation Workflow Timeline */
.ops-process-timeline {
  background: #F5F5F5 !important;
  border-top: 1px solid #eaeef2 !important;
}

.ops-timeline-title {
  color: #081420 !important;
  /* Dark title */
}

.ops-step-text {
  color: #4d5765 !important;
  /* Readability */
}

.ops-timeline-arrow {
  color: #cbd5e1 !important;
}

/* Operations Slideshow Console (Right Side) */
.ops-slideshow-container {
  background: #FAFAFA !important;
  border: 1px solid #eaeef2 !important;
  box-shadow: 0 15px 40px rgba(8, 20, 32, 0.05) !important;
}

/* Credentials Trust Stamp Badges */
.ops-badges-title {
  color: #5d6775 !important;
}

.ops-badge-item {
  background: #FAFAFA !important;
  border: 1px solid #eaeef2 !important;
  box-shadow: 0 4px 10px rgba(8, 20, 32, 0.03) !important;
}

.ops-badge-item span {
  color: #4d5765 !important;
}

.ops-badge-item:hover {
  box-shadow: 0 10px 20px rgba(8, 20, 32, 0.08) !important;
  background: #f1f5f9 !important;
}

.ops-badge-item:hover span {
  color: #081420 !important;
}

/* Hide the old dark background overlay container behind the consult form */
#calc-sec .appointment-area::before {
  display: none !important;
  background-image: none !important;
}

/* ==========================================
   Visual Hierarchy & Alternating Section Backgrounds
   ========================================== */

/* 1. Our Solutions Section: Soft Red-tinted background */
#solutions-sec {
  background-color: #faf0f0 !important;
  /* Soft warm crimson-tinted off-white */
  background-image: none !important;
  /* Overrides template default service_bg_1.webp */
}

/* 2. Testimonials Section: Soft Red-tinted background */
#testi-sec {
  background-color: #faf0f0 !important;
  /* Alternating soft red-tinted backdrop */
}

#testi-sec .testi-card {
  background-color: #FAFAFA !important;
  border: 1px solid #eaeef2 !important;
  box-shadow: 0 10px 30px rgba(8, 20, 32, 0.03) !important;
}

/* ==========================================
   Section Containment (Relative Positioning Fix)
   ========================================== */
section,
.about-area,
.project-area,
#solutions-sec,
#project-sec,
#industries-sec,
#why-choose-us,
#testi-sec,
#calc-sec,
#clientele-sec {
  position: relative !important;
}

/* ==========================================
   Deployment Flow Responsive Flex Alignment (Desktop 14, 15, 16 inches)
   ========================================== */
@media (min-width: 1200px) {
  #project-sec .project-box {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 60px !important;
    width: 100% !important;
  }

  /* Swap columns order for alternating items */
  #project-sec .project-box-static:nth-child(even) .project-box {
    flex-direction: row-reverse !important;
  }

  #project-sec .project-box-img {
    flex: 0 0 calc(45% - 30px) !important;
    max-width: calc(45% - 30px) !important;
    width: calc(45% - 30px) !important;
    height: 400px !important;
    /* Stable landscape frame */
    border-radius: 20px !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  #project-sec .project-box-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background-color: #FAFAFA !important;
    padding: 12px !important;
    border-radius: 20px !important;
  }

  #project-sec .project-box-details {
    flex: 0 0 calc(55% - 30px) !important;
    max-width: calc(55% - 30px) !important;
    width: calc(55% - 30px) !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* Tablet view styling refinements */
@media (min-width: 768px) and (max-width: 1199px) {
  #project-sec .project-box-img {
    max-width: 100% !important;
    height: 350px !important;
    margin-bottom: 30px !important;
  }

  #project-sec .project-box-details {
    max-width: 100% !important;
  }
}

/* Mobile view styling overrides for Deployment Flow cards to prevent layout truncation */
@media (max-width: 991px) {
  #project-sec .project-box-static {
    position: relative !important;
    /* Disable sticky overlay stack to allow scroll */
    top: 0 !important;
    padding: 24px 20px !important;
    /* Compact internal card padding */
    margin-bottom: 25px !important;
  }

  #project-sec .project-box-img {
    max-width: 100% !important;
    height: 220px !important;
    /* Compact fixed frame size */
    margin-bottom: 20px !important;
    border-radius: 12px !important;
  }

  #project-sec .project-box-img img {
    border-radius: 12px !important;
    object-fit: contain !important;
    background-color: #FAFAFA !important;
    padding: 12px !important;
  }

  #project-sec .project-box .box-title,
  #project-sec .project-box .box-title a {
    font-size: 22px !important;
    /* Muted typography scale */
    line-height: 1.3 !important;
  }

  #project-sec .project-box .box-text {
    font-size: 14px !important;
    /* Compact body font size */
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
  }

  #project-sec .counter-grid_wrapp {
    margin: 15px 0 !important;
    padding: 12px !important;
    gap: 10px !important;
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 100% !important;
  }

  #project-sec .counter-grid-title {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }

  #project-sec .counter-text {
    font-size: 11px !important;
    line-height: 1.3 !important;
  }

  #project-sec .project-box-details .mt-50 {
    margin-top: 20px !important;
    /* Mute CTA button margins */
  }
}

/* Consultation Banner Form Controls */
.consultation-form .form-control {
  height: 56px !important;
  border-radius: 99px !important;
  padding: 0 24px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
}

.consultation-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8) !important;
}

.consultation-form .th-btn {
  height: 56px !important;
  line-height: 56px !important;
  padding: 0 24px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  border-radius: 99px !important;
}

/* Process Card Image Containment */
.process-card .box-img img {
  object-fit: contain !important;
  background-color: #FAFAFA !important;
  padding: 10px !important;
}

/* ==========================================================================
   Comprehensive Mobile View Uncropped Image & Responsive Layout Overrides
   ========================================================================== */
@media (max-width: 991px) {

  /* Homepage Service Cards & Slider Mobile Uncropped Overrides */
  .service-card .service-overlay {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: #FAFAFA !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .service-card {
    box-sizing: border-box !important;
    word-break: break-word !important;
    overflow: hidden !important;
    max-width: 100% !important;
    padding: 24px 20px !important;
  }

  .service-card .box-content {
    position: relative !important;
    z-index: 3 !important;
    max-width: 100% !important;
    word-break: break-word !important;
  }

  .service-card .box-title,
  .service-card .box-title a,
  .service-card .box-text {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
  }

  /* Service Showcase Cards Mobile Containment & Vertical Column Stacking */
  .showcase-card {
    flex-direction: column !important;
    padding: 20px !important;
    gap: 20px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .showcase-img-frame {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 230px !important;
    max-height: 230px !important;
    flex: 0 0 auto !important;
    box-sizing: border-box !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  .showcase-img-frame img {
    object-fit: contain !important;
    background-color: #F5F5F5 !important;
    padding: 12px !important;
    height: 100% !important;
    width: 100% !important;
    display: block !important;
  }

  .showcase-content {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
    box-sizing: border-box !important;
  }

  /* Product Portfolio Cards Mobile Containment */
  .product-premium-card,
  .product-img-wrap {
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .product-img-wrap img {
    object-fit: contain !important;
    background-color: #F5F5F5 !important;
    padding: 10px !important;
    max-height: 260px !important;
    width: 100% !important;
  }

  .product-premium-card.wide-card .product-img-wrap img {
    object-fit: contain !important;
    background-color: #F5F5F5 !important;
    padding: 10px !important;
    max-height: 260px !important;
    width: 100% !important;
  }

  /* Custom Blueprint Section Mobile Containment */
  #project-sec .project-box-img {
    max-width: 100% !important;
    box-sizing: border-box !important;
    height: auto !important;
    min-height: 200px !important;
    max-height: 280px !important;
  }

  #project-sec .project-box-img img {
    object-fit: contain !important;
    background-color: #FAFAFA !important;
    padding: 10px !important;
    height: 100% !important;
    width: 100% !important;
  }

  /* Process Cards & Gallery Cards Mobile Containment */
  .process-card .box-img img {
    object-fit: contain !important;
    background-color: #FAFAFA !important;
    padding: 10px !important;
    max-height: 260px !important;
  }

  .ops-slide-img-wrap img {
    object-fit: contain !important;
    background-color: #F5F5F5 !important;
    padding: 10px !important;
  }

  #installation-gallery-sec img {
    object-fit: contain !important;
    background-color: #f8f9fa !important;
    padding: 10px !important;
    max-height: 280px !important;
  }

  .specials-image-container img,
  .solution-img-wrap img {
    object-fit: contain !important;
    background-color: #F5F5F5 !important;
    padding: 10px !important;
  }
}

/* Modal Popup Layering, Body Scroll Lock, and 100dvh Viewport Overflow Fix */
html.mfp-helper,
body.mfp-helper,
body.modal-open-fix {
  overflow: hidden !important;
  height: 100% !important;
}

.mfp-bg {
  z-index: 9999999 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  height: 100dvh !important;
}

.mfp-wrap {
  z-index: 10000000 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  height: 100dvh !important;
  overflow: hidden !important;
}

.mfp-container {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  height: 100dvh !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.mfp-container:before {
  display: none !important;
  /* Eliminates vertical inline-block spacer causing extra page height & blank space */
}

.mfp-content,
.white-popup {
  max-height: 90dvh !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

/* ========= Alpha Custom Select Dropdown ========= */
/* Force-hide native selects after JS conversion (overrides display:block !important) */
select[data-alpha-converted="1"] {
  display: none !important;
}

.alpha-custom-select {
  position: relative !important;
  width: 100% !important;
  user-select: none !important;
}

.alpha-select-trigger {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: #F5F5F5 !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 8px !important;
  padding: 12px 16px 12px 42px !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  color: #081420 !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  min-height: 46px !important;
  line-height: 1.5 !important;
}

.alpha-select-trigger:hover {
  border-color: #94a3b8 !important;
}

.alpha-custom-select.open .alpha-select-trigger {
  background: #FAFAFA !important;
  border-color: var(--theme-color, #B71C1C) !important;
  box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.12) !important;
}

.alpha-select-value {
  flex: 1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.alpha-select-value[data-placeholder="true"] {
  color: #94a3b8 !important;
}

.alpha-select-arrow {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0 !important;
  color: #8b96a5 !important;
  margin-left: 10px !important;
  transition: transform 0.25s ease !important;
}

.alpha-custom-select.open .alpha-select-arrow {
  transform: rotate(180deg) !important;
  color: var(--theme-color, #B71C1C) !important;
}

/* Dropdown options list */
.alpha-select-options {
  position: absolute !important;
  top: calc(100% + 6px) !important;
  left: 0 !important;
  right: 0 !important;
  background: #FAFAFA !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 28px -4px rgba(0, 0, 0, 0.1), 0 4px 8px -2px rgba(0, 0, 0, 0.04) !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 6px !important;
  z-index: 999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-8px) !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  max-height: 240px !important;
  overflow-y: auto !important;
}

.alpha-custom-select.open .alpha-select-options {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Individual option items */
.alpha-select-option {
  padding: 10px 14px !important;
  font-size: 0.88rem !important;
  font-weight: 400 !important;
  color: #334155 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.alpha-select-option:hover {
  background: rgba(183, 28, 28, 0.06) !important;
  color: #B71C1C !important;
}

.alpha-select-option.selected {
  background: rgba(183, 28, 28, 0.08) !important;
  color: #B71C1C !important;
  font-weight: 600 !important;
}

.alpha-select-option.selected::before {
  content: "\f00c" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-size: 0.7rem !important;
  color: #B71C1C !important;
}

/* Focus icon color when dropdown is open */
.alpha-custom-select.open ~ i {
  color: var(--theme-color, #B71C1C) !important;
}

/* Scrollbar inside dropdown */
.alpha-select-options::-webkit-scrollbar {
  width: 5px !important;
}
.alpha-select-options::-webkit-scrollbar-track {
  background: transparent !important;
}
.alpha-select-options::-webkit-scrollbar-thumb {
  background: #cbd5e1 !important;
  border-radius: 10px !important;
}
.alpha-select-options::-webkit-scrollbar-thumb:hover {
  background: #94a3b8 !important;
}

/* Context: Inside popup modals (dark bg) */
.white-popup .alpha-select-trigger,
.mfp-content .alpha-select-trigger {
  background: #F5F5F5 !important;
  border-color: #cbd5e1 !important;
  color: #081420 !important;
}

/* Context: Finder section (equipment select in solutions page) */
.finder-select + .alpha-custom-select .alpha-select-trigger {
  background: #F5F5F5 !important;
  border: 1px solid #cbd5e1 !important;
  color: #081420 !important;
  padding: 12px 16px !important;
  border-radius: 8px !important;
  min-height: 48px !important;
}

.finder-select + .alpha-custom-select .alpha-select-value[data-placeholder="true"] {
  color: #94a3b8 !important;
}

.finder-select + .alpha-custom-select .alpha-select-arrow {
  color: #8b96a5 !important;
}

.finder-select + .alpha-custom-select.open .alpha-select-trigger {
  background: #FAFAFA !important;
  border-color: var(--theme-color, #B71C1C) !important;
  box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.12) !important;
}

.finder-select + .alpha-custom-select.open .alpha-select-arrow {
  color: var(--theme-color, #B71C1C) !important;
}

/* Context: Contact page custom form */
.form-select-custom + .alpha-custom-select .alpha-select-trigger {
  background: #F5F5F5 !important;
  border: 1px solid #E2E8F0 !important;
  color: #081420 !important;
  height: 48px !important;
  padding: 12px 16px !important;
}

.form-select-custom + .alpha-custom-select .alpha-select-value[data-placeholder="true"] {
  color: #64748b !important;
}

/* ==========================================================================
   Visual Breathing Space: Enterprise B2B Spacing Refinements
   ========================================================================== */

/* 24px Card Gaps & Margins */
.feature-card,
.features-box-3,
.industry-card,
.process-card,
.solution-card,
.product-premium-card,
.gallery-product-card,
.cert-card,
.award-card,
.info-stat-card,
.help-card,
.client-logo-card,
.client-item {
  margin-bottom: 24px !important;
}

/* 24px Image & Text Separation */
.about-img-box,
.about-img-main,
.prolite-image-wrapper,
.showcase-img-frame,
.specials-showcase-panel,
.ops-slideshow-container {
  margin-bottom: 24px !important;
}

@media (min-width: 992px) {
  .about-img-box,
  .about-img-main,
  .prolite-image-wrapper,
  .showcase-img-frame,
  .specials-showcase-panel,
  .ops-slideshow-container {
    margin-bottom: 0 !important;
  }
}

/* ==========================================================================
   Smooth Scrolling & Lenis Momentum Integration
   ========================================================================== */

html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto !important;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}