/* ========================================
   CORPORATE MINIMALIST - DESIGN SYSTEM
   ======================================== */
:root {
  /* Colors - Minimalist Professional */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fc;
  --bg-dark: #1a1f2c;

  --primary: #0066cc;
  --primary-hover: #0052a3;
  --accent: #ff9900;

  --text-heading: #1a1f2c;
  --text-body: #4a5568;
  --text-light: #718096;
  --text-white: #ffffff;

  --border: #e2e8f0;

  /* Typography */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing & Radius */
  --container-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition: all 0.3s ease;
}

/* ========================================
   RESET & BASE
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-body);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  color: var(--text-heading);
  letter-spacing: -0.02em;
  font-weight: 700;
}

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: rgba(0, 102, 204, 0.05);
  transform: translateY(-1px);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 50%;
  height: auto;
  object-fit: contain;

}

.textlogo {
  width: 37%;
  height: auto;
  object-fit: contain;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-heading);
}

.nav-menu {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-body);
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-heading);
  cursor: pointer;
}

/* ========================================
   HERO SLIDESHOW — CINEMATIC
   ======================================== */
.hero-slideshow {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0d1117;
}

/* ---- SLIDE TRACK ---- */
.hs-track {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-areas: "stack";
}

/* ---- INDIVIDUAL SLIDE ---- */
.hs-slide {
  grid-area: stack;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s;
  overflow: hidden;
}

.hs-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  position: relative;
}

/* Per-slide gradient backgrounds */
.hs-slide[data-theme="blue"] {
  background: linear-gradient(135deg, #060d1f 0%, #0a1a3a 50%, #071528 100%);
}

.hs-slide[data-theme="amber"] {
  background: linear-gradient(135deg, #1a0f00 0%, #2a1800 50%, #1a0c00 100%);
}

.hs-slide[data-theme="teal"] {
  background: linear-gradient(135deg, #001a16 0%, #00251e 50%, #001814 100%);
}

/* ---- FLOATING ORBS ---- */
.hs-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.18;
}

[data-theme="blue"] .hs-orb-1 {
  width: 420px;
  height: 420px;
  background: #0066cc;
  top: -80px;
  right: -80px;
  animation: orbDrift1 10s ease-in-out infinite;
}

[data-theme="blue"] .hs-orb-2 {
  width: 280px;
  height: 280px;
  background: #00aaff;
  bottom: 60px;
  left: 20%;
  animation: orbDrift2 13s ease-in-out infinite;
}

[data-theme="blue"] .hs-orb-3 {
  width: 180px;
  height: 180px;
  background: #ffffff;
  top: 40%;
  left: 5%;
  opacity: 0.05;
  animation: orbDrift3 8s ease-in-out infinite;
}

[data-theme="amber"] .hs-orb-1 {
  width: 420px;
  height: 420px;
  background: #ff9900;
  top: -100px;
  right: -60px;
  animation: orbDrift1 10s ease-in-out infinite;
}

[data-theme="amber"] .hs-orb-2 {
  width: 280px;
  height: 280px;
  background: #ffcc00;
  bottom: 60px;
  left: 15%;
  animation: orbDrift2 13s ease-in-out infinite;
}

[data-theme="amber"] .hs-orb-3 {
  width: 200px;
  height: 200px;
  background: #ff6600;
  top: 30%;
  left: 45%;
  opacity: 0.1;
  animation: orbDrift3 8s ease-in-out infinite;
}

[data-theme="teal"] .hs-orb-1 {
  width: 420px;
  height: 420px;
  background: #00bfa5;
  top: -80px;
  right: -80px;
  animation: orbDrift1 10s ease-in-out infinite;
}

[data-theme="teal"] .hs-orb-2 {
  width: 280px;
  height: 280px;
  background: #00e5cc;
  bottom: 60px;
  left: 20%;
  animation: orbDrift2 13s ease-in-out infinite;
}

[data-theme="teal"] .hs-orb-3 {
  width: 180px;
  height: 180px;
  background: #00ff88;
  top: 40%;
  left: 5%;
  opacity: 0.08;
  animation: orbDrift3 8s ease-in-out infinite;
}

@keyframes orbDrift1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-30px, 40px) scale(1.05);
  }

  66% {
    transform: translate(20px, -20px) scale(0.95);
  }
}

