/* ==========================================================================
   AI LAB TECHNOLOGIES — Homepage Content Section Stylesheet
   File: css/home-content.css
   Scope: ALL rules are strictly scoped under .home-content to prevent conflicts.
   ========================================================================== */

.home-content {
  --hc-primary: #df2a19;
  --hc-primary-dark: #b81f10;
  --hc-primary-light: rgba(223, 42, 25, 0.08);
  --hc-dark-bg: #0f172a;
  --hc-light-bg: #f8fafc;
  --hc-card-bg: #ffffff;
  --hc-border: #e2e8f0;
  --hc-text-dark: #0f172a;
  --hc-text-muted: #64748b;
  --hc-font: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --hc-transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --hc-radius: 16px;
  --hc-radius-lg: 24px;
  --hc-radius-full: 9999px;

  font-family: var(--hc-font);
  color: var(--hc-text-dark);
  position: relative;
  background-color: #ffffff;
}

/* Base Layout inside .home-content */
.home-content * {
  box-sizing: border-box;
}

/* Hardware-Accelerated Reveal Animations */
.home-content .reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.home-content .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-content .reveal-delay-1 {
  transition-delay: 0.1s;
}

.home-content .reveal-delay-2 {
  transition-delay: 0.2s;
}

.home-content .reveal-delay-3 {
  transition-delay: 0.3s;
}

.home-content .reveal-delay-4 {
  transition-delay: 0.4s;
}

.home-content .hc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-content .hc-section-pad {
  padding: 48px 0;
}

.home-content .hc-sec-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.home-content .hc-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--hc-radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(223, 42, 25, 0.1);
  color: var(--hc-primary);
  border: 1px solid rgba(223, 42, 25, 0.2);
  margin-bottom: 16px;
}

.home-content .hc-sec-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--hc-text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.home-content .hc-sec-desc {
  font-size: 17px;
  color: var(--hc-text-muted);
  line-height: 1.7;
}

/* Primary Button */
.home-content .hc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--hc-radius-full);
  background: linear-gradient(135deg, #ff4530 0%, var(--hc-primary) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(223, 42, 25, 0.3);
  transition: var(--hc-transition);
}

.home-content .hc-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(223, 42, 25, 0.45);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   1. SECTION: Who We Are (About)
   -------------------------------------------------------------------------- */
.home-content .hc-about-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: 36px;
  padding-bottom: 64px;
}

.home-content .hc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.home-content .hc-about-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 12px;
}

.home-content .hc-about-img-box {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 3px solid #ffffff;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  height: 175px;
  position: relative;
}

/* Alternate Ambient Floating for Collage Images */
.home-content .hc-about-img-box:nth-child(1) {
  animation: hcImgFloat1 7s ease-in-out infinite alternate;
}

.home-content .hc-about-img-box:nth-child(2) {
  animation: hcImgFloat2 8s ease-in-out infinite alternate;
}

.home-content .hc-about-img-box:nth-child(3) {
  animation: hcImgFloat2 6.5s ease-in-out infinite alternate;
}

.home-content .hc-about-img-box:nth-child(4) {
  animation: hcImgFloat1 7.5s ease-in-out infinite alternate;
}

.home-content .hc-about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.home-content .hc-about-img-box:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 20px 40px rgba(223, 42, 25, 0.22);
  border-color: rgba(223, 42, 25, 0.4);
  z-index: 4;
}

.home-content .hc-about-img-box:hover img {
  transform: scale(1.12);
  filter: brightness(1.05);
}

/* Center Badge with Pulsing Aura Ring */
.home-content .hc-about-center-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4530 0%, var(--hc-primary) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 10px 25px rgba(223, 42, 25, 0.45);
  border: 4px solid #ffffff;
  z-index: 5;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  animation: hcBadgePulseRing 2.5s infinite;
}

.home-content .hc-about-center-badge:hover {
  transform: translate(-50%, -50%) scale(1.22) rotate(180deg);
  box-shadow: 0 15px 35px rgba(223, 42, 25, 0.65), 0 0 25px rgba(223, 42, 25, 0.4);
}

.home-content .hc-about-content {
  padding-left: 10px;
}

.home-content .hc-about-p {
  font-size: 15px;
  color: var(--hc-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.home-content .hc-about-keypoints {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.home-content .hc-about-kp-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--hc-light-bg);
  border: 1px solid var(--hc-border);
  border-radius: 8px;
  transition: var(--hc-transition);
}

.home-content .hc-about-kp-card:hover {
  border-color: var(--hc-primary);
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.home-content .hc-about-kp-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(223, 42, 25, 0.1);
  color: var(--hc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.home-content .hc-about-kp-card h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--hc-text-dark);
  margin: 0;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   2. SECTION: Enterprise Services
   -------------------------------------------------------------------------- */
.home-content .hc-services-section {
  background: var(--hc-light-bg);
  position: relative;
}

.home-content .hc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.home-content .hc-service-card {
  background: #ffffff;
  border-radius: var(--hc-radius);
  border: 1px solid var(--hc-border);
  padding: 28px 24px;
  transition: var(--hc-transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.home-content .hc-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--hc-primary) 0%, #ff6b57 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-content .hc-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(223, 42, 25, 0.25);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.home-content .hc-service-card:hover::before {
  opacity: 1;
}

.home-content .hc-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(223, 42, 25, 0.1);
  color: var(--hc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.home-content .hc-service-card:hover .hc-service-icon {
  transform: scale(1.1) rotate(-4deg);
  background: var(--hc-primary);
  color: #ffffff;
}

.home-content .hc-service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--hc-text-dark);
  margin-bottom: 14px;
  line-height: 1.35;
}

.home-content .hc-service-card p {
  font-size: 15px;
  color: var(--hc-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* --------------------------------------------------------------------------
   3. SECTION: Futuristic AI Experience Center (Interactive Presenter Showcase)
   -------------------------------------------------------------------------- */
.home-content .hc-experience-center {
  background: linear-gradient(180deg, #060912 0%, #0b1324 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 36px;
}

.home-content .hc-exp-bg-grid {
  position: absolute;
  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);
  background-size: 36px 36px, 72px 72px;
  pointer-events: none;
}

.home-content .hc-exp-orb-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 42, 25, 0.2) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.home-content .hc-exp-orb-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

/* AI Virtual Presenter Host Banner */
.home-content .hc-ai-host-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto 32px;
  padding: 14px 22px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(223, 42, 25, 0.35);
  border-radius: 60px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(223, 42, 25, 0.15);
  position: relative;
  z-index: 10;
}

.home-content .hc-ai-host-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4530 0%, var(--hc-primary) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(223, 42, 25, 0.5);
}

.home-content .hc-ai-host-halo {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 42, 25, 0.5) 0%, transparent 70%);
  animation: hcAiAvatarGlow 2.5s ease-in-out infinite alternate;
}

.home-content .hc-ai-host-pulse {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  border: 2px solid #0f172a;
}

.home-content .hc-ai-host-dialogue-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-grow: 1;
}

.home-content .hc-ai-host-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-content .hc-ai-host-title {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.home-content .hc-ai-host-greeting {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(223, 42, 25, 0.2);
  color: #ff6b57;
  border: 1px solid rgba(223, 42, 25, 0.3);
}

.home-content .hc-ai-host-speech {
  font-size: 13.5px;
  color: #cbd5e1;
  margin: 0;
  font-style: italic;
  line-height: 1.4;
  transition: opacity 0.3s ease;
}

.home-content .hc-ai-tour-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.home-content .hc-ai-tour-btn:hover {
  background: rgba(223, 42, 25, 0.25);
  border-color: var(--hc-primary);
  color: #ffffff;
}

.home-content .hc-sec-title-light {
  color: #ffffff;
}

.home-content .hc-sec-desc-light {
  color: #94a3b8;
}

.home-content .hc-tag-badge-glow {
  background: rgba(223, 42, 25, 0.15);
  color: #ff6b57;
  border-color: rgba(223, 42, 25, 0.35);
  box-shadow: 0 0 15px rgba(223, 42, 25, 0.2);
}

.home-content .hc-experience-center .hc-sec-header {
  margin: 0 auto 16px;
}

.home-content .hc-text-gradient-red {
  background: linear-gradient(135deg, #ff6b57 0%, #df2a19 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Showcase Grid Layout */
.home-content .hc-showcase-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: flex-start;
  margin-top: 10px;
}

/* Frosted Glass Tabs for 9 Items */
.home-content .hc-showcase-sidebar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.home-content .hc-showcase-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  flex-shrink: 0;
}

.home-content .hc-tab-info h4 {
  font-size: 12.5px;
  font-weight: 700;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.home-content .hc-tab-info p {
  display: none;
}

.home-content .hc-tab-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #00f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.home-content .hc-showcase-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(223, 42, 25, 0.4);
  transform: translateY(-2px);
}

.home-content .hc-showcase-tab:hover .hc-tab-info h4 {
  color: #ffffff;
}

.home-content .hc-showcase-tab.active {
  background: linear-gradient(135deg, #ff4530 0%, var(--hc-primary) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(223, 42, 25, 0.45);
  transform: translateY(-2px);
}

.home-content .hc-showcase-tab.active .hc-tab-icon {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.home-content .hc-showcase-tab.active .hc-tab-info h4 {
  color: #ffffff;
}

.home-content .hc-tab-active-dot {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-content .hc-showcase-tab.active .hc-tab-active-dot {
  opacity: 1;
  box-shadow: 0 0 8px #ffffff;
}

/* 3D Glass Laptop Display Screen */
.home-content .hc-showcase-display {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-content .hc-holo-badge {
  position: absolute;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #00f0ff;
  border: 1px solid rgba(0, 229, 255, 0.3);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 10;
  pointer-events: none;
}

.home-content .hc-holo-1 {
  top: -14px;
  left: 20px;
  animation: hcCardFloat1 6s ease-in-out infinite;
}

.home-content .hc-holo-2 {
  top: 40px;
  right: -10px;
  color: #a855f7;
  border-color: rgba(168, 85, 247, 0.3);
  animation: hcCardFloat2 7s ease-in-out infinite;
}

/* 3D Laptop Device Styling */
.home-content .hc-3d-laptop-wrap {
  width: 100%;
  max-width: 520px;
  perspective: 1000px;
  transition: transform 0.25s ease-out;
}

.home-content .hc-laptop-screen {
  background: #0f172a;
  border-radius: 16px 16px 4px 4px;
  border: 8px solid #1e293b;
  border-bottom: none;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.home-content .hc-laptop-camera {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #334155;
  z-index: 12;
}

.home-content .hc-laptop-glare {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 11;
}

.home-content .hc-laptop-screen-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.home-content .hc-laptop-screen-content.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.home-content .hc-laptop-screen-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-content .hc-screen-overlay-bar {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.home-content .hc-screen-stat {
  font-size: 10px;
  color: #00f0ff;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.home-content .hc-pulse-dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.home-content .hc-pulse-dot-cyan {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00f0ff;
  box-shadow: 0 0 8px #00f0ff;
}

.home-content .hc-pulse-dot-purple {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 8px #a855f7;
}

.home-content .hc-pulse-dot-orange {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f97316;
  box-shadow: 0 0 8px #f97316;
}

.home-content .hc-pulse-dot-blue {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
}

.home-content .hc-pulse-dot-emerald {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.home-content .hc-pulse-dot-pink {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ec4899;
  box-shadow: 0 0 8px #ec4899;
}

.home-content .hc-pulse-dot-red {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
}

.home-content .hc-pulse-dot-teal {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #14b8a6;
  box-shadow: 0 0 8px #14b8a6;
}

.home-content .hc-laptop-base {
  height: 14px;
  background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
  border-radius: 0 0 14px 14px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.home-content .hc-laptop-notch {
  width: 60px;
  height: 4px;
  background: #0f172a;
  margin: 0 auto;
  border-radius: 0 0 4px 4px;
}

/* AI Robot Interactive Screen Overlay Message on Laptop Screen */
.home-content .hc-laptop-ai-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(10, 15, 30, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 20;
}

.home-content .hc-screen-ai-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4530 0%, var(--hc-primary) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(223, 42, 25, 0.4);
}

.home-content .hc-screen-ai-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
  overflow: hidden;
}

.home-content .hc-screen-ai-body h4 {
  font-size: 12.5px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-content .hc-screen-ai-body p {
  font-size: 11px;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-content .hc-screen-ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff4530 0%, var(--hc-primary) 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(223, 42, 25, 0.35);
}

.home-content .hc-screen-ai-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(223, 42, 25, 0.5);
  color: #ffffff;
}

/* Detail Box in Experience Center */
.home-content .hc-showcase-detail-box {
  margin-top: 18px;
  text-align: center;
  padding: 16px 22px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  width: 100%;
}

.home-content .hc-showcase-detail-box h3 {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px;
}

.home-content .hc-showcase-detail-box p {
  font-size: 13.5px;
  color: #cbd5e1;
  margin: 0 0 12px;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   4. SECTION: Interactive AI Methodology Transformation Journey
   -------------------------------------------------------------------------- */
.home-content .hc-methodology-section {
  background: linear-gradient(180deg, #070c17 0%, #0b1324 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 0 54px;
}

.home-content .hc-meth-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 32px 32px, 64px 64px;
  pointer-events: none;
}

.home-content .hc-meth-orb-1 {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.home-content .hc-meth-orb-2 {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 42, 25, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

/* Professional AI Robo Guidance Bar */
.home-content .hc-meth-ai-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto 28px;
  padding: 12px 22px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(223, 42, 25, 0.35);
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.home-content .hc-meth-ai-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4530 0%, var(--hc-primary) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(223, 42, 25, 0.45);
}

.home-content .hc-meth-ai-halo {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 42, 25, 0.4) 0%, transparent 70%);
  animation: hcAiAvatarGlow 2.5s ease-in-out infinite alternate;
}

.home-content .hc-meth-ai-pulse {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  border: 2px solid #0f172a;
}

.home-content .hc-meth-ai-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}

.home-content .hc-meth-ai-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-content .hc-meth-ai-title {
  font-size: 12px;
  font-weight: 800;
  color: #00f0ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.home-content .hc-meth-ai-step-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(223, 42, 25, 0.2);
  color: #ff6b57;
  border: 1px solid rgba(223, 42, 25, 0.3);
}

.home-content .hc-meth-ai-text {
  font-size: 13.5px;
  color: #cbd5e1;
  margin: 0;
  font-style: italic;
  line-height: 1.4;
  transition: opacity 0.3s ease;
}

/* Single Row 4-Card Methodology Grid with Focus Motion */
.home-content .hc-meth-single-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.home-content .hc-meth-row-card {
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.home-content .hc-meth-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.home-content .hc-focus-chip {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #00f0ff;
  transition: all 0.35s ease;
}

.home-content .hc-focus-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(223, 42, 25, 0.12);
  color: #ff6b57;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.35s ease;
}

.home-content .hc-focus-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px;
}

.home-content .hc-focus-desc {
  font-size: 13px;
  color: #94a3b8;
  margin: 0 0 16px;
  line-height: 1.45;
  flex-grow: 1;
}

.home-content .hc-focus-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #00f0ff;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.3s ease;
}

/* Active Highlight vs Dimmed State */
.home-content .hc-meth-row-card.active {
  opacity: 1;
  filter: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(223, 42, 25, 0.5);
  box-shadow: 0 16px 38px rgba(223, 42, 25, 0.3);
  transform: translateY(-6px);
}

.home-content .hc-meth-row-card.active .hc-focus-chip {
  background: linear-gradient(135deg, #ff4530 0%, var(--hc-primary) 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(223, 42, 25, 0.4);
}

.home-content .hc-meth-row-card.active .hc-focus-icon {
  background: rgba(0, 240, 255, 0.2);
  color: #00f0ff;
}

.home-content .hc-meth-row-card.active .hc-focus-badge {
  background: rgba(0, 240, 255, 0.15);
  border-color: rgba(0, 240, 255, 0.35);
  color: #ffffff;
}

.home-content .hc-meth-row-card.dimmed {
  opacity: 0.45;
  filter: grayscale(0.25);
}

.home-content .hc-meth-row-card.dimmed:hover {
  opacity: 0.85;
  filter: none;
}

/* --------------------------------------------------------------------------
   5. SECTION: World-Class Enterprise AI CTA Experience (10/10 WOW Edition)
   -------------------------------------------------------------------------- */
.home-content .hc-cta-experience-section {
  background: linear-gradient(180deg, #070c17 0%, #030712 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0 20px;
}

.home-content .hc-cta-bg-grid {
  position: absolute;
  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);
  background-size: 36px 36px, 72px 72px;
  pointer-events: none;
}

.home-content .hc-cta-orb-1 {
  position: absolute;
  top: -15%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 42, 25, 0.18) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}

.home-content .hc-cta-orb-2 {
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.14) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}

/* 1. Top Floating AI Console Panel */
.home-content .hc-cta-ai-console {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 40px;
  padding: 12px 22px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(223, 42, 25, 0.35);
  border-radius: 50px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 10;
}

.home-content .hc-cta-ai-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4530 0%, var(--hc-primary) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(223, 42, 25, 0.5);
}

.home-content .hc-cta-ai-halo {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 42, 25, 0.5) 0%, transparent 70%);
  animation: hcAiAvatarGlow 2.5s ease-in-out infinite alternate;
}

.home-content .hc-cta-ai-pulse {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  border: 2px solid #0f172a;
}

.home-content .hc-cta-ai-console-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}

.home-content .hc-cta-ai-console-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-content .hc-cta-ai-name {
  font-size: 12px;
  font-weight: 800;
  color: #00f0ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.home-content .hc-cta-ai-status {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.home-content .hc-dot-pulse {
  color: #10b981;
  animation: hcBadgePulseRing 2s infinite;
}

.home-content .hc-cta-ai-text {
  font-size: 13.5px;
  color: #cbd5e1;
  margin: 0;
  font-style: italic;
  line-height: 1.4;
  transition: opacity 0.3s ease;
}

.home-content .hc-cta-console-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid rgba(0, 240, 255, 0.35);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.home-content .hc-cta-console-btn:hover {
  background: rgba(0, 240, 255, 0.25);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 240, 255, 0.4);
}

/* 2. Main 2-Column Split Layout */
.home-content .hc-cta-main-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 5;
}

/* Left Hero Content Column */
.home-content .hc-cta-content-column {
  display: flex;
  flex-direction: column;
}

.home-content .hc-cta-hero-title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.22;
  color: #ffffff;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}

.home-content .hc-cta-hero-desc {
  font-size: 15px;
  color: #94a3b8;
  margin: 0 0 22px;
  line-height: 1.6;
  max-width: 580px;
}

/* Compact Trust Chips Row */
.home-content .hc-cta-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.home-content .hc-chip-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.home-content .hc-chip-item i {
  color: #00f0ff;
  font-size: 11px;
}

.home-content .hc-chip-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 240, 255, 0.35);
  color: #ffffff;
}

/* Action Group */
.home-content .hc-cta-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.home-content .hc-cta-btn-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-content .hc-cta-hero-btn {
  padding: 15px 30px;
  font-size: 15px;
  border-radius: 12px;
  box-shadow: 0 8px 26px rgba(223, 42, 25, 0.45);
}

.home-content .hc-cta-subnote {
  font-size: 11.5px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.home-content .hc-cta-subnote i {
  color: #00f0ff;
}

.home-content .hc-cta-secondary-link {
  color: #00f0ff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.home-content .hc-cta-secondary-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Action Group with Improved Explore Button */
.home-content .hc-cta-hero-actions-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-content .hc-cta-btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.home-content .hc-cta-explore-btn {
  padding: 14px 24px;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.35);
  color: #00f0ff;
  text-decoration: none;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-content .hc-cta-explore-btn:hover {
  background: rgba(0, 240, 255, 0.18);
  border-color: #00f0ff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 240, 255, 0.3);
}

/* Right Column: Large Holographic AI Sphere + AI Prompt Chat Box Below */
.home-content .hc-cta-visual-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

/* 1. Large Holographic AI Orbit Sphere (310px x 310px) */
.home-content .hc-hologram-large-container {
  position: relative;
  width: 310px;
  height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-content .hc-hologram-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.home-content .ring-1 {
  width: 290px;
  height: 290px;
  border: 1px dashed rgba(0, 240, 255, 0.3);
  animation: hcHoloSpin 22s linear infinite;
}

.home-content .ring-2 {
  width: 220px;
  height: 220px;
  border: 1px solid rgba(223, 42, 25, 0.4);
  animation: hcHoloSpin 16s linear infinite reverse;
}

.home-content .ring-3 {
  width: 160px;
  height: 160px;
  border: 1px dotted rgba(255, 255, 255, 0.25);
  animation: hcHoloSpin 11s linear infinite;
}

.home-content .hc-hologram-core {
  position: relative;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4530 0%, var(--hc-primary) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 0 0 40px rgba(223, 42, 25, 0.65);
  z-index: 5;
}

.home-content .hc-core-glow {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.5) 0%, transparent 70%);
  animation: hcAiAvatarGlow 2.5s ease-in-out infinite alternate;
}

/* 8 Orbiting Platform Tool Nodes */
.home-content .hc-hologram-node {
  position: absolute;
  padding: 5px 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.45);
  color: #00f0ff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: hcHoloNodeFloat 3.2s ease-in-out infinite alternate;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.home-content .hc-hologram-node i {
  color: #ff6b57;
  font-size: 12px;
}

.home-content .hc-hologram-node:hover {
  background: rgba(223, 42, 25, 0.2);
  border-color: #ff4530;
  color: #ffffff;
  transform: scale(1.08);
}

.home-content .node-manxpress {
  top: 0px;
  left: 40px;
  animation-delay: 0s;
}

.home-content .node-warxpress {
  top: 10px;
  right: 10px;
  animation-delay: 0.4s;
}

.home-content .node-aeroxpress {
  top: 80px;
  right: -25px;
  animation-delay: 0.8s;
}

.home-content .node-civilxpress {
  bottom: 80px;
  right: -20px;
  animation-delay: 1.2s;
}

.home-content .node-electroxpress {
  bottom: 5px;
  right: 25px;
  animation-delay: 1.6s;
}

.home-content .node-marinexpress {
  bottom: 0px;
  left: 40px;
  animation-delay: 2.0s;
}

.home-content .node-mobile {
  bottom: 80px;
  left: -25px;
  animation-delay: 2.4s;
}

.home-content .node-genai {
  top: 80px;
  left: -20px;
  animation-delay: 2.8s;
}

@keyframes hcHoloSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes hcHoloNodeFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-6px);
  }
}

/* --------------------------------------------------------------------------
   4. Responsive Breakpoints inside .home-content
   -------------------------------------------------------------------------- */
.home-content .hc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {

  .home-content .hc-about-grid,
  .home-content .hc-services-grid,
  .home-content .hc-cta-split-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-content .hc-meth-single-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-content .hc-about-content {
    padding-left: 0;
  }

  .home-content .hc-services-grid,
  .home-content .hc-works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .home-content .hc-section-pad {
    padding: 64px 0;
  }

  .home-content .hc-services-grid,
  .home-content .hc-works-grid,
  .home-content .hc-about-keypoints,
  .home-content .hc-meth-single-row,
  .home-content .hc-cta-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* Ambient Float & Pulse Animations for Who We Are Images */
@keyframes hcImgFloat1 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-5px);
  }
}

@keyframes hcImgFloat2 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(5px);
  }
}

@keyframes hcBadgePulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(223, 42, 25, 0.45);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(223, 42, 25, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(223, 42, 25, 0);
  }
}

/* ==========================================================================
   DYNAMIC LIGHT & DARK THEME OVERRIDES FOR HOME CONTENT SECTIONS
   ========================================================================== */

/* --------------------------------------------------------------------------
   DARK THEME (When data-theme="dark" OR body has .dark-theme)
   -------------------------------------------------------------------------- */
[data-theme="dark"] .home-content .hc-about-section,
body.dark-theme .home-content .hc-about-section {
  background: #070c17 !important;
  color: #f8fafc !important;
}

[data-theme="dark"] .home-content .hc-about-section .hc-sec-title,
body.dark-theme .home-content .hc-about-section .hc-sec-title {
  color: #ffffff !important;
}

[data-theme="dark"] .home-content .hc-about-section .hc-about-p,
body.dark-theme .home-content .hc-about-section .hc-about-p {
  color: #94a3b8 !important;
}

[data-theme="dark"] .home-content .hc-about-img-box,
body.dark-theme .home-content .hc-about-img-box {
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .home-content .hc-about-kp-card,
body.dark-theme .home-content .hc-about-kp-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

[data-theme="dark"] .home-content .hc-about-kp-card span,
body.dark-theme .home-content .hc-about-kp-card span {
  color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   LIGHT THEME (When data-theme="light" OR body has .light-theme OR body:not(.dark-theme))
   -------------------------------------------------------------------------- */
[data-theme="light"] .home-content .hc-about-section,
body.light-theme .home-content .hc-about-section,
body:not(.dark-theme) .home-content .hc-about-section {
  background: #ffffff !important;
  color: #0f172a !important;
}

[data-theme="light"] .home-content .hc-about-section .hc-sec-title,
body.light-theme .home-content .hc-about-section .hc-sec-title,
body:not(.dark-theme) .home-content .hc-about-section .hc-sec-title {
  color: #000000 !important;
  font-weight: 800 !important;
}

[data-theme="light"] .home-content .hc-about-section .hc-about-p,
body.light-theme .home-content .hc-about-section .hc-about-p,
body:not(.dark-theme) .home-content .hc-about-section .hc-about-p {
  color: #334155 !important;
}

[data-theme="light"] .home-content .hc-about-kp-card,
body.light-theme .home-content .hc-about-kp-card,
body:not(.dark-theme) .home-content .hc-about-kp-card {
  background: #f8fafc !important;
  border: 1px solid #cbd5e1 !important;
  color: #0f172a !important;
}

[data-theme="light"] .home-content .hc-about-kp-card span,
body.light-theme .home-content .hc-about-kp-card span,
body:not(.dark-theme) .home-content .hc-about-kp-card span {
  color: #0f172a !important;
  font-weight: 700 !important;
}

[data-theme="light"] .home-content .hc-experience-center,
[data-theme="light"] .home-content .hc-methodology-section,
[data-theme="light"] .home-content .hc-cta-experience-section,
body.light-theme .home-content .hc-experience-center,
body.light-theme .home-content .hc-methodology-section,
body.light-theme .home-content .hc-cta-experience-section,
body:not(.dark-theme) .home-content .hc-experience-center,
body:not(.dark-theme) .home-content .hc-methodology-section,
body:not(.dark-theme) .home-content .hc-cta-experience-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  color: #0f172a !important;
  border-top: 1px solid #cbd5e1 !important;
}

[data-theme="light"] .home-content .hc-sec-title-light,
[data-theme="light"] .home-content .hc-tab-info h4,
[data-theme="light"] .home-content .hc-focus-title,
[data-theme="light"] .home-content .hc-cta-hero-title,
body.light-theme .home-content .hc-sec-title-light,
body.light-theme .home-content .hc-tab-info h4,
body.light-theme .home-content .hc-focus-title,
body.light-theme .home-content .hc-cta-hero-title,
body:not(.dark-theme) .home-content .hc-sec-title-light,
body:not(.dark-theme) .home-content .hc-tab-info h4,
body:not(.dark-theme) .home-content .hc-focus-title,
body:not(.dark-theme) .home-content .hc-cta-hero-title {
  color: #000000 !important;
  font-weight: 800 !important;
}

[data-theme="light"] .home-content .hc-sec-desc-light,
[data-theme="light"] .home-content .hc-focus-desc,
[data-theme="light"] .home-content .hc-cta-hero-desc,
body.light-theme .home-content .hc-sec-desc-light,
body.light-theme .home-content .hc-focus-desc,
body.light-theme .home-content .hc-cta-hero-desc,
body:not(.dark-theme) .home-content .hc-sec-desc-light,
body:not(.dark-theme) .home-content .hc-focus-desc,
body:not(.dark-theme) .home-content .hc-cta-hero-desc {
  color: #334155 !important;
  font-weight: 500 !important;
}

/* Experience Center Showcase Tabs in Light Theme */
[data-theme="light"] .home-content .hc-showcase-tab:not(.active),
body.light-theme .home-content .hc-showcase-tab:not(.active),
body:not(.dark-theme) .home-content .hc-showcase-tab:not(.active) {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .home-content .hc-showcase-tab:not(.active) .hc-tab-info h4,
body.light-theme .home-content .hc-showcase-tab:not(.active) .hc-tab-info h4,
body:not(.dark-theme) .home-content .hc-showcase-tab:not(.active) .hc-tab-info h4 {
  color: #0f172a !important;
  font-weight: 700 !important;
}

[data-theme="light"] .home-content .hc-showcase-tab:not(.active) .hc-tab-icon,
body.light-theme .home-content .hc-showcase-tab:not(.active) .hc-tab-icon,
body:not(.dark-theme) .home-content .hc-showcase-tab:not(.active) .hc-tab-icon {
  background: #f1f5f9 !important;
  border: 1px solid #cbd5e1 !important;
  color: #0284c7 !important;
}

[data-theme="light"] .home-content .hc-showcase-tab:hover:not(.active),
body.light-theme .home-content .hc-showcase-tab:hover:not(.active),
body:not(.dark-theme) .home-content .hc-showcase-tab:hover:not(.active) {
  background: #ffffff !important;
  border-color: rgba(223, 42, 25, 0.5) !important;
  box-shadow: 0 6px 18px rgba(223, 42, 25, 0.15) !important;
  transform: translateY(-2px) !important;
}

[data-theme="light"] .home-content .hc-showcase-tab:hover:not(.active) .hc-tab-info h4,
body.light-theme .home-content .hc-showcase-tab:hover:not(.active) .hc-tab-info h4,
body:not(.dark-theme) .home-content .hc-showcase-tab:hover:not(.active) .hc-tab-info h4 {
  color: #df2a19 !important;
}

/* ACTIVE HIGHLIGHTED TAB IN ALL THEMES (Light & Dark) */
.home-content .hc-showcase-tab.active,
[data-theme="light"] .home-content .hc-showcase-tab.active,
body.light-theme .home-content .hc-showcase-tab.active,
body:not(.dark-theme) .home-content .hc-showcase-tab.active {
  background: linear-gradient(135deg, #ff4530 0%, #df2a19 100%) !important;
  border-color: #ff4530 !important;
  box-shadow: 0 8px 24px rgba(223, 42, 25, 0.45) !important;
  transform: translateY(-2px) !important;
}

.home-content .hc-showcase-tab.active .hc-tab-info h4,
[data-theme="light"] .home-content .hc-showcase-tab.active .hc-tab-info h4,
body.light-theme .home-content .hc-showcase-tab.active .hc-tab-info h4,
body:not(.dark-theme) .home-content .hc-showcase-tab.active .hc-tab-info h4 {
  color: #ffffff !important;
  font-weight: 800 !important;
}

.home-content .hc-showcase-tab.active .hc-tab-icon,
[data-theme="light"] .home-content .hc-showcase-tab.active .hc-tab-icon,
body.light-theme .home-content .hc-showcase-tab.active .hc-tab-icon,
body:not(.dark-theme) .home-content .hc-showcase-tab.active .hc-tab-icon {
  background: rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
  border-color: transparent !important;
}

.home-content .hc-showcase-tab.active .hc-tab-active-dot,
[data-theme="light"] .home-content .hc-showcase-tab.active .hc-tab-active-dot,
body.light-theme .home-content .hc-showcase-tab.active .hc-tab-active-dot,
body:not(.dark-theme) .home-content .hc-showcase-tab.active .hc-tab-active-dot {
  opacity: 1 !important;
  background: #ffffff !important;
  box-shadow: 0 0 8px #ffffff !important;
}

[data-theme="light"] .home-content .hc-laptop-screen,
body.light-theme .home-content .hc-laptop-screen,
body:not(.dark-theme) .home-content .hc-laptop-screen {
  background: #ffffff !important;
  border-color: #cbd5e1 !important;
}

/* --------------------------------------------------------------------------
   METHODOLOGY CARDS, CHIPS, AND CTA TRUST BADGES HIGH-CONTRAST LIGHT MODE
   -------------------------------------------------------------------------- */
[data-theme="light"] .home-content .hc-meth-row-card,
body.light-theme .home-content .hc-meth-row-card,
body:not(.dark-theme) .home-content .hc-meth-row-card {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05) !important;
  opacity: 1 !important;
  filter: none !important;
}

[data-theme="light"] .home-content .hc-meth-row-card.dimmed,
body.light-theme .home-content .hc-meth-row-card.dimmed,
body:not(.dark-theme) .home-content .hc-meth-row-card.dimmed {
  opacity: 0.95 !important;
  filter: none !important;
  background: #ffffff !important;
  border-color: #cbd5e1 !important;
}

[data-theme="light"] .home-content .hc-focus-title,
body.light-theme .home-content .hc-focus-title,
body:not(.dark-theme) .home-content .hc-focus-title {
  color: #000000 !important;
  font-weight: 800 !important;
}

[data-theme="light"] .home-content .hc-focus-desc,
body.light-theme .home-content .hc-focus-desc,
body:not(.dark-theme) .home-content .hc-focus-desc {
  color: #1e293b !important;
  font-weight: 600 !important;
}

[data-theme="light"] .home-content .hc-focus-chip,
body.light-theme .home-content .hc-focus-chip,
body:not(.dark-theme) .home-content .hc-focus-chip {
  background: #f1f5f9 !important;
  border: 1px solid #cbd5e1 !important;
  color: #0284c7 !important;
  font-weight: 800 !important;
}

[data-theme="light"] .home-content .hc-focus-badge,
body.light-theme .home-content .hc-focus-badge,
body:not(.dark-theme) .home-content .hc-focus-badge {
  background: #f1f5f9 !important;
  border: 1px solid #cbd5e1 !important;
  color: #0284c7 !important;
  font-weight: 700 !important;
}

[data-theme="light"] .home-content .hc-meth-row-card.active .hc-focus-badge,
body.light-theme .home-content .hc-meth-row-card.active .hc-focus-badge,
body:not(.dark-theme) .home-content .hc-meth-row-card.active .hc-focus-badge {
  background: rgba(2, 132, 199, 0.12) !important;
  border-color: rgba(2, 132, 199, 0.3) !important;
  color: #0284c7 !important;
  font-weight: 800 !important;
}

[data-theme="light"] .home-content .hc-meth-ai-bar,
body.light-theme .home-content .hc-meth-ai-bar,
body:not(.dark-theme) .home-content .hc-meth-ai-bar {
  background: #ffffff !important;
  border: 1px solid rgba(223, 42, 25, 0.25) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .home-content .hc-meth-ai-title,
body.light-theme .home-content .hc-meth-ai-title,
body:not(.dark-theme) .home-content .hc-meth-ai-title {
  color: #0284c7 !important;
  font-weight: 800 !important;
}

[data-theme="light"] .home-content .hc-meth-ai-text,
body.light-theme .home-content .hc-meth-ai-text,
body:not(.dark-theme) .home-content .hc-meth-ai-text {
  color: #1e293b !important;
  font-weight: 600 !important;
}

/* CTA Section Trust Chips & Content in Light Theme */
[data-theme="light"] .home-content .hc-chip-item,
body.light-theme .home-content .hc-chip-item,
body:not(.dark-theme) .home-content .hc-chip-item {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #0f172a !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .home-content .hc-chip-item i,
body.light-theme .home-content .hc-chip-item i,
body:not(.dark-theme) .home-content .hc-chip-item i {
  color: #0284c7 !important;
  font-weight: 800 !important;
}

[data-theme="light"] .home-content .hc-cta-hero-title,
body.light-theme .home-content .hc-cta-hero-title,
body:not(.dark-theme) .home-content .hc-cta-hero-title {
  color: #000000 !important;
  font-weight: 900 !important;
}

[data-theme="light"] .home-content .hc-cta-hero-desc,
body.light-theme .home-content .hc-cta-hero-desc,
body:not(.dark-theme) .home-content .hc-cta-hero-desc {
  color: #1e293b !important;
  font-weight: 600 !important;
}

[data-theme="light"] .home-content .hc-cta-subnote,
body.light-theme .home-content .hc-cta-subnote,
body:not(.dark-theme) .home-content .hc-cta-subnote {
  color: #334155 !important;
  font-weight: 600 !important;
}

[data-theme="light"] .home-content .hc-cta-subnote i,
body.light-theme .home-content .hc-cta-subnote i,
body:not(.dark-theme) .home-content .hc-cta-subnote i {
  color: #0284c7 !important;
}

[data-theme="light"] .home-content .hc-hologram-node,
body.light-theme .home-content .hc-hologram-node,
body:not(.dark-theme) .home-content .hc-hologram-node {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #0f172a !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !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;
}

/* ==========================================================================
   HOMEPAGE CONTENT RESPONSIVE MEDIA QUERIES (.home-content & index.html)
   Supports: Large Monitors (1400px+), Laptops (1200px), Tablets (992px & 768px),
   Mobiles (576px & 480px), Extra Small Devices (320px)
   ========================================================================== */

/* ─── 1. Desktop & Large Laptops (max-width: 1200px) ───────────────── */
@media (max-width: 1200px) {
  .home-content .hc-container {
    max-width: 100% !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* ─── 2. Laptops & Landscape Tablets (max-width: 992px) ─────────────────── */
@media (max-width: 992px) {
  .home-content .hc-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .home-content .hc-section-pad {
    padding: 40px 0 !important;
  }

  .home-content .hc-sec-title {
    font-size: 1.8rem !important;
  }

  .home-content .hc-about-grid,
  .home-content .hc-split-grid,
  .home-content .hc-split-row {
    flex-direction: column !important;
    display: flex !important;
    gap: 32px !important;
  }

  .home-content .hc-about-collage,
  .home-content .hc-about-content {
    width: 100% !important;
    max-width: 100% !important;
  }

  .home-content .hc-services-grid,
  .home-content .hc-products-grid,
  .home-content .hc-focus-grid,
  .home-content .hc-grid-3,
  .home-content .hc-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

/* ─── 3. Portrait Tablets & Mobile Large (max-width: 768px) ─────────────── */
@media (max-width: 768px) {
  .home-content .hc-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .home-content .hc-sec-title {
    font-size: 1.5rem !important;
  }

  .home-content .hc-sec-desc {
    font-size: 0.95rem !important;
  }

  .home-content .hc-services-grid,
  .home-content .hc-products-grid,
  .home-content .hc-focus-grid,
  .home-content .hc-testimonials-grid,
  .home-content .hc-grid-2,
  .home-content .hc-grid-3,
  .home-content .hc-grid-4 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .home-content .hc-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .home-content .hc-about-collage {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .home-content .hc-cta-box {
    padding: 32px 20px !important;
    text-align: center !important;
  }

  .home-content .hc-cta-buttons {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .home-content .hc-cta-buttons .hc-btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

/* ─── 4. Small Mobile Devices (max-width: 480px) ────────────────────────── */
@media (max-width: 480px) {
  .home-content .hc-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .home-content .hc-sec-title {
    font-size: 1.35rem !important;
  }

  .home-content .hc-stats-grid {
    grid-template-columns: 1fr !important;
  }

  .home-content .hc-about-collage {
    grid-template-columns: 1fr !important;
  }

  .home-content .hc-card {
    padding: 18px 14px !important;
  }
}

/* ─── 5. Ultra Small Devices (max-width: 360px) ─────────────────────────── */
@media (max-width: 360px) {
  .home-content .hc-container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .home-content .hc-sec-title {
    font-size: 1.25rem !important;
  }
}