/* ============================================================
   AI LAB TECHNOLOGIES - AGENTIC AI ERP STYLESHEET
   100% STANDALONE & ZERO-DEPENDENCY DESIGN SYSTEM
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
  --primary: rgb(223 42 25 / 1);
  --primary-dark: rgb(180 30 18);
  --primary-light: rgba(223, 42, 25, 0.1);
  --accent-900: #0f172a;
  --accent-800: #1e293b;
  --accent-700: #334155;
  --accent-600: #475569;
  --accent-200: #e2e8f0;
  --accent-100: #f1f5f9;
  --accent-50: #f8fafc;
  --white: #ffffff;
  --green: #10b981;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--white);
  color: var(--accent-700);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Site Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--accent-200);
  transition: background 0.3s, border-color 0.3s;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px ;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 36px ;
  width: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-700);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-list a:hover {
  color: var(--primary);
  background: var(--primary-light);
}
.has-dropdown { position: static; }

.has-dropdown > a::after {
  content: ' \25BE';
  font-size: 10px;
  opacity: 0.6;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(960px, 95vw);
  max-width: 95vw;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 24px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 100;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .dropdown-menu {
    display: none !important;
  }
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.dropdown-menu li:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(223, 42, 25, 0.08);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}

.dropdown-menu li a .icon-box {
  background: #ffeded;
  color: var(--primary);
  width: 44px;
  height: 36px ;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  font-size: 18px;
  flex-shrink: 0;
}

.mega-menu-cards {
  display: flex !important;
  padding: 0;
  overflow: hidden;
}

.mega-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px;
  flex: 1;
}

.mega-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  background: var(--white);
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.dropdown-menu.mega-menu-cards a.mega-card {
  padding: 20px;
}

.dropdown-menu.mega-menu-cards a.mega-card:hover {
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-color: #e2e8f0;
}

.mega-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mega-card-header .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #fef2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-card-header .icon-box i {
  font-size: 20px;
  color: var(--primary);
}

.mega-card-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-900);
  margin: 0;
}

.mega-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--accent-700);
  margin-bottom: 16px;
  flex: 1;
}

.explore-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-block;
}

.mega-menu-sidebar {
  width: 300px;
  background: #f8fafc;
  padding: 32px 24px;
  border-left: 1px solid #e2e8f0;
}

.mega-menu-sidebar h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-700);
  margin-bottom: 16px;
}

.mega-menu-sidebar p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--accent-700);
}

/* Header Action Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-toggle-btn {
  background: transparent;
  border: 1px solid #e2e8f0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
}

.theme-toggle-btn:hover {
  border-color: rgb(223, 42, 25);
  color: rgb(223, 42, 25);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 22px;
  color: #0f172a;
  cursor: pointer;
}

/* Site Footer */
/* ==========================================================================
   MASTER 5-COLUMN GLOBAL SITE FOOTER (Matching Index & Home Pages)
   ========================================================================== */


.site-footer .footer-bg-grid {
  position: absolute !important;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px) !important;
  background-size: 36px 36px, 72px 72px !important;
  pointer-events: none !important;
}

.site-footer .footer-orb-1 {
  position: absolute !important;
  top: -10%; right: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 70%) !important;
  filter: blur(90px) !important;
  pointer-events: none !important;
}

.site-footer .footer-orb-2 {
  position: absolute !important;
  bottom: 0%; left: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 42, 25, 0.15) 0%, transparent 70%) !important;
  filter: blur(90px) !important;
  pointer-events: none !important;
}

/* 5-Column Grid */
.site-footer .footer-top-grid {
  display: grid !important;
  grid-template-columns: 1.1fr 0.7fr 1.25fr 1.55fr 1.2fr !important;
  gap: 36px !important;
  padding-bottom: 44px !important;
  position: relative !important;
  z-index: 5 !important;
}

/* Brand Column */
.site-footer .footer-brand-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.site-footer .footer-logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
}

.site-footer .footer-logo .logo-img,
.footer-brand .brand-logo .logo-img {
  height: 48px !important;
  width: auto !important;
}

.site-footer .footer-brand-tagline {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.35 !important;
  margin: 0 !important;
}

.site-footer .footer-brand-desc {
  font-size: 12.5px !important;
  color: #94a3b8 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.site-footer .footer-block-title {
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  color: #00f0ff !important;
  margin: 0 0 10px !important;
}

.site-footer .footer-map-visual {
  position: relative !important;
  width: 100% !important;
  max-width: 290px !important;
  height: 120px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: rgba(3, 7, 18, 0.6) !important;
  border: 1px solid rgba(0, 240, 255, 0.15) !important;
  margin-top: 6px !important;
}

.site-footer .footer-map-bg {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 0.45 !important;
  filter: contrast(1.2) !important;
}

.site-footer .footer-map-pin {
  position: absolute !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 2px !important;
  transform: translate(-50%, -50%) !important;
  cursor: pointer !important;
  transition: transform 0.3s ease !important;
}

.site-footer .footer-map-pin:hover {
  transform: translate(-50%, -55%) scale(1.1) !important;
}

.site-footer .footer-map-pin i {
  font-size: 16px !important;
  filter: drop-shadow(0 0 8px currentColor) !important;
}

.site-footer .footer-map-pin .pin-label {
  font-size: 10px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9) !important;
  white-space: nowrap !important;
}

.site-footer .footer-map-pin.pin-sg { top: 68% !important; left: 28% !important; }
.site-footer .footer-map-pin.pin-sg i { color: #00f0ff !important; }
.site-footer .footer-map-pin.pin-my { top: 72% !important; left: 52% !important; }
.site-footer .footer-map-pin.pin-my i { color: #a855f7 !important; }
.site-footer .footer-map-pin.pin-in { top: 55% !important; left: 80% !important; }
.site-footer .footer-map-pin.pin-in i { color: #ff4530 !important; }

.site-footer .footer-social-links {
  display: flex !important;
  gap: 10px !important;
}

.site-footer .footer-social-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #cbd5e1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.site-footer .footer-social-icon:hover {
  background: rgba(0, 240, 255, 0.2) !important;
  border-color: #00f0ff !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 4px 14px rgba(0, 240, 255, 0.4) !important;
}

$113px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  color: #00f0ff !important;
  margin: 0 0 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.site-footer .footer-col-title {
  font-size: 13px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  color: #00f0ff !important;
  margin: 0 0 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.site-footer .footer-col-title.title-red {
  color: #ff4530 !important;
}

.site-footer .footer-nav-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.site-footer .footer-nav-list li a {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #94a3b8 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
}

.site-footer .footer-nav-list li a::before {
  content: '\f105' !important;
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
  font-size: 11px !important;
  color: #ff4530 !important;
  transition: transform 0.2s ease !important;
  flex-shrink: 0 !important;
}

.site-footer .footer-nav-list.list-red li a::before {
  color: #ff4530 !important;
}

.site-footer .footer-nav-list li a:hover {
  color: #ffffff !important;
  transform: translateX(4px) !important;
}

.site-footer .footer-assistant-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.site-footer .footer-ai-card {
  padding: 16px 18px !important;
  background: rgba(15, 23, 42, 0.85) !important;
  backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(0, 240, 255, 0.3) !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.site-footer .footer-ai-badge {
  font-size: 10.5px !important;
  font-weight: 800 !important;
  color: #00f0ff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.site-footer .footer-ai-body {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
}

.site-footer .footer-ai-speech h6 {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 3px 0 !important;
}

.site-footer .footer-ai-speech p {
  font-size: 11px !important;
  color: #94a3b8 !important;
  margin: 0 !important;
}

.site-footer .footer-ai-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 8px 14px !important;
  background: linear-gradient(135deg, #00f0ff 0%, #00b4d8 100%) !important;
  color: #030712 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.site-footer .footer-ai-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(0, 240, 255, 0.4) !important;
}

.site-footer .footer-ai-status-note {
  font-size: 10px !important;
  color: #64748b !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.site-footer .footer-ai-status-note .status-dot {
  color: #10b981 !important;
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 20px 0 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  position: relative !important;
  z-index: 5 !important;
}

.site-footer .copyright-text {
  font-size: 12.5px !important;
  color: #64748b !important;
  margin: 0 !important;
}

.site-footer .footer-bottom-links {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 12px !important;
  color: #475569 !important;
}

.site-footer .footer-bottom-links a {
  color: #64748b !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.site-footer .footer-bottom-links a:hover {
  color: #00f0ff !important;
}

@media (max-width: 1024px) {
  .site-footer .footer-top-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-top-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Hero Banner & High-Tech Image Special Effects */
.erp-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 480px;
  overflow: hidden;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.erp-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: heroImageKenBurns 18s cubic-bezier(0.25, 1, 0.5, 1) infinite alternate;
  filter: brightness(0.92) contrast(1.08);
}

@keyframes heroImageKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.09) translate(-8px, -4px);
  }
}

/* Ambient Radial Tech Glow Overlay */
.erp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 35%, rgba(223, 42, 25, 0.28) 0%, transparent 55%),
    radial-gradient(circle at 20% 70%, rgba(56, 189, 248, 0.18) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

/* Animated Light Beam Sweep across Hero Image */
.erp-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: skewX(-25deg);
  z-index: 3;
  animation: heroBeamSweep 7s infinite cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

@keyframes heroBeamSweep {
  0% {
    left: -120%;
  }

  40%,
  100% {
    left: 180%;
  }
}

/* Animated Moving Tech Dot-Matrix Pattern Overlay */
.hero-dots-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.28) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.55;
  animation: heroDotsMotion 25s linear infinite;
  mask-image: radial-gradient(circle at 60% 50%, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.3) 80%);
  -webkit-mask-image: radial-gradient(circle at 60% 50%, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.3) 80%);
}

@keyframes heroDotsMotion {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 56px 56px;
  }
}

.erp-hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  z-index: 4;
  padding: 64px 0 48px;
  box-sizing: border-box;
}

.erp-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  border-left: 4px solid rgb(223, 42, 25);
  box-shadow: -10px 0 20px -10px rgba(223, 42, 25, 0.5);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.erp-hero-title {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(223, 42, 25, 0.35);
  margin: 0;
  line-height: 1.2;
}

.erp-hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  margin-top: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  line-height: 1.4;
}

.hero-white {
  color: #ffffff;
}

.hero-red {
  color: #ff5252;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(255, 82, 82, 0.6);
}

/* Percentage Stats Overlay Grid Inside Hero Banner */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  width: 100%;
}

.hero-stat-card {
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

.title-red {
  color: #ef4444 !important;
}

.title-blue {
  color: #0284c7 !important;
}

.title-purple {
  color: #7c3aed !important;
}

.title-green {
  color: #059669 !important;
}

html[data-theme="dark"] .title-red {
  color: #ff5252 !important;
}

html[data-theme="dark"] .title-blue {
  color: #38bdf8 !important;
}

html[data-theme="dark"] .title-purple {
  color: #c084fc !important;
}

html[data-theme="dark"] .title-green {
  color: #34d399 !important;
}

@media (max-width: 1024px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Main Section Layout: Left Key Features Card + Right Main Content */
.erp-main-grid {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Left Key Features Sidebar Card */
.key-features-card {
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.key-features-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
  transition: color 0.3s;
}

.key-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.key-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  transition: color 0.3s;
}

.key-features-list li i {
  color: rgb(223, 42, 25);
  font-size: 14px;
  flex-shrink: 0;
}

.erp-sidebar-cta-image {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  height: 240px;
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.erp-sidebar-cta-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -10px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(223, 42, 25, 0.2);
  border-color: rgba(223, 42, 25, 0.3);
}

.erp-sidebar-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.erp-sidebar-cta-image:hover img {
  transform: scale(1.05);
  filter: brightness(1.03);
}

/* Right Content Area */
.erp-content-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.erp-lead-text {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
  transition: color 0.3s;
}

/* Split Image & Features Box */
.erp-split-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin: 8px 0;
}

.erp-split-img {
  width: 100%;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  background: #0f172a;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.erp-split-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -10px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(223, 42, 25, 0.2);
  border-color: rgba(223, 42, 25, 0.3);
}

.erp-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.erp-split-img:hover img {
  transform: scale(1.04);
}

.erp-split-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.erp-feature-item h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.erp-feature-item h4 i {
  color: rgb(223, 42, 25);
  font-size: 18px;
}

.erp-feature-item p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  transition: color 0.3s;
}

.erp-sub-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}

.erp-sub-feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.erp-sub-feature p {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  transition: color 0.3s;
}

/* Technology Services Section */
.offer-section {
  padding: 36px 0 60px;
  background: linear-gradient(115deg, #e0e7ff 0%, #f0f5ff 45%, #f8fafc 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: background 0.3s, border-color 0.3s;
}

.offer-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
}

.offer-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.offer-header p {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  transition: color 0.3s;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.offer-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

/* Top Accent Line on Hover */
.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(223, 42, 25), #ff6b5b);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(223, 42, 25, 0.3);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(223, 42, 25, 0.15);
}

.offer-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.offer-icon {
  font-size: 36px;
  color: rgb(223, 42, 25);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

.offer-card:hover .offer-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(223, 42, 25, 0.25));
}

.offer-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  transition: color 0.35s ease;
}

.offer-card:hover h3 {
  color: rgb(223, 42, 25);
}

.offer-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  transition: color 0.3s;
}

/* ============================================================
   ENTERPRISE EXTENSIONS (ROI Stats, Process Roadmap, FAQ & CTA)
   ============================================================ */

/* 1. ROI & Impact Metrics Bar */
.erp-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  margin-top: 8px;
}

html[data-theme="dark"] .erp-stats-bar {
  background: #111827;
  border-color: #1f2937;
}

.erp-stat-item {
  text-align: center;
  padding: 8px 12px;
  border-right: 1px solid #e2e8f0;
}

html[data-theme="dark"] .erp-stat-item {
  border-right-color: #1f2937;
}

.erp-stat-item:last-child {
  border-right: none;
}

.erp-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: rgb(223, 42, 25);
  line-height: 1.1;
  font-family: var(--font-heading, sans-serif);
}

.erp-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-top: 6px;
}

html[data-theme="dark"] .erp-stat-label {
  color: #94a3b8;
}

/* 2. Implementation Roadmap Section */
.erp-process-section {
  padding: 60px 0;
  background: #ffffff;
  transition: background 0.3s;
}

html[data-theme="dark"] .erp-process-section {
  background: #0b0f19;
}

.erp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.erp-process-step {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 20px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

html[data-theme="dark"] .erp-process-step {
  background: #111827;
  border-color: #1f2937;
}

.erp-process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(223, 42, 25, 0.4);
  box-shadow: 0 12px 24px rgba(223, 42, 25, 0.08);
}

.erp-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(223, 42, 25, 0.1);
  color: rgb(223, 42, 25);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 16px;
}

.erp-process-step h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

html[data-theme="dark"] .erp-process-step h4 {
  color: #ffffff;
}

.erp-process-step p {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
}

html[data-theme="dark"] .erp-process-step p {
  color: #94a3b8;
}

/* 3. Enterprise FAQ Accordion */
.erp-faq-section {
  padding: 60px 0 80px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  transition: background 0.3s, border-color 0.3s;
}

html[data-theme="dark"] .erp-faq-section {
  background: #0f172a;
  border-top-color: #1e293b;
}

.erp-faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.erp-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

html[data-theme="dark"] .erp-faq-item {
  background: #111827;
  border-color: #1f2937;
}

.erp-faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}

html[data-theme="dark"] .erp-faq-question {
  color: #f8fafc;
}

.erp-faq-question:hover {
  color: rgb(223, 42, 25);
}

.erp-faq-question i {
  color: rgb(223, 42, 25);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.erp-faq-item.active .erp-faq-question i {
  transform: rotate(180deg);
}

.erp-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.erp-faq-item.active .erp-faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.erp-faq-answer p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.7;
}

html[data-theme="dark"] .erp-faq-answer p {
  color: #94a3b8;
}

/* 4. Enterprise CTA Banner */
.erp-cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  border-radius: 24px;
  padding: 56px 40px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 60px auto;
  max-width: 1200px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
}

.erp-cta-banner h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.erp-cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.erp-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: rgb(223, 42, 25);
  color: #ffffff;
  padding: 13px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(223, 42, 25, 0.4);
  transition: transform 0.2s, background 0.2s;
}

.btn-cta-primary:hover {
  background: rgb(180, 30, 18);
  transform: translateY(-2px);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 13px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

/* ============================================================
   THEME SWITCHER & FLOATING BUTTONS
   ============================================================ */

.theme-switcher-widget {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.theme-toggle-btn {
  background: rgb(223, 42, 25);
  color: #ffffff;
  border: none;
  width: 44px;
  height: 36px ;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, transform 0.2s;
}

.theme-toggle-btn:hover {
  background: rgb(180, 30, 18);
}

.theme-menu {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%) scale(0.95);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  min-width: 120px;
}

.theme-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

.theme-option {
  background: transparent;
  border: none;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  transition: background 0.2s, color 0.2s;
  width: 100%;
}

.theme-option:hover {
  background: #f1f5f9;
  color: rgb(223, 42, 25);
}

.theme-option.active {
  background: rgb(223, 42, 25);
  color: #ffffff;
}

/* Floating WhatsApp & Back-To-Top */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 9999;
  background: #25d366;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  background: rgb(223, 42, 25);
  color: #ffffff;
  border: none;
  width: 44px;
  height: 36px ;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(223, 42, 25, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  background: rgb(180, 30, 18);
}

/* ============================================================
   DARK MODE OVERRIDES (html[data-theme="dark"])
   ============================================================ */
html[data-theme="dark"] body {
  background-color: #0b0f19;
  color: #cbd5e1;
}

html[data-theme="dark"] .site-header {
  background: rgba(11, 15, 25, 0.95);
  border-bottom-color: #1e293b;
}

html[data-theme="dark"] .nav-list a {
  color: #e2e8f0;
}

html[data-theme="dark"] .nav-list a:hover {
  color: rgb(223, 42, 25);
  background: rgba(223, 42, 25, 0.15);
}

html[data-theme="dark"] .dropdown-menu {
  background: #111827;
  border-color: #1f2937;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

html[data-theme="dark"] .dropdown-menu a {
  color: #e2e8f0;
}

html[data-theme="dark"] .dropdown-menu a:hover {
  background: #1e293b;
}

html[data-theme="dark"] .search-icon-btn {
  color: #e2e8f0;
}

html[data-theme="dark"] .key-features-card {
  background: #111827;
  border-color: #1f2937;
}

html[data-theme="dark"] .key-features-card h3 {
  color: #ffffff;
}

html[data-theme="dark"] .key-features-list li {
  color: #e2e8f0;
}

html[data-theme="dark"] .erp-lead-text {
  color: #cbd5e1;
}

html[data-theme="dark"] .erp-feature-item h4 {
  color: #ffffff;
}

html[data-theme="dark"] .erp-feature-item p {
  color: #94a3b8;
}

html[data-theme="dark"] .erp-sub-feature h4 {
  color: #ffffff;
}

html[data-theme="dark"] .erp-sub-feature p {
  color: #94a3b8;
}

html[data-theme="dark"] .offer-section {
  background: #0f172a;
  border-top-color: #1e293b;
  border-bottom-color: #1e293b;
}

html[data-theme="dark"] .offer-header h2 {
  color: #ffffff;
}

html[data-theme="dark"] .offer-header p {
  color: #94a3b8;
}

html[data-theme="dark"] .offer-card {
  background: #111827;
  border-color: #1f2937;
  box-shadow: none;
}

html[data-theme="dark"] .offer-card:hover {
  background: #172033;
  border-color: rgba(223, 42, 25, 0.4);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(223, 42, 25, 0.25);
}

/* Dark Mode Special Effects for Images & Icons */
html[data-theme="dark"] .erp-sidebar-cta-image,
html[data-theme="dark"] .erp-split-img {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(223, 42, 25, 0.15);
}

html[data-theme="dark"] .erp-sidebar-cta-image:hover,
html[data-theme="dark"] .erp-split-img:hover {
  border-color: rgba(223, 42, 25, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(223, 42, 25, 0.35);
}

html[data-theme="dark"] .key-features-list li i,
html[data-theme="dark"] .erp-feature-item h4 i {
  color: #ff5252;
  filter: drop-shadow(0 0 8px rgba(255, 82, 82, 0.7));
}

html[data-theme="dark"] .key-features-card {
  background: linear-gradient(145deg, #0f172a 0%, #172033 100%);
  border-color: rgba(223, 42, 25, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(223, 42, 25, 0.1);
}

html[data-theme="dark"] .offer-section {
  background: linear-gradient(115deg, #1e1b4b 0%, #0f172a 50%, #0b1120 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .offer-card h3 {
  color: #ffffff;
}

html[data-theme="dark"] .offer-card p {
  color: #94a3b8;
}

html[data-theme="dark"] /* ==========================================================================
   MASTER 5-COLUMN GLOBAL SITE FOOTER (Matching Index & Home Pages)
   ========================================================================== */


.site-footer .footer-bg-grid {
  position: absolute !important;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px) !important;
  background-size: 36px 36px, 72px 72px !important;
  pointer-events: none !important;
}

.site-footer .footer-orb-1 {
  position: absolute !important;
  top: -10%; right: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 70%) !important;
  filter: blur(90px) !important;
  pointer-events: none !important;
}

.site-footer .footer-orb-2 {
  position: absolute !important;
  bottom: 0%; left: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 42, 25, 0.15) 0%, transparent 70%) !important;
  filter: blur(90px) !important;
  pointer-events: none !important;
}

/* 5-Column Grid */
.site-footer .footer-top-grid {
  display: grid !important;
  grid-template-columns: 1.1fr 0.7fr 1.25fr 1.55fr 1.2fr !important;
  gap: 36px !important;
  padding-bottom: 44px !important;
  position: relative !important;
  z-index: 5 !important;
}

/* Brand Column */
.site-footer .footer-brand-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.site-footer .footer-logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
}

.site-footer .footer-logo .logo-img,
.footer-brand .brand-logo .logo-img {
  height: 48px !important;
  width: auto !important;
}

.site-footer .footer-brand-tagline {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.35 !important;
  margin: 0 !important;
}

.site-footer .footer-brand-desc {
  font-size: 12.5px !important;
  color: #94a3b8 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.site-footer .footer-block-title {
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  color: #00f0ff !important;
  margin: 0 0 10px !important;
}

.site-footer .footer-map-visual {
  position: relative !important;
  width: 100% !important;
  max-width: 290px !important;
  height: 120px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: rgba(3, 7, 18, 0.6) !important;
  border: 1px solid rgba(0, 240, 255, 0.15) !important;
  margin-top: 6px !important;
}

.site-footer .footer-map-bg {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 0.45 !important;
  filter: contrast(1.2) !important;
}

.site-footer .footer-map-pin {
  position: absolute !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 2px !important;
  transform: translate(-50%, -50%) !important;
  cursor: pointer !important;
  transition: transform 0.3s ease !important;
}

.site-footer .footer-map-pin:hover {
  transform: translate(-50%, -55%) scale(1.1) !important;
}

.site-footer .footer-map-pin i {
  font-size: 16px !important;
  filter: drop-shadow(0 0 8px currentColor) !important;
}

.site-footer .footer-map-pin .pin-label {
  font-size: 10px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9) !important;
  white-space: nowrap !important;
}

.site-footer .footer-map-pin.pin-sg { top: 68% !important; left: 28% !important; }
.site-footer .footer-map-pin.pin-sg i { color: #00f0ff !important; }
.site-footer .footer-map-pin.pin-my { top: 72% !important; left: 52% !important; }
.site-footer .footer-map-pin.pin-my i { color: #a855f7 !important; }
.site-footer .footer-map-pin.pin-in { top: 55% !important; left: 80% !important; }
.site-footer .footer-map-pin.pin-in i { color: #ff4530 !important; }

.site-footer .footer-social-links {
  display: flex !important;
  gap: 10px !important;
}

.site-footer .footer-social-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #cbd5e1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.site-footer .footer-social-icon:hover {
  background: rgba(0, 240, 255, 0.2) !important;
  border-color: #00f0ff !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 4px 14px rgba(0, 240, 255, 0.4) !important;
}

$113px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  color: #00f0ff !important;
  margin: 0 0 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.site-footer .footer-col-title {
  font-size: 13px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  color: #00f0ff !important;
  margin: 0 0 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.site-footer .footer-col-title.title-red {
  color: #ff4530 !important;
}

.site-footer .footer-nav-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.site-footer .footer-nav-list li a {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #94a3b8 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
}

.site-footer .footer-nav-list li a::before {
  content: '\f105' !important;
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
  font-size: 11px !important;
  color: #ff4530 !important;
  transition: transform 0.2s ease !important;
  flex-shrink: 0 !important;
}

.site-footer .footer-nav-list.list-red li a::before {
  color: #ff4530 !important;
}

.site-footer .footer-nav-list li a:hover {
  color: #ffffff !important;
  transform: translateX(4px) !important;
}

.site-footer .footer-assistant-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.site-footer .footer-ai-card {
  padding: 16px 18px !important;
  background: rgba(15, 23, 42, 0.85) !important;
  backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(0, 240, 255, 0.3) !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.site-footer .footer-ai-badge {
  font-size: 10.5px !important;
  font-weight: 800 !important;
  color: #00f0ff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.site-footer .footer-ai-body {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
}

.site-footer .footer-ai-speech h6 {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 3px 0 !important;
}

.site-footer .footer-ai-speech p {
  font-size: 11px !important;
  color: #94a3b8 !important;
  margin: 0 !important;
}

.site-footer .footer-ai-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 8px 14px !important;
  background: linear-gradient(135deg, #00f0ff 0%, #00b4d8 100%) !important;
  color: #030712 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.site-footer .footer-ai-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(0, 240, 255, 0.4) !important;
}

.site-footer .footer-ai-status-note {
  font-size: 10px !important;
  color: #64748b !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.site-footer .footer-ai-status-note .status-dot {
  color: #10b981 !important;
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 20px 0 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  position: relative !important;
  z-index: 5 !important;
}

.site-footer .copyright-text {
  font-size: 12.5px !important;
  color: #64748b !important;
  margin: 0 !important;
}

.site-footer .footer-bottom-links {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 12px !important;
  color: #475569 !important;
}

.site-footer .footer-bottom-links a {
  color: #64748b !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.site-footer .footer-bottom-links a:hover {
  color: #00f0ff !important;
}

@media (max-width: 1024px) {
  .site-footer .footer-top-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-top-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Mobile Header & Mobile Menu Drawer */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 22px;
  color: var(--accent-900);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

html[data-theme="dark"] .mobile-menu-btn {
  color: #ffffff;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  z-index: 10000;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}

html[data-theme="dark"] .mobile-nav-drawer {
  background: #0f172a;
  border-left: 1px solid #1e293b;
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

html[data-theme="dark"] .mobile-drawer-header {
  border-bottom-color: #1e293b;
}

.mobile-drawer-close {
  background: transparent;
  border: none;
  font-size: 22px;
  color: #475569;
  cursor: pointer;
}

html[data-theme="dark"] .mobile-drawer-close {
  color: #e2e8f0;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-drawer-links a {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, color 0.2s;
}

html[data-theme="dark"] .mobile-drawer-links a {
  color: #e2e8f0;
}

.mobile-drawer-links a:hover {
  background: rgba(223, 42, 25, 0.1);
  color: rgb(223, 42, 25);
}

/* Responsive & Device Optimizations */
html,
body {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
li {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Large Screens & Desktop (1200px and down) */
@media (max-width: 1200px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Responsive Mega Menu & Dropdown Constraints */
.dropdown-menu,
.mega-menu-cards {
  max-width: min(1040px, 95vw);
}

/* Laptops & Tablets Landscape (1024px and down) */
@media (max-width: 1024px) {
  nav {
    display: none !important;
  }

  .dropdown-menu,
  .mega-menu-cards,
  .has-dropdown .dropdown-menu {
    display: none !important;
    width: 0 !important;
    max-width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    height: 64px;
  }

  .nav-wrap {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
  }

  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .erp-hero {
    aspect-ratio: auto !important;
    min-height: auto !important;
  }

  .erp-hero-overlay {
    padding: 32px 0 20px;
  }

  .erp-hero-container {
    padding: 0 16px;
  }

  .erp-hero-title {
    font-size: clamp(24px, 4vw, 36px);
  }

  .erp-main-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 0 20px;
  }

  .key-features-card {
    padding: 24px 20px;
  }

  .erp-sidebar-cta-image {
    height: 200px;
    margin-top: 24px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

/* Tablets Portrait & Large Mobiles (768px and down) */
@media (max-width: 768px) {
  .nav-wrap {
    height: 64px;
  }

  .erp-hero {
    aspect-ratio: auto !important;
    min-height: auto !important;
  }

  .erp-hero-overlay {
    padding: 20px 0 16px;
  }

  .erp-hero-container {
    padding: 0 12px;
    border-left-width: 3px;
  }

  .erp-hero-title {
    font-size: 22px;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 16px;
  }

  .hero-stat-card {
    padding: 12px 10px;
  }

  .hero-stat-card .stat-number {
    font-size: 22px;
  }

  .hero-stat-card .stat-label {
    font-size: 11.5px;
  }

  .erp-main-grid {
    padding: 24px 0 16px;
    gap: 28px;
  }

  .erp-split-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .erp-split-img {
    height: 220px;
  }

  .erp-sub-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .offer-section {
    padding: 20px 0 48px;
  }

  .offer-header {
    margin-bottom: 24px;
  }

  .offer-header h2 {
    font-size: 26px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .offer-card {
    padding: 24px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .theme-switcher-widget {
    top: auto;
    bottom: 140px;
    transform: none;
  }

  .theme-menu {
    right: 48px;
    top: auto;
    bottom: 0;
    transform: scale(0.95);
  }

  .theme-menu.active {
    transform: scale(1);
  }

  .floating-whatsapp {
    width: 44px;
    height: 36px ;
    font-size: 22px;
    right: 16px;
    bottom: 76px;
  }

  .scroll-to-top {
    width: 40px;
    height: 40px;
    font-size: 14px;
    right: 16px;
    bottom: 20px;
  }
}

/* Small Screen Mobiles & iPhones (480px and down) */
@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .erp-hero {
    aspect-ratio: auto !important;
    min-height: auto !important;
  }

  .erp-hero-overlay {
    padding: 16px 0 12px;
  }

  .erp-hero-title {
    font-size: 19px;
    line-height: 1.25;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 12px;
  }

  .hero-stat-card {
    padding: 10px 6px;
  }

  .hero-stat-card .stat-number {
    font-size: 20px;
    margin-bottom: 2px;
  }

  .hero-stat-card .stat-label {
    font-size: 11px;
    line-height: 1.25;
  }

  .key-features-card h3 {
    font-size: 19px;
  }

  .key-features-list li {
    font-size: 14px;
  }

  .erp-lead-text {
    font-size: 14px;
    line-height: 1.65;
  }

  .erp-feature-item h4,
  .erp-sub-feature h4 {
    font-size: 15px;
  }

  .offer-header h2 {
    font-size: 22px;
  }

  .offer-header p {
    font-size: 14px;
  }

  .offer-card h3 {
    font-size: 16px;
  }

  .offer-card p {
    font-size: 13.5px;
  }
}

/* ============================================================
   ERP PERFORMANCE STATS SECTION
   ============================================================ */
.erp-stats-section {
  padding: 56px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.erp-stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(223, 42, 25, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(223, 42, 25, 0.5);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(223, 42, 25, 0.25);
}

.stat-number {
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 30%, #ff5252 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================================
   ERP IMPLEMENTATION ROADMAP SECTION
   ============================================================ */
.erp-roadmap-section {
  padding: 32px 0 50px;
  background: linear-gradient(145deg, #f0f9ff 0%, #f8fafc 55%, #fffbe6 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: background 0.3s;
}

.roadmap-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 28px;
}

.roadmap-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  transition: color 0.3s;
}

.roadmap-header p {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  transition: color 0.3s;
}

/* Connected Process Timeline Layout (Non-Card Design) */
.process-timeline-container {
  position: relative;
  max-width: 1080px;
  margin: 28px auto 0;
  padding: 20px 0;
}

/* Horizontal Connecting Timeline Track */
.process-timeline-line {
  position: absolute;
  top: 27px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, #ef4444 0%, #0284c7 35%, #7c3aed 70%, #059669 100%);
  border-radius: 4px;
  z-index: 1;
}

/* Animated Traveling Pulse Dot across Timeline */
.process-timeline-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
  animation: lineDotRun 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes lineDotRun {
  0% {
    left: 0%;
    border: 3px solid #ef4444;
    box-shadow: 0 0 10px #ef4444, 0 0 20px rgba(239, 68, 68, 0.7);
  }

  33% {
    border: 3px solid #0284c7;
    box-shadow: 0 0 10px #0284c7, 0 0 20px rgba(2, 132, 199, 0.7);
  }

  66% {
    border: 3px solid #7c3aed;
    box-shadow: 0 0 10px #7c3aed, 0 0 20px rgba(124, 58, 237, 0.7);
  }

  100% {
    left: 100%;
    border: 3px solid #059669;
    box-shadow: 0 0 10px #059669, 0 0 20px rgba(5, 150, 105, 0.7);
  }
}

.process-timeline-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.process-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-node-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Glowing Circular Icon Nodes */
.process-icon-node {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  position: relative;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  border: 4px solid #ffffff;
}

html[data-theme="dark"] .process-icon-node {
  border-color: #0b1120;
}

.node-red {
  background: linear-gradient(135deg, #ef4444, #f43f5e);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2), 0 8px 20px rgba(239, 68, 68, 0.35);
}

.node-blue {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.2), 0 8px 20px rgba(2, 132, 199, 0.35);
}

.node-purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.2), 0 8px 20px rgba(124, 58, 237, 0.35);
}

.node-green {
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.2), 0 8px 20px rgba(5, 150, 105, 0.35);
}

.process-step-item:hover .process-icon-node {
  transform: scale(1.18);
}

.process-step-badge {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 12px;
}

.badge-red {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.badge-blue {
  background: rgba(2, 132, 199, 0.12);
  color: #0284c7;
}

.badge-purple {
  background: rgba(124, 58, 237, 0.12);
  color: #7c3aed;
}

.badge-green {
  background: rgba(5, 150, 105, 0.12);
  color: #059669;
}

html[data-theme="dark"] .badge-red {
  background: rgba(248, 113, 113, 0.2);
  color: #f87171;
}

html[data-theme="dark"] .badge-blue {
  background: rgba(56, 189, 248, 0.2);
  color: #38bdf8;
}

html[data-theme="dark"] .badge-purple {
  background: rgba(192, 132, 252, 0.2);
  color: #c084fc;
}

html[data-theme="dark"] .badge-green {
  background: rgba(52, 211, 153, 0.2);
  color: #34d399;
}

.process-step-content {
  padding: 0 6px;
}

.process-step-content h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.process-step-content p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  transition: color 0.3s;
}

html[data-theme="dark"] .process-step-content p {
  color: #94a3b8;
}

html[data-theme="dark"] .erp-roadmap-section {
  background: linear-gradient(145deg, #0b1120 0%, #0f172a 60%, #131c31 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Responsive Connected Timeline Flow */
@media (max-width: 900px) {
  .process-timeline-line {
    top: 0;
    bottom: 0;
    left: 27px;
    right: auto;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ef4444 0%, #0284c7 35%, #7c3aed 70%, #059669 100%);
  }

  .process-timeline-line::after {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: lineDotRunVertical 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  @keyframes lineDotRunVertical {
    0% {
      top: 0%;
      border: 3px solid #ef4444;
      box-shadow: 0 0 10px #ef4444, 0 0 20px rgba(239, 68, 68, 0.7);
    }

    33% {
      border: 3px solid #0284c7;
      box-shadow: 0 0 10px #0284c7, 0 0 20px rgba(2, 132, 199, 0.7);
    }

    66% {
      border: 3px solid #7c3aed;
      box-shadow: 0 0 10px #7c3aed, 0 0 20px rgba(124, 58, 237, 0.7);
    }

    100% {
      top: 100%;
      border: 3px solid #059669;
      box-shadow: 0 0 10px #059669, 0 0 20px rgba(5, 150, 105, 0.7);
    }
  }

  .process-timeline-flow {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-step-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .process-node-wrapper {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

/* Dark Mode Overrides for New Sections */
html[data-theme="dark"] .erp-roadmap-section {
  background: #0b1120;
}

html[data-theme="dark"] .roadmap-header h2 {
  color: #ffffff;
}

html[data-theme="dark"] .roadmap-header p {
  color: #94a3b8;
}

html[data-theme="dark"] .roadmap-card {
  background: #111827;
  border-color: #1f2937;
}

html[data-theme="dark"] .roadmap-card:hover {
  border-color: rgba(223, 42, 25, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

html[data-theme="dark"] .roadmap-card h3 {
  color: #ffffff;
}

html[data-theme="dark"] .roadmap-card p {
  color: #94a3b8;
}

@media (max-width: 1024px) {

  .stats-grid,
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .stats-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   MULTI-COLOR ACCENT THEMES & SPECIAL EFFECTS FOR CARDS
   ============================================================ */

/* 1. Technology Services Cards Multi-Color Accent Themes */
.offer-card-1::before {
  background: linear-gradient(90deg, #ef4444, #f43f5e);
}

.offer-card-1 .offer-icon {
  color: #ef4444;
}

.offer-card-1:hover {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 20px 40px -12px rgba(239, 68, 68, 0.18), 0 0 0 1px rgba(239, 68, 68, 0.25);
}

.offer-card-1:hover h3 {
  color: #ef4444;
}

.offer-card-2::before {
  background: linear-gradient(90deg, #0284c7, #38bdf8);
}

.offer-card-2 .offer-icon {
  color: #0284c7;
}

.offer-card-2:hover {
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: 0 20px 40px -12px rgba(2, 132, 199, 0.18), 0 0 0 1px rgba(2, 132, 199, 0.25);
}

.offer-card-2:hover h3 {
  color: #0284c7;
}

.offer-card-3::before {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
}

.offer-card-3 .offer-icon {
  color: #7c3aed;
}

.offer-card-3:hover {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 20px 40px -12px rgba(124, 58, 237, 0.18), 0 0 0 1px rgba(124, 58, 237, 0.25);
}

.offer-card-3:hover h3 {
  color: #7c3aed;
}

.offer-card-4::before {
  background: linear-gradient(90deg, #059669, #10b981);
}

.offer-card-4 .offer-icon {
  color: #059669;
}

.offer-card-4:hover {
  border-color: rgba(5, 150, 105, 0.4);
  box-shadow: 0 20px 40px -12px rgba(5, 150, 105, 0.18), 0 0 0 1px rgba(5, 150, 105, 0.25);
}

.offer-card-4:hover h3 {
  color: #059669;
}

/* Dark Mode Multi-Color Accent Themes */
html[data-theme="dark"] .offer-card-1 .offer-icon {
  color: #f87171;
}

html[data-theme="dark"] .offer-card-2 .offer-icon {
  color: #38bdf8;
}

html[data-theme="dark"] .offer-card-3 .offer-icon {
  color: #c084fc;
}

html[data-theme="dark"] .offer-card-4 .offer-icon {
  color: #34d399;
}

html[data-theme="dark"] .offer-card-1:hover {
  border-color: rgba(248, 113, 113, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(248, 113, 113, 0.25);
}

html[data-theme="dark"] .offer-card-2:hover {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(56, 189, 248, 0.25);
}

html[data-theme="dark"] .offer-card-3:hover {
  border-color: rgba(192, 132, 252, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(192, 132, 252, 0.25);
}

html[data-theme="dark"] .offer-card-4:hover {
  border-color: rgba(52, 211, 153, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(52, 211, 153, 0.25);
}

/* 2. Stat Cards Multi-Color Themes */
.stat-card-1 .stat-number {
  background: linear-gradient(135deg, #38bdf8 30%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card-1:hover {
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(56, 189, 248, 0.3);
}

.stat-card-2 .stat-number {
  background: linear-gradient(135deg, #ff5252 30%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card-2:hover {
  border-color: rgba(255, 82, 82, 0.6);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 82, 82, 0.3);
}

.stat-card-3 .stat-number {
  background: linear-gradient(135deg, #c084fc 30%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card-3:hover {
  border-color: rgba(192, 132, 252, 0.6);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(192, 132, 252, 0.3);
}

.stat-card-4 .stat-number {
  background: linear-gradient(135deg, #34d399 30%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card-4:hover {
  border-color: rgba(52, 211, 153, 0.6);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(52, 211, 153, 0.3);
}

/* 3. Implementation Roadmap Step Badges Multi-Color Themes */
.roadmap-card-1 .step-badge {
  background: linear-gradient(135deg, #ef4444, #f43f5e);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
}

.roadmap-card-2 .step-badge {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.roadmap-card-3 .step-badge {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
}

.roadmap-card-4 .step-badge {
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}

.roadmap-card-1:hover {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 15px 30px rgba(239, 68, 68, 0.12);
}

.roadmap-card-2:hover {
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: 0 15px 30px rgba(2, 132, 199, 0.12);
}

.roadmap-card-3:hover {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.12);
}

.roadmap-card-4:hover {
  border-color: rgba(5, 150, 105, 0.4);
  box-shadow: 0 15px 30px rgba(5, 150, 105, 0.12);
}


/* ==========================================================================
   SERVICE PAGE LIGHT THEME OVERRIDE (Pours White Text on Dark Sections)
   ========================================================================== */
[data-theme="light"] .erp-hero,
[data-theme="light"] .erp-hero h1,
[data-theme="light"] .erp-hero h2,
[data-theme="light"] .erp-hero h3,
[data-theme="light"] .erp-hero h4,
[data-theme="light"] .erp-hero h5,
[data-theme="light"] .erp-hero h6,
[data-theme="light"] .erp-hero p,
[data-theme="light"] .erp-hero span:not(.hero-red),
[data-theme="light"] .erp-hero div,
[data-theme="light"] .erp-hero-title,
[data-theme="light"] .erp-hero-subtitle,
[data-theme="light"] .hero-white,
[data-theme="light"] .stat-number,
[data-theme="light"] .stat-label,
[data-theme="light"] .hero-stat-card,
[data-theme="light"] .erp-stats-section,
[data-theme="light"] .erp-stats-section h1,
[data-theme="light"] .erp-stats-section h2,
[data-theme="light"] .erp-stats-section h3,
[data-theme="light"] .erp-stats-section h4,
[data-theme="light"] .erp-stats-section p,
[data-theme="light"] .erp-stats-section span,
[data-theme="light"] .erp-cta-banner,
[data-theme="light"] .erp-cta-banner h1,
[data-theme="light"] .erp-cta-banner h2,
[data-theme="light"] .erp-cta-banner h3,
[data-theme="light"] .erp-cta-banner p,
[data-theme="light"] .erp-cta-banner span,
body.light-theme .erp-hero,
body.light-theme .erp-hero h1,
body.light-theme .erp-hero h2,
body.light-theme .erp-hero h3,
body.light-theme .erp-hero h4,
body.light-theme .erp-hero h5,
body.light-theme .erp-hero h6,
body.light-theme .erp-hero p,
body.light-theme .erp-hero span:not(.hero-red),
body.light-theme .erp-hero div,
body.light-theme .erp-hero-title,
body.light-theme .erp-hero-subtitle,
body.light-theme .hero-white,
body.light-theme .stat-number,
body.light-theme .stat-label,
body.light-theme .hero-stat-card,
body.light-theme .erp-stats-section,
body.light-theme .erp-stats-section h1,
body.light-theme .erp-stats-section h2,
body.light-theme .erp-stats-section h3,
body.light-theme .erp-stats-section h4,
body.light-theme .erp-stats-section p,
body.light-theme .erp-stats-section span,
body.light-theme .erp-cta-banner,
body.light-theme .erp-cta-banner h1,
body.light-theme .erp-cta-banner h2,
body.light-theme .erp-cta-banner h3,
body.light-theme .erp-cta-banner p,
body.light-theme .erp-cta-banner span {
  color: #ffffff !important;
}

[data-theme="light"] .hero-red,
body.light-theme .hero-red {
  color: #ff5252 !important;
}


/* ==========================================================================
   PERFECT DESKTOP DROPDOWN & MEGA MENU ALIGNMENT ENGINE (Fixes Off-Screen Shift)
   ========================================================================== */
@media (min-width: 1025px) {
  .site-header .nav-wrap,
  .nav-wrap {
    position: relative !important;
  }

  .site-header nav .nav-list,
  .nav-list {
    position: static !important;
  }

  .site-header .has-dropdown,
  .has-dropdown {
    position: static !important;
  }

  .dropdown-menu,
  .dropdown-menu.focus-mega-menu,
  .dropdown-menu.services-list-menu,
  .dropdown-menu.mega-menu-cards.platforms-list-menu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(12px) !important;
    margin: 0 auto !important;
    z-index: 1100 !important;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:hover .dropdown-menu.focus-mega-menu,
  .has-dropdown:hover .dropdown-menu.services-list-menu,
  .has-dropdown:hover .dropdown-menu.mega-menu-cards.platforms-list-menu {
    transform: translateX(-50%) translateY(0) !important;
  }

  .dropdown-menu.focus-mega-menu {
    width: 1040px !important;
    max-width: min(1040px, calc(100vw - 48px)) !important;
  }

  .dropdown-menu.services-list-menu {
    width: 840px !important;
    max-width: min(840px, calc(100vw - 48px)) !important;
  }

  .dropdown-menu.mega-menu-cards.platforms-list-menu {
    width: 640px !important;
    max-width: min(640px, calc(100vw - 48px)) !important;
  }
}






/* ==========================================================================
   EXACT IMAGE 1 CARD VIEW & MEGA MENU ENGINE (Applied Universally across All Pages)
   ========================================================================== */
@media (min-width: 1025px) {
  .dropdown-menu.focus-mega-menu,
  .focus-mega-menu {
    width: 1080px !important;
    max-width: min(1080px, calc(100vw - 48px)) !important;
    padding: 24px !important;
    gap: 24px !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12) !important;
    border: 1px solid #e2e8f0 !important;
    align-items: stretch !important;
  }

  .focus-sidebar {
    width: 310px !important;
    gap: 6px !important;
    flex-shrink: 0 !important;
  }

  .focus-sidebar .focus-btn {
    padding: 9px 14px !important;
    gap: 12px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
  }

  .focus-sidebar .focus-btn .icon-box {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
  }

  .focus-sidebar .focus-btn span {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    color: #1e293b !important;
  }

  .focus-sidebar .focus-btn .arrow-icon {
    font-size: 12px !important;
    color: #64748b !important;
  }

  .focus-sidebar .focus-btn.active {
    border: 1.5px solid rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.08) !important;
  }

  .focus-sidebar .focus-btn.active .icon-box {
    background: rgba(255,255,255,0.2) !important;
    color: #ffffff !important;
  }

  .focus-sidebar .focus-btn.active span,
  .focus-sidebar .focus-btn.active .arrow-icon {
    color: #ffffff !important;
  }

  .focus-main-content {
    gap: 24px !important;
    grid-template-columns: 1fr 260px !important;
    flex: 1 !important;
  }

  /* Exact Card View Matching Image 1 */
  .focus-info-col {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
  }

  .focus-overview-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 24px 26px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    min-height: 240px !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .focus-overview-card:hover {
    border-color: #df2a19 !important;
    box-shadow: 0 8px 28px rgba(223, 42, 25, 0.12) !important;
  }

  .overview-card-header {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 16px !important;
  }

  .overview-card-icon {
    width: 44px !important;
    height: 36px  !important;
    border-radius: 12px !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important; color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    flex-shrink: 0 !important;
  }

  .overview-card-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 !important;
    line-height: 1.25 !important;
  }

  .overview-card-desc {
    font-size: 13.5px !important;
    color: #475569 !important;
    line-height: 1.6 !important;
    margin: 0 0 20px 0 !important;
    flex: 1 !important;
  }

  .overview-card-footer {
    display: flex !important;
    justify-content: flex-end !important;
    margin-top: auto !important;
  }

  .overview-card-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
  }

  .overview-card-btn:hover {
    color: #ffffff !important;
    transform: translateX(4px) !important;
  }

  .focus-visual-col {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
  }

  .focus-image-wrapper {
    width: 100% !important;
    height: 100% !important;
    min-height: 220px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
  }

  .focus-image-wrapper img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: 20px !important;
  }
}



/* ==========================================================================
   EXACT REFERENCE CARD VIEW ENGINE FOR FOCUS AREA DROPDOWN LIST (IMAGE 1 SPEC)
   ========================================================================== */
.focus-info-col {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.focus-overview-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 22px 24px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  box-sizing: border-box !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.focus-overview-card:hover {
  border-color: #cbd5e1 !important;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06) !important;
}

.overview-card-header {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 16px !important;
}

.overview-card-icon {
  width: 44px !important;
  height: 36px  !important;
  min-width: 44px !important;
  border-radius: 12px !important;
  --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important; color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  flex-shrink: 0 !important;
}

.overview-card-title {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

.overview-card-desc {
  font-size: 13.5px !important;
  color: #475569 !important;
  line-height: 1.6 !important;
  margin: 0 0 20px 0 !important;
}

.overview-card-footer {
  display: flex !important;
  justify-content: flex-end !important;
  margin-top: auto !important;
}

.overview-card-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.overview-card-btn:hover {
  color: #ffffff !important;
  transform: translateX(4px) !important;
}



/* ==========================================================================
   FOCUS PREVIEW SUBMENU - 1 COLUMN X 4 ROWS VERTICAL STACKED LAYOUT
   ========================================================================== */
.focus-preview-submenu .submodules-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: repeat(4, auto) !important;
  gap: 10px !important;
  margin-top: 10px !important;
}

.focus-preview-submenu .submodule-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 16px !important;
  gap: 16px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.focus-preview-submenu .submodule-card:hover {
  border-color: #df2a19 !important;
  box-shadow: 0 6px 18px rgba(223, 42, 25, 0.12) !important;
  transform: translateX(4px) !important;
  background: #fffbfb !important;
}

.focus-preview-submenu .submodule-top {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 0 !important;
  flex-shrink: 0 !important;
}

.focus-preview-submenu .submodule-info {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
}

.focus-preview-submenu .submodule-card h4 {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  margin: 0 0 2px 0 !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.focus-preview-submenu .submodule-card p {
  font-size: 11.5px !important;
  color: #64748b !important;
  margin: 0 !important;
  line-height: 1.35 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.focus-preview-submenu .submodule-arrow-link {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #df2a19 !important;
  flex-shrink: 0 !important;
  margin-left: auto !important;
  transition: transform 0.2s ease !important;
}

.focus-preview-submenu .submodule-card:hover .submodule-arrow-link {
  transform: translateX(4px) !important;
}

/* Light Theme overrides for 1 Col Submodule Card */
[data-theme="light"] .focus-preview-submenu .submodule-card,
body.light-theme .focus-preview-submenu .submodule-card {
  background: #ffffff !important;
  border-color: #cbd5e1 !important;
}

[data-theme="light"] .focus-preview-submenu .submodule-card h4,
body.light-theme .focus-preview-submenu .submodule-card h4 {
  color: #0f172a !important;
}

[data-theme="light"] .focus-preview-submenu .submodule-card p,
body.light-theme .focus-preview-submenu .submodule-card p {
  color: #475569 !important;
}





/* ==========================================================================
   REMOVE FOCUS OVERVIEW CARD INNER EMPTY SPACE FIX
   ========================================================================== */
@media (min-width: 1025px) {
  .dropdown-menu.focus-mega-menu {
    width: 960px !important;
    max-width: min(960px, calc(100vw - 48px)) !important;
    display: flex !important;
    padding: 24px !important;
    gap: 24px !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12) !important;
    border: 1px solid #e2e8f0 !important;
    align-items: center !important;
  }

  .focus-sidebar {
    width: 280px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .focus-main-content {
    flex: 1 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 260px !important;
    gap: 20px !important;
    align-items: center !important;
    min-width: 0 !important;
  }

  .focus-info-col {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    height: 100% !important;
    min-width: 0 !important;
    position: relative !important;
  }

  /* Submodules Grid (1 Column x 4 Rows) */
  .focus-preview-submenu {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .focus-preview-submenu[style*="display: none"] {
    display: none !important;
  }

  .focus-preview-submenu .submodules-heading {
    font-size: 11.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    color: #0f172a !important;
    text-transform: uppercase !important;
    margin-bottom: 4px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .focus-preview-submenu .submodules-heading i {
    color: #df2a19 !important;
  }

  .focus-preview-submenu .submodules-heading-line {
    width: 32px !important;
    height: 2.5px !important;
    background: #df2a19 !important;
    border-radius: 2px !important;
    margin-bottom: 10px !important;
  }

  .focus-preview-submenu .submodules-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(4, auto) !important;
    gap: 8px !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .focus-preview-submenu .submodule-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 14px !important;
    gap: 12px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .focus-preview-submenu .submodule-card:hover {
    border-color: #df2a19 !important;
    box-shadow: 0 4px 14px rgba(223, 42, 25, 0.12) !important;
    transform: translateX(3px) !important;
    background: #fffbfb !important;
  }

  .focus-preview-submenu .submodule-top {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }

  .focus-preview-submenu .submodule-info {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .focus-preview-submenu .submodule-card h4 {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 0 1px 0 !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .focus-preview-submenu .submodule-card p {
    font-size: 11px !important;
    color: #64748b !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .focus-preview-submenu .submodule-arrow-link {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    color: #df2a19 !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    transition: transform 0.2s ease !important;
  }

  .focus-preview-submenu .submodule-card:hover .submodule-arrow-link {
    transform: translateX(3px) !important;
  }

  /* Compact Focus Overview Card (Zero Inner Empty Space) */
  .focus-overview-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 22px 24px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    height: auto !important;
    width: 100% !important;
    align-self: center !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-sizing: border-box !important;
  }

  .focus-overview-card[style*="display: none"] {
    display: none !important;
  }
  .focus-overview-card[style*="display: block"] {
    display: flex !important;
  }

  .focus-overview-card:hover {
    border-color: #df2a19 !important;
    box-shadow: 0 8px 28px rgba(223, 42, 25, 0.12) !important;
  }

  .overview-card-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 0 !important;
  }

  .overview-card-icon {
    width: 44px !important;
    height: 36px  !important;
    border-radius: 10px !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important; color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    flex-shrink: 0 !important;
  }

  .overview-card-title {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 !important;
  }

  .overview-card-desc {
    font-size: 13px !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin: 0 !important;
  }

  .overview-card-footer {
    display: flex !important;
    justify-content: flex-end !important;
    margin-top: 4px !important;
  }

  .overview-card-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    color: #ffffff !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
  }

  .overview-card-btn:hover {
    background: #b91c1c !important;
    transform: translateX(3px) !important;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2) !important;
  }

  .focus-visual-col {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 260px !important;
    flex-shrink: 0 !important;
  }

  .focus-image-wrapper {
    width: 100% !important;
    height: 100% !important;
    min-height: 250px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08) !important;
  }

  .focus-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
}

/* ==========================================================================
   USER CUSTOM FOCUS OVERVIEW CARD STYLES
   ========================================================================== */
.focus-overview-card {
    display: block;
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border: 1px solid #d7dce5;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: auto;
    min-height: unset;
}

.focus-overview-card[style*="display: none"] {
    display: none !important;
}

.overview-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.overview-card-icon {
    width: 65px;
    height: 65px;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.overview-card-icon i {
    font-size: 30px;
    color: #ffffff !important;
}

.overview-card-title {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.overview-card-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 25px;
}

.overview-card-footer {
    margin-top: 15px;
}

.overview-card-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 10px;
    background: #009f78;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.overview-card-btn:hover {
    background: #007d5d;
}




/* ==========================================================================
   COMPACT FOCUS MEGA MENU - REDUCED WIDTH & HEIGHT ENGINE
   ========================================================================== */
@media (min-width: 1025px) {
  .dropdown-menu.focus-mega-menu {
    width: 830px !important;
    max-width: min(830px, calc(100vw - 32px)) !important;
    display: flex !important;
    padding: 16px !important;
    gap: 16px !important;
    background: #ffffff !important;
    border-radius: 14px !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12) !important;
    border: 1px solid #e2e8f0 !important;
    align-items: stretch !important;
  }

  /* Compact Sidebar List */
  .focus-sidebar {
    width: 240px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
  }

  .focus-sidebar .focus-btn {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 7px 10px !important;
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    font-size: 12.5px !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    width: 100% !important;
  }

  .focus-sidebar .focus-btn .icon-box {
    width: 28px !important;
    height: 28px !important;
    border-radius: 6px !important;
    background: #fee2e2 !important;
    color: #dc2626 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
  }

  .focus-sidebar .focus-btn span {
    flex: 1 !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    font-size: 12.5px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .focus-sidebar .focus-btn .arrow-icon {
    font-size: 11px !important;
    color: #94a3b8 !important;
  }

  .focus-sidebar .focus-btn.active {
    border: 1.5px solid rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08) !important;
  }

  .focus-sidebar .focus-btn.active .icon-box {
    background: rgba(255,255,255,0.2) !important;
    color: #ffffff !important;
  }

  .focus-sidebar .focus-btn.active span,
  .focus-sidebar .focus-btn.active .arrow-icon {
    color: #ffffff !important;
  }

  /* Compact Main Content Grid */
  .focus-main-content {
    flex: 1 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 210px !important;
    gap: 14px !important;
    align-items: stretch !important;
    min-width: 0 !important;
  }

  .focus-info-col {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    height: 100% !important;
    min-width: 0 !important;
    position: relative !important;
  }

  /* Submodules Grid (1 Column x 4 Rows - Compact) */
  .focus-preview-submenu {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .focus-preview-submenu[style*="display: none"] {
    display: none !important;
  }

  .focus-preview-submenu .submodules-heading {
    font-size: 10.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    color: #0f172a !important;
    text-transform: uppercase !important;
    margin-bottom: 2px !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
  }

  .focus-preview-submenu .submodules-heading i {
    color: #df2a19 !important;
  }

  .focus-preview-submenu .submodules-heading-line {
    width: 26px !important;
    height: 2px !important;
    background: #df2a19 !important;
    border-radius: 2px !important;
    margin-bottom: 6px !important;
  }

  .focus-preview-submenu .submodules-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(4, 1fr) !important;
    gap: 6px !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
  }

  .focus-preview-submenu .submodule-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 8px 10px !important;
    gap: 10px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .focus-preview-submenu .submodule-card:hover {
    border-color: #df2a19 !important;
    box-shadow: 0 3px 10px rgba(223, 42, 25, 0.1) !important;
    transform: translateX(2px) !important;
    background: #fffbfb !important;
  }

  .focus-preview-submenu .submodule-top {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }

  .focus-preview-submenu .submodule-icon-box {
    width: 26px !important;
    height: 26px !important;
    border-radius: 6px !important;
    font-size: 11.5px !important;
  }

  .focus-preview-submenu .submodule-stat-val {
    font-size: 13px !important;
    font-weight: 800 !important;
  }

  .focus-preview-submenu .submodule-info {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .focus-preview-submenu .submodule-card h4 {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 0 1px 0 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .focus-preview-submenu .submodule-card p {
    font-size: 10.5px !important;
    color: #64748b !important;
    margin: 0 !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .focus-preview-submenu .submodule-arrow-link {
    font-size: 10.5px !important;
    font-weight: 700 !important;
    color: #df2a19 !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }

  /* Compact Overview Card View */
  .focus-overview-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 16px 18px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    min-height: 310px !important;
    width: 100% !important;
    align-self: stretch !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
  }

  .focus-overview-card[style*="display: none"] {
    display: none !important;
  }
  .focus-overview-card[style*="display: block"] {
    display: flex !important;
  }

  .focus-overview-card:hover {
    border-color: #df2a19 !important;
    box-shadow: 0 6px 20px rgba(223, 42, 25, 0.1) !important;
  }

  .overview-card-header {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 8px !important;
  }

  .overview-card-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important; color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
  }

  .overview-card-title {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 !important;
  }

  .overview-card-desc {
    font-size: 12px !important;
    color: #64748b !important;
    line-height: 1.55 !important;
    margin: 0 0 12px 0 !important;
  }

  .overview-card-footer {
    display: flex !important;
    justify-content: flex-end !important;
    margin-top: auto !important;
  }

  .overview-card-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    color: #ffffff !important;
    padding: 7px 15px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
  }

  .overview-card-btn:hover {
    background: #b91c1c !important;
    transform: translateX(2px) !important;
    box-shadow: 0 3px 10px rgba(5, 150, 105, 0.2) !important;
  }

  /* Compact Visual Column Image */
  .focus-visual-col {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 210px !important;
    flex-shrink: 0 !important;
  }

  .focus-image-wrapper {
    width: 100% !important;
    height: 100% !important;
    min-height: 310px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
  }

  .focus-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
}




/* ==========================================================================
   WIDE SIDEBAR & ZERO CENTER CARD EMPTY SPACE ENGINE
   ========================================================================== */
@media (min-width: 1025px) {
  .dropdown-menu.focus-mega-menu {
    width: 920px !important;
    max-width: min(920px, calc(100vw - 32px)) !important;
    display: flex !important;
    padding: 20px !important;
    gap: 20px !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12) !important;
    border: 1px solid #e2e8f0 !important;
    align-items: stretch !important;
  }

  /* Wide Sidebar (No Text Truncation) */
  .focus-sidebar {
    width: 275px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
  }

  .focus-sidebar .focus-btn {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 8px 12px !important;
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 9px !important;
    text-decoration: none !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    width: 100% !important;
  }

  .focus-sidebar .focus-btn .icon-box {
    width: 32px !important;
    height: 32px !important;
    border-radius: 7px !important;
    background: #fee2e2 !important;
    color: #dc2626 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
  }

  .focus-sidebar .focus-btn span {
    flex: 1 !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }

  .focus-sidebar .focus-btn .arrow-icon {
    font-size: 11.5px !important;
    color: #94a3b8 !important;
  }

  .focus-sidebar .focus-btn.active {
    border: 1.5px solid rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.08) !important;
  }

  .focus-sidebar .focus-btn.active .icon-box {
    background: rgba(255,255,255,0.2) !important;
    color: #ffffff !important;
  }

  .focus-sidebar .focus-btn.active span,
  .focus-sidebar .focus-btn.active .arrow-icon {
    color: #ffffff !important;
  }

  /* Main Content Layout */
  .focus-main-content {
    flex: 1 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 240px !important;
    gap: 16px !important;
    align-items: center !important;
    min-width: 0 !important;
  }

  .focus-info-col {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    height: 100% !important;
    min-width: 0 !important;
    position: relative !important;
  }

  /* Submodules Grid (1 Column x 4 Rows) */
  .focus-preview-submenu {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .focus-preview-submenu[style*="display: none"] {
    display: none !important;
  }

  .focus-preview-submenu .submodules-heading {
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    color: #0f172a !important;
    text-transform: uppercase !important;
    margin-bottom: 3px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .focus-preview-submenu .submodules-heading i {
    color: #df2a19 !important;
  }

  .focus-preview-submenu .submodules-heading-line {
    width: 28px !important;
    height: 2px !important;
    background: #df2a19 !important;
    border-radius: 2px !important;
    margin-bottom: 8px !important;
  }

  .focus-preview-submenu .submodules-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(4, auto) !important;
    gap: 7px !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .focus-preview-submenu .submodule-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 9px 12px !important;
    gap: 10px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .focus-preview-submenu .submodule-card:hover {
    border-color: #df2a19 !important;
    box-shadow: 0 3px 10px rgba(223, 42, 25, 0.1) !important;
    transform: translateX(2px) !important;
    background: #fffbfb !important;
  }

  .focus-preview-submenu .submodule-top {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }

  .focus-preview-submenu .submodule-icon-box {
    width: 28px !important;
    height: 28px !important;
    border-radius: 6px !important;
    font-size: 12px !important;
  }

  .focus-preview-submenu .submodule-stat-val {
    font-size: 13.5px !important;
    font-weight: 800 !important;
  }

  .focus-preview-submenu .submodule-info {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .focus-preview-submenu .submodule-card h4 {
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 0 1px 0 !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .focus-preview-submenu .submodule-card p {
    font-size: 11px !important;
    color: #64748b !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .focus-preview-submenu .submodule-arrow-link {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #df2a19 !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }

  /* Compact Overview Card View (ZERO Center Empty Space) */
  .focus-overview-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 20px 22px !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    height: auto !important;
    width: 100% !important;
    align-self: center !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
  }

  .focus-overview-card[style*="display: none"] {
    display: none !important;
  }
  .focus-overview-card[style*="display: block"] {
    display: flex !important;
  }

  .focus-overview-card:hover {
    border-color: #df2a19 !important;
    box-shadow: 0 6px 20px rgba(223, 42, 25, 0.1) !important;
  }

  .overview-card-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 0 !important;
  }

  .overview-card-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 9px !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important; color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    flex-shrink: 0 !important;
  }

  .overview-card-title {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 !important;
  }

  .overview-card-desc {
    font-size: 13px !important;
    color: #475569 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
  }

  .overview-card-footer {
    display: flex !important;
    justify-content: flex-end !important;
    margin-top: 4px !important;
  }

  .overview-card-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    --tw-bg-opacity: 1; background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
    color: #ffffff !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 12.5px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
  }

  .overview-card-btn:hover {
    background: #b91c1c !important;
    transform: translateX(3px) !important;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2) !important;
  }

  /* Visual Column Image */
  .focus-visual-col {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 240px !important;
    flex-shrink: 0 !important;
  }

  .focus-image-wrapper {
    width: 100% !important;
    height: 100% !important;
    min-height: 280px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
  }

  .focus-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
}


/* Force white text on Hero Banners even in Light Theme for Focus Area pages */
html[data-theme="light"] .hero-banner .hero-content h1,
html[data-theme="light"] .hero-banner .hero-content p,
body.light-theme .hero-banner .hero-content h1,
body.light-theme .hero-banner .hero-content p,
html[data-theme="light"] .service-hero .hero-content h1,
html[data-theme="light"] .service-hero .hero-content p,
body.light-theme .service-hero .hero-content h1,
body.light-theme .service-hero .hero-content p {
    color: #ffffff !important;
}


/* ==========================================================================
   FOCUS AREAS DROPDOWN LIGHT RED HIGHLIGHT EFFECT (Matching Services Menu Style)
   ========================================================================== */
.focus-sidebar .focus-btn:hover,
.focus-sidebar .focus-btn.active {
  background: #fff8f6 !important;
  border: 1px solid rgba(223, 42, 25, 0.25) !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(223, 42, 25, 0.06) !important;
}

.focus-sidebar .focus-btn.active .icon-box,
.focus-sidebar .focus-btn:hover .icon-box {
  background: rgba(223, 42, 25, 0.12) !important;
  color: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
  border-radius: 8px !important;
}

.focus-sidebar .focus-btn.active span,
.focus-sidebar .focus-btn:hover span {
  color: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
  font-weight: 700 !important;
}

.focus-sidebar .focus-btn.active .arrow-icon,
.focus-sidebar .focus-btn:hover .arrow-icon {
  color: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
}

/* Overview Learn More Button */
.overview-card-btn,
.focus-overview-card .overview-card-btn {
  background: #fff8f6 !important;
  border: 1px solid rgba(223, 42, 25, 0.3) !important;
  color: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  padding: 10px 22px !important;
  transition: all 0.2s ease !important;
}

.overview-card-btn:hover,
.focus-overview-card .overview-card-btn:hover {
  --tw-bg-opacity: 1;
  background: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
  color: #ffffff !important;
  border-color: rgb(223 42 25 / var(--tw-bg-opacity, 1)) !important;
}

/* Dark Mode Adjustments */
[data-theme="dark"] .focus-sidebar .focus-btn:hover,
[data-theme="dark"] .focus-sidebar .focus-btn.active,
body.dark-theme .focus-sidebar .focus-btn:hover,
body.dark-theme .focus-sidebar .focus-btn.active {
  background: rgba(223, 42, 25, 0.15) !important;
  border-color: rgba(223, 42, 25, 0.35) !important;
}

[data-theme="dark"] .focus-sidebar .focus-btn.active .icon-box,
[data-theme="dark"] .focus-sidebar .focus-btn:hover .icon-box,
body.dark-theme .focus-sidebar .focus-btn.active .icon-box,
body.dark-theme .focus-sidebar .focus-btn:hover .icon-box {
  background: rgba(223, 42, 25, 0.25) !important;
  color: #ff6b5b !important;
}

[data-theme="dark"] .focus-sidebar .focus-btn.active span,
[data-theme="dark"] .focus-sidebar .focus-btn:hover span,
body.dark-theme .focus-sidebar .focus-btn.active span,
body.dark-theme .focus-sidebar .focus-btn:hover span,
[data-theme="dark"] .focus-sidebar .focus-btn.active .arrow-icon,
[data-theme="dark"] .focus-sidebar .focus-btn:hover .arrow-icon,
body.dark-theme .focus-sidebar .focus-btn.active .arrow-icon,
body.dark-theme .focus-sidebar .focus-btn:hover .arrow-icon {
  color: #ff6b5b !important;
}


/* ==========================================================================
   COMPACT & PROFESSIONAL HEADER LAYOUT (Reduced Top Spacing & Clean Height)
   ========================================================================== */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  transition: all 0.3s ease !important;
}

.nav-wrap,
.site-header .nav-wrap {
  height: 58px !important;
  min-height: 58px !important;
  gap: 16px !important;
}

.logo-img,
.site-logo .logo-img {
  height: 36px !important;
  max-height: 36px !important;
  width: auto !important;
}

.nav-list a,
.site-header nav .nav-list > li > a {
  padding: 6px 12px !important;
  font-size: 13.5px !important;
}