@keyframes orbDrift2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(40px, -30px);
  }
}

@keyframes orbDrift3 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-20px, 30px);
  }
}

/* ---- FLASH RING ---- */
.hs-ring {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  animation: ringPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.hs-ring::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: ringPulse 4s ease-in-out infinite 0.5s;
}

.hs-ring::after {
  content: '';
  position: absolute;
  inset: 70px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: ringPulse 4s ease-in-out infinite 1s;
}

@keyframes ringPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: translateY(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.03);
  }
}

/* ---- SLIDE CONTENT ---- */
.hs-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- TEXT SIDE ---- */
.hs-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(6px);
}

.hs-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.08;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

/* Per-slide glow color for highlighted word */
[data-theme="blue"] .hs-glow-word {
  color: #4db8ff;
  text-shadow: 0 0 40px rgba(0, 170, 255, 0.6), 0 0 80px rgba(0, 130, 255, 0.3);
}

[data-theme="amber"] .hs-glow-word {
  color: #ffcc44;
  text-shadow: 0 0 40px rgba(255, 200, 0, 0.6), 0 0 80px rgba(255, 150, 0, 0.3);
}

[data-theme="teal"] .hs-glow-word {
  color: #00e5cc;
  text-shadow: 0 0 40px rgba(0, 229, 204, 0.6), 0 0 80px rgba(0, 180, 160, 0.3);
}

/* Flash animation on active slide */
.hs-slide.active .hs-glow-word {
  animation: glowFlash 3s ease-in-out infinite;
}

[data-theme="blue"].hs-slide.active .hs-glow-word {
  animation-name: glowFlashBlue;
}

[data-theme="amber"].hs-slide.active .hs-glow-word {
  animation-name: glowFlashAmber;
}

[data-theme="teal"].hs-slide.active .hs-glow-word {
  animation-name: glowFlashTeal;
}

@keyframes glowFlashBlue {

  0%,
  100% {
    text-shadow: 0 0 30px rgba(0, 170, 255, 0.5), 0 0 70px rgba(0, 130, 255, 0.2);
  }

  50% {
    text-shadow: 0 0 60px rgba(0, 200, 255, 0.9), 0 0 120px rgba(0, 170, 255, 0.5), 0 0 200px rgba(0, 130, 255, 0.2);
  }
}

@keyframes glowFlashAmber {

  0%,
  100% {
    text-shadow: 0 0 30px rgba(255, 200, 0, 0.5), 0 0 70px rgba(255, 150, 0, 0.2);
  }

  50% {
    text-shadow: 0 0 60px rgba(255, 220, 0, 0.9), 0 0 120px rgba(255, 200, 0, 0.5), 0 0 200px rgba(255, 150, 0, 0.2);
  }
}

@keyframes glowFlashTeal {

  0%,
  100% {
    text-shadow: 0 0 30px rgba(0, 229, 204, 0.5), 0 0 70px rgba(0, 180, 160, 0.2);
  }

  50% {
    text-shadow: 0 0 60px rgba(0, 255, 220, 0.9), 0 0 120px rgba(0, 229, 204, 0.5), 0 0 200px rgba(0, 180, 160, 0.2);
  }
}

.hs-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* ---- Slide enter animations ---- */
.hs-slide .hs-text {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
    opacity 0.7s ease 0.15s;
}

.hs-slide .hs-visual {
  transform: translateX(30px) scale(0.93);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s,
    opacity 0.9s ease 0.25s;
}

.hs-slide.active .hs-text {
  transform: translateY(0);
  opacity: 1;
}

.hs-slide.active .hs-visual {
  transform: translateX(0) scale(1);
  opacity: 1;
}

/* ---- BUTTONS ---- */
.hs-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hs-btn-primary {
  background: #0066cc;
  color: #fff;
  padding: 0.8rem 1.8rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 0 25px rgba(0, 102, 204, 0.4);
  transition: all 0.25s;
}

[data-theme="amber"] .hs-btn-primary {
  background: #ff9900;
  box-shadow: 0 0 25px rgba(255, 153, 0, 0.4);
}

[data-theme="teal"] .hs-btn-primary {
  background: #00bfa5;
  box-shadow: 0 0 25px rgba(0, 191, 165, 0.4);
}

.hs-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 102, 204, 0.7);
}

.hs-btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  transition: all 0.25s;
}

.hs-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* ---- ILLUSTRATION ---- */
.hs-illustration {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
  animation: float 7s ease-in-out infinite;
}

.hs-illustration svg {
  width: 100%;
  height: auto;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

/* SVG element animations */
.svg-pulse-1 {
  animation: svgPulse 2.5s ease-in-out infinite;
}

.svg-pulse-2 {
  animation: svgPulse 2.5s ease-in-out infinite 0.6s;
}

@keyframes svgPulse {

  0%,
  100% {
    r: 90;
    opacity: 0.3;
  }

  50% {
    r: 100;
    opacity: 0.5;
  }
}

.svg-blink {
  animation: blink 1.8s step-end infinite;
}

.svg-blink-2 {
  animation: blink 1.8s step-end infinite 0.6s;
}

.svg-blink-3 {
  animation: blink 2.4s step-end infinite 1.2s;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.svg-orbit {
  animation: orbit 4s linear infinite;
  transform-origin: 150px 150px;
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(90px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(90px) rotate(-360deg);
  }
}

.svg-orbit-2 {
  animation: orbit2 5s linear infinite;
  transform-origin: 150px 150px;
}

@keyframes orbit2 {
  from {
    transform: rotate(0deg) translateX(110px) rotate(0deg);
  }

  to {
    transform: rotate(-360deg) translateX(110px) rotate(360deg);
  }
}

.svg-orbit-3 {
  animation: orbit3 6s linear infinite;
  transform-origin: 148px 145px;
}

@keyframes orbit3 {
  from {
    transform: rotate(0deg) translateX(100px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(100px) rotate(-360deg);
  }
}

.svg-scan {
  animation: scanMove 2s ease-in-out infinite alternate;
}

@keyframes scanMove {
  from {
    transform: translateY(-40px);
    opacity: 0.2;
  }

  to {
    transform: translateY(40px);
    opacity: 0.7;
  }
}

.svg-spin-slow {
  animation: spinSlow 8s linear infinite;
  transform-origin: 148px 145px;
}

.svg-spin-rev {
  animation: spinSlow 5s linear infinite reverse;
  transform-origin: 210px 100px;
}

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

  to {
    transform: rotate(360deg);
  }
}

/* ---- NAVIGATION ---- */
.hs-nav {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 20;
}

.hs-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  backdrop-filter: blur(6px);
}

.hs-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.hs-dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.hs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.hs-dot.active {
  width: 28px;
  border-radius: 4px;
  background: #fff;
}

/* ---- SLIDE PROGRESS BAR ---- */
.hs-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 20;
}

.hs-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0066cc, #00aaff);
  transition: width 0.1s linear;
  width: 0%;
}

/* ---- SCROLL HINT ---- */
.hs-scroll-hint {
  position: absolute;
  bottom: 3.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 20;
  opacity: 0.4;
}

.hs-scroll-hint span {
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hs-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, #fff 0%, transparent 100%);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ---- BENTO EXTRAS (below hero) ---- */
.bento-extras {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.bento-extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  border-top: 1px solid var(--border);
}

.bento-extras-grid .bento-card {
  border-radius: 0;
  border: none;
  border-right: 1px solid var(--border);
  padding: 2rem 2.5rem;
  min-height: 140px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Override the global lift hover so the strip stays flat */
  transform: none !important;
  box-shadow: none !important;
}

.bento-extras-grid .bento-card:hover {
  background: #f8f9fc;
  border-right-color: var(--border);
  transform: none !important;
  box-shadow: none !important;
}

.bento-extras-grid .bento-card:last-child {
  border-right: none;
}

.bento-extras-grid .bento-stat {
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 0.4rem;
}

.bento-extras-grid .bento-stat:hover {
  background: var(--bg-dark) !important;
}

.bento-extras-grid .bento-stat .stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.bento-extras-grid .bento-stat .stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.bento-extras-grid .stat-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}


/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hs-content {
    grid-template-columns: 1fr 340px;
  }

  .hs-title {
    font-size: 3rem;
  }

  .hs-ring {
    width: 360px;
    height: 360px;
  }
}

@media (max-width: 768px) {
  .hero-slideshow {
    min-height: 100svh;
  }

  .hs-slide {
    padding: 6rem 0 7rem;
  }

  .hs-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 1.5rem;
    gap: 2.5rem;
  }

  .hs-title {
    font-size: 2.3rem;
  }

  .hs-desc {
    font-size: 0.95rem;
    max-width: 100%;
    margin: 0 auto 1.75rem;
  }

  .hs-actions {
    justify-content: center;
  }

  .hs-visual {
    order: -1;
  }

  .hs-illustration {
    max-width: 220px;
  }

  .hs-ring {
    display: none;
  }

  .hs-scroll-hint {
    display: none;
  }

  .bento-extras-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-extras-grid .bento-stat {
    grid-column: 1 / 3;
    flex-direction: row;
    justify-content: space-around;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 480px) {
  .hs-title {
    font-size: 1.9rem;
  }

  .hs-eyebrow {
    font-size: 0.75rem;
  }

  .hs-illustration {
    max-width: 180px;
  }

  .bento-extras-grid {
    grid-template-columns: 1fr;
  }

  .bento-extras-grid .bento-stat {
    grid-column: 1;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .hs-btn-primary,
  .hs-btn-ghost {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }
}


.bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 200px;
  gap: 1.5rem;
}

/* Specific Grid Areas */
.bento-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  /* Spans full height */
}

.bento-feature-1 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.bento-feature-2 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.bento-stat {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
}

/* Card Styling */
.bento-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 204, 0.3);
}

/* Main Card Content (Slideshow Grid Stacking) */
.bento-main {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  /* Changed from grid to flex to hold the slides-container properly */
  flex-direction: column;
}

.slides-container {
  width: 100%;
  position: relative;
  display: grid;
  /* Enable Grid */
  grid-template-areas: "stack";
  /* visual name for the area */
}

.slide {
  grid-area: stack;
  /* Stack all slides on top of each other */
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  padding: 3rem;
  /* Ensure acts as a container */
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  position: relative;
  /* Keep relative so it dictates height if needed, though grid handles it */
}

/* Animations for slide content */
.slide .bento-content {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s ease-out 0.2s, opacity 0.6s ease-out 0.2s;
}

.slide.active .bento-content {
  transform: translateY(0);
  opacity: 1;
}

.slide .bento-image-main {
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.8s ease-out 0.2s, opacity 0.8s ease-out 0.2s;
}

.slide.active .bento-image-main {
  transform: scale(1);
  opacity: 1;
}


/* Controls */
.slide-prev,
.slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  color: var(--primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  opacity: 0;
}

.bento-main:hover .slide-prev,
.bento-main:hover .slide-next {
  opacity: 1;
}

.slide-prev:hover,
.slide-next:hover {
  background: var(--primary);
  color: #fff;
}

.slide-prev {
  left: 1rem;
}

.slide-next {
  right: 1rem;
}

/* Dots */
.slide-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

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

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.badge-pill {
  display: inline-block;
  background: rgba(0, 102, 204, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.bento-main h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.text-highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 102, 204, 0.1);
  z-index: -1;
}

.bento-main p {
  color: var(--text-body);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 90%;
}

.bento-actions {
  display: flex;
  gap: 1rem;
}

.bento-image-main svg {
  width: 100%;
  height: auto;
  max-width: 250px;
  filter: drop-shadow(0 20px 40px rgba(0, 102, 204, 0.15));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Feature Cards */
.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 102, 204, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.link-arrow {
  color: var(--primary);
  font-weight: 600;
  margin-top: auto;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.link-arrow:hover {
  gap: 0.5rem;
}

/* Stat Card */
.bento-stat {
  background: var(--bg-dark);
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  /* or White */
  line-height: 1;
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.9;
}

.client-avatars {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -10px;
}

.plus-more {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border: 2px solid var(--bg-dark);
  margin-left: -10px;
}

/* Responsive Bento */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .bento-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .bento-feature-1 {
    grid-column: 1 / 2;
    grid-row: 2;
    height: 250px;
  }

  .bento-feature-2 {
    grid-column: 2 / 3;
    grid-row: 2;
    height: 250px;
  }

  .bento-stat {
    grid-column: 1 / 3;
    grid-row: 3;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .bento-main {
    min-height: 500px;
    /* Ensure height for absolute slides */
    padding: 0;
  }

  .slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 2rem;
  }

  .bento-image-main {
    display: block;
    /* Show image in slideshow */
    margin-top: 2rem;
    height: 150px;
    /* Constrain height */
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .bento-image-main svg {
    max-height: 100%;
    width: auto;
  }

  /* Hide decoration on mobile for cleaner look */
  .bento-main h1 {
    font-size: 2.2rem;
  }

  .bento-actions {
    justify-content: center;
  }

  .bento-stat {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 1rem;
  }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

/* Two-column grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ---- LEFT SIDE ---- */
.about-eyebrow {
  display: inline-block;
  background: rgba(0, 102, 204, 0.08);
  color: var(--primary);
  border: 1px solid rgba(0, 102, 204, 0.18);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.about-heading {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 1.1rem;
}

.about-accent {
  color: var(--primary);
}

.about-desc {
  color: var(--text-body);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 95%;
}

/* Feature cards: icon + text rows */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.about-feature:hover {
  border-color: rgba(0, 102, 204, 0.25);
  box-shadow: 0 4px 16px rgba(0, 102, 204, 0.08);
}

.af-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.about-feature strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.15rem;
}

.about-feature p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

/* ---- RIGHT SIDE ---- */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.about-logo-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s;
}

.about-logo-card:hover {
  box-shadow: 0 16px 48px rgba(0, 102, 204, 0.12);
}

.about-logo-card img {
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
}

/* Stats strip */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  background: var(--bg-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.about-stat:last-child {
  border-right: none;
}

.as-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.as-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-right {
    order: -1;
    /* logo goes above text on tablet/mobile */
  }

  .about-logo-card {
    max-width: 320px;
    padding: 2rem;
    margin: 0 auto;
  }

  .about-heading {
    font-size: 1.9rem;
  }
}

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

  .about-heading {
    font-size: 1.65rem;
  }

  .about-logo-card {
    max-width: 240px;
    padding: 1.5rem;
  }

  .as-num {
    font-size: 1.35rem;
  }
}


/* ========================================
   VISION & MISSION SECTION
   ======================================== */
.vision-mission {
  padding: 6rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.vision-mission .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.vision-mission .section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 1.2rem;
}

.vision-mission .section-header p {
  font-size: 1.1rem;
  color: var(--text-body);
  font-style: italic;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

.vm-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.vm-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.vm-card:hover {
  border-color: rgba(0, 102, 204, 0.25);
  box-shadow: 0 8px 28px rgba(0, 102, 204, 0.10);
  transform: translateY(-4px);
}

.vm-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.vm-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .vm-cards {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .vision-mission .section-header h2 {
    font-size: 1.9rem;
  }
}

/* ========================================
   BRAND SLIDER
   ======================================== */
.brand-slider {
  overflow: hidden;
  background: white;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.slider-track {
  display: flex;
  width: calc(200px * 14);
  /* 200px per item * 14 items */
  animation: scroll 30s linear infinite;
}

.brand-slide {
  width: 200px;
  height: 100px;
  /* Increased height for images */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 0 1rem;
  /* Add padding to prevent touching */
}

/* Ensure images fit nicely */
.brand-slide img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  /* Optional: Make them grayscale to match theme */
  transition: var(--transition);
}

.brand-slide:hover {
  opacity: 1;
  transform: scale(1.1);
}

.brand-slide:hover img {
  filter: grayscale(0%);
  /* Color on hover */
}

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

  100% {
    transform: translateX(calc(-200px * 7));
  }

  /* Move by half the width (one set) */
}

/* ========================================
   VISION & MISSION SECTION
   ======================================== */
.vision-mission {
  padding: 6rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.vm-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.vm-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.vm-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.vm-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.vm-icon i {
  font-size: 1.4rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.vm-card:hover .vm-icon {
  background: var(--primary);
  box-shadow: 0 0 18px rgba(0, 102, 204, 0.35);
}

.vm-card:hover .vm-icon i {
  color: #fff;
}

.vm-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-heading);
}

.vm-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  padding: 6rem 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

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

.service-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: left;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ----------------------------------------
   SPECIALIZATION BLOCKS
   ---------------------------------------- */
.specialization-block {
  margin-bottom: 3.5rem;
}

.specialization-block:last-child {
  margin-bottom: 0;
}

.spec-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary);
}

.spec-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 102, 204, 0.3);
}

.spec-icon-wrap i {
  font-size: 1.4rem;
  color: #fff;
}

.spec-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* Favicon icon box on each service card */
.service-icon-fa {
  width: 46px;
  height: 46px;
  background: rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.service-icon-fa i {
  font-size: 1.2rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.service-card:hover .service-icon-fa {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.08);
}

.service-card:hover .service-icon-fa i {
  color: #fff;
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-heading);
  line-height: 1.4;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits {
  padding: 5rem 0;
  background: #1a1f2c;
  border-top: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 102, 204, 0.5);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 102, 204, 0.15);
  border: 1px solid rgba(0, 102, 204, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.benefit-icon i {
  font-size: 1.5rem;
  color: #4da6ff;
}

.benefit-card:hover .benefit-icon {
  background: rgba(0, 102, 204, 0.3);
  box-shadow: 0 0 20px rgba(0, 102, 204, 0.4);
}

.benefit-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #ffffff;
}

.benefit-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}


/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products {
  padding: 6rem 0;
  background: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: #cbd5e0;
}

.product-image {
  background: #f8f9fa;
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-image img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: var(--transition);
}

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

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-dark);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.specs {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}







.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 2rem;
  color: var(--text-body);
  max-width: 500px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-list li {
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 102, 204, 0.15);
  border-radius: var(--radius-md);
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.05);
  /* Soft base glow */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-list li:hover {
  transform: translateX(10px);
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.25);
  /* Stronger glow on hover */
}

/* Glowing Checkmark */
.about-list li::before {
  content: "✓";
  font-weight: bold;
  color: var(--primary);
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(0, 102, 204, 0.6);
  /* Text glow */
}

/* Remove old checkmark text content handling if it was in HTML, 
   but HTML has "✓" text. We should probably hide the text "✓" and use the pseudo-element 
   OR just style the first character if possible. 
   Actually, the HTML structure is: <li>✓ <strong>... 
   So I can wraps the checkmark in a span in HTML or just target the list item text.
   
   Better Layout Strategy:
   The HTML is: <li>✓ <strong>Heading:</strong> Text</li>
   I will stick to the current HTML and just style the list item generally.
*/

/* Correction: Since HTML has text content "✓", I won't use ::before content="✓". 
   I will just add a glow to the whole item and maybe specific text styling if I can target it.
   But I can't target "✓" easily without a span. 
   
   Let's just make the whole card look great.
*/

.about-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Logo Showcase in About Section */
.logo-showcase {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  height: 100%;
}

.logo-showcase img {
  max-width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Bouncy transition */
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.logo-showcase:hover img {
  transform: scale(1.15) rotate(2deg);
  /* Pop up and slight tilt */
  filter: drop-shadow(0 10px 20px rgba(0, 102, 204, 0.4));
  /* Blue glow */
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  padding: 6rem 0;
  background: #fff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  color: var(--primary);
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.info-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.map-container {
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-form {
  height: fit-content;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Social Feed */
.social-feed-wrapper {
  margin-top: 4rem;
  text-align: center;
}

.facebook-feed-container {
  display: inline-block;
  background: #fff;
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  max-width: 100%;
  overflow: hidden;
}

.facebook-feed-container iframe {
  max-width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-family: var(--font-main);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 4rem 0 2rem;
  background: var(--bg-dark);
  color: #fff;
}

.footerlogo {
  width: 70%;
  height: auto;
  object-fit: contain;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-section a {
  color: #a0aec0;
}

.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.quicklink {
  padding-left: 25px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
}

.footer-bottom {
  text-align: center;
  color: #718096;
  font-size: 0.85rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .hero-bento {
    padding: 6rem 0 3rem;
    min-height: auto;
  }

  /* Mobile Navigation Overlay */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
    display: flex;
  }

  .menu-toggle {
    display: block;
    z-index: 1000;
  }

  .slide-content h1,
  .bento-main h1 {
    font-size: 2.2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-container {
    height: 300px;
  }


  /* About section — handled by its own responsive block above */

}

@media (max-width: 768px) {
  .bento-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .bento-main {
    /* Ensure slideshow stacking works */
    padding: 0 !important;
    /* Force override */
    min-height: auto;
    /* Let content dictate height via grid stacking */
    display: flex;
    flex-direction: column;
  }

  .slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1.5rem;
    /* Consistent padding */
  }

  .bento-main h1 {
    font-size: 2rem;
  }

  .bento-image-main {
    display: flex !important;
    /* Force show */
    width: 100%;
    height: auto;
    max-height: 200px;
    justify-content: center;
    margin-top: 1.5rem;
  }

  .bento-image-main svg {
    max-height: 100%;
    width: auto;
  }

  .bento-actions {
    justify-content: center;
  }

  .bento-stat {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 1rem;
    height: auto;
  }

  .container {
    padding: 0 1.5rem;
  }
}

/* ========================================
   PRODUCTS SECTION — ICON CARDS
   ======================================== */
.products {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Icon wrapper replaces the old image */
.product-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--icon-color) 12%, #fff),
      color-mix(in srgb, var(--icon-color) 6%, #fff));
  border-bottom: 1px solid color-mix(in srgb, var(--icon-color) 20%, transparent);
  transition: background 0.3s ease;
}

.product-card:hover .product-icon-wrap {
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--icon-color) 22%, #fff),
      color-mix(in srgb, var(--icon-color) 10%, #fff));
}

.product-fa-icon {
  font-size: 4.5rem;
  color: var(--icon-color);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  filter: drop-shadow(0 4px 16px color-mix(in srgb, var(--icon-color) 40%, transparent));
}

.product-card:hover .product-fa-icon {
  transform: scale(1.15);
}

/* Badge overlay */
.product-icon-wrap .badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--icon-color);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.65rem;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Product info */
.product-info {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--text-heading);
}

.product-info .specs {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-footer .price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Responsive: 2 columns on tablet, 1 on mobile */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .product-icon-wrap {
    height: 150px;
  }

  .product-fa-icon {
    font-size: 3.5rem;
  }
}

/* ========================================
   CHATBOT WIDGET
   ======================================== */

/* Container (fixed, bottom-right) */
#chatbot-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  font-family: var(--font-main);
}

/* ---- Toggle Button ---- */
#chatbot-toggle {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066cc 0%, #0044aa 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 102, 204, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

#chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0, 102, 204, 0.7);
}

#chatbot-toggle i {
  color: #fff;
  font-size: 1.5rem;
  position: absolute;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#chatbot-icon-close {
  opacity: 0;
  transform: rotate(-90deg);
}

#chatbot-widget.open #chatbot-icon-open {
  opacity: 0;
  transform: rotate(90deg);
}

#chatbot-widget.open #chatbot-icon-close {
  opacity: 1;
  transform: rotate(0deg);
}

/* Notification badge */
#chatbot-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 20px;
  height: 20px;
  background: #e63946;
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  animation: badgePulse 2s ease-in-out infinite;
}

#chatbot-badge.hidden {
  display: none;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

/* ---- Chat Window ---- */
#chatbot-window {
  position: absolute;
  bottom: calc(60px + 16px);
  /* above the toggle button */
  right: 0;
  width: 360px;
  height: 520px;
  max-height: calc(100vh - 120px);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 4px 16px rgba(0, 102, 204, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#chatbot-widget.open #chatbot-window {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* ---- Header ---- */
#chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: linear-gradient(135deg, #0b1e3d 0%, #0f2d5a 100%);
  flex-shrink: 0;
}

#chatbot-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

#chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066cc 0%, #0044aa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#chatbot-avatar i {
  color: #fff;
  font-size: 1.1rem;
}

#chatbot-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.3;
}

#chatbot-status {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.chatbot-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #00e676;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

#chatbot-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-size: 0.9rem;
}

#chatbot-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ---- Messages Area ---- */
#chatbot-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 18px 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 102, 204, 0.2) transparent;
}

#chatbot-messages::-webkit-scrollbar {
  width: 4px;
}

#chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 102, 204, 0.25);
  border-radius: 4px;
}

/* Message bubbles */
.cb-msg {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 88%;
  animation: msgIn 0.3s ease;
}

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

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

.cb-msg.bot {
  align-self: flex-start;
}

.cb-msg.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.cb-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066cc, #0044aa);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cb-msg-avatar i {
  color: #fff;
  font-size: 0.75rem;
}

.cb-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.55;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.cb-msg.bot .cb-bubble {
  background: #f0f4f9;
  color: #1a1f2c;
  border-bottom-left-radius: 4px;
}

.cb-msg.user .cb-bubble {
  background: linear-gradient(135deg, #0066cc 0%, #0044aa 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
}

/* Typing indicator */
.cb-typing .cb-bubble {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
}

.cb-dot {
  width: 7px;
  height: 7px;
  background: #a0aec0;
  border-radius: 50%;
  animation: typingBounce 1.2s ease-in-out infinite;
}

.cb-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.cb-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {

  0%,
  60%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-6px);
  }
}

/* ---- Quick Reply Chips ---- */
#chatbot-chips {
  padding: 8px 14px 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex-shrink: 0;
  border-top: 1px solid #f0f4f9;
}

.chatbot-chip {
  background: transparent;
  border: 1.5px solid #0066cc;
  color: #0066cc;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-main);
}

.chatbot-chip:hover {
  background: #0066cc;
  color: #fff;
}

/* ---- Input Row ---- */
#chatbot-input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 14px;
  background: #fff;
  flex-shrink: 0;
  border-top: 1px solid #f0f4f9;
}

#chatbot-input {
  flex: 1;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 9px 16px;
  font-size: 0.875rem;
  font-family: var(--font-main);
  color: #1a1f2c;
  outline: none;
  transition: border-color 0.2s;
  background: #f8f9fc;
}

#chatbot-input:focus {
  border-color: #0066cc;
  background: #fff;
}

#chatbot-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066cc 0%, #0044aa 100%);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.4);
}

#chatbot-send:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(0, 102, 204, 0.6);
}

/* ---- Mobile ---- */
@media (max-width: 480px) {
  #chatbot-widget {
    bottom: 16px;
    right: 16px;
  }

  #chatbot-window {
    width: calc(100vw - 32px);
    max-height: 70vh;
    border-radius: 14px;
    right: 0;
    bottom: calc(54px + 14px);
    /* smaller button on mobile */
  }

  #chatbot-toggle {
    width: 54px;
    height: 54px;
  }
}