* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --primary-light: #fcd34d;
  --secondary: #8b5cf6;
  --success: #10b981;
  --info: #3b82f6;
  --dark: #0f172a;
  --dark-lighter: #1a2639;
  --light: #f8f9fb;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --accent-teal: #06b6d4;
  --accent-blue: #3b82f6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

/* ========== HEADER ========== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  backdrop-filter: blur(20px);
  color: var(--dark);
  padding: 8px 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background: white;
  padding: 6px 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-img {
  height: 50px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
  margin-top: 2px;
  margin-left: 4rem !important;
  letter-spacing: 0.5px;
}

.logo-box {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 18px;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  animation: logoFloat 4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.logo-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transform: rotate(45deg);
  animation: logoShine 3s infinite;
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes logoShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* ========== ICON FIXES ========== */
.stat-icon-wrapper i,
.trust-icon i,
.logo-icon-bg i,
.btn i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  display: block !important;
  text-align: center !important;
  line-height: 1 !important;
}

.stat-icon-wrapper i {
  font-size: 24px !important;
  color: var(--primary) !important;
  transition: all 0.3s ease !important;
}

.trust-icon i {
  font-size: 20px !important;
  color: var(--primary) !important;
}

.logo-icon-bg i {
  font-size: 20px !important;
  color: var(--primary) !important;
  transition: all 0.3s ease !important;
}

.btn {
  font-size: 14px !important;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.btn i {
  font-size: 14px !important;
  margin-right: 8px !important;
}

.btn-lg {
  padding: 8px 32px !important;
  font-size: 14px !important;
}

/* Fallback for icons */
.fas::before {
  display: inline-block !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
}

/* ========== RESPONSIVE SPACE OPTIMIZATION ========== */
@media (max-width: 992px) {
  .hero {
    min-height: 40vh !important;
  }

  .hero-title {
    font-size: 36px !important;
    margin-bottom: 12px !important;
  }

  .hero-subtitle {
    font-size: 14px !important;
    margin-bottom: 18px !important;
    max-width: 500px !important;
  }

  .hero-stats {
    max-width: 89% !important;
    /* margin: 20px auto !important; */
  }

  .hero-stats .stat-item {
    flex-direction: row !important;
    text-align: left !important;
    gap: 10px !important;
    padding: 10px !important;
  }

  .hero-stats .stat-icon-wrapper {
    width: 35px !important;
    height: 35px !important;
  }

  .hero-stats .stat-number {
    font-size: 20px !important;
  }

  .hero-stats .stat-label {
    font-size: 10px !important;
  }

  .section {
    padding: 40px 0 !important;
  }

  .section h2 {
    font-size: 26px !important;
    margin-bottom: 8px !important;
  }

  .section p.lead {
    font-size: 13px !important;
    margin-bottom: 30px !important;
  }

  /* Focus Cards Responsive */
  .focus-cards-grid {
    /* grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px; */
    display: flex !important;
    flex-direction: column;
    justify-content: center;
  }

  .focus-card {
    padding: 25px 18px;
  }

  .card-icon-wrapper {
    width: 65px;
    height: 65px;
    margin-bottom: 16px;
  }

  .card-icon {
    font-size: 26px;
  }

  .card-content h3 {
    font-size: 18px;
  }

  .card-content p {
    font-size: 13px;
  }
}

/* @media (max-width: 480px) {
    .hero-title {
        font-size: 22px !important;
    }

    .hero-subtitle {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    .hero-stats .stat-icon-wrapper {
        width: 30px !important;
        height: 30px !important;
    }

    .hero-stats .stat-number {
        font-size: 18px !important;
    }

    .section h2 {
        font-size: 20px !important;
    }

    .focus-cards-grid {
        gap: 12px;
        margin-top: 20px;
    }

    .focus-card {
        padding: 16px 12px;
    }

    .card-icon-wrapper {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .card-icon {
        font-size: 18px;
    }

    .card-content h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .card-content p {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .feature-tag {
        font-size: 8px;
        padding: 2px 5px;
    }
} */

/* ========== UI FIXES ========== */
.hero-stats .stat-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-align: left !important;
  padding: 12px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
}

.hero-stats .stat-icon-wrapper {
  width: 40px !important;
  height: 40px !important;
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.1) 0%,
      rgba(245, 158, 11, 0.05) 100%) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid rgba(245, 158, 11, 0.2) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  flex-shrink: 0 !important;
}

.hero-stats .stat-content {
  flex: 1 !important;
}

.hero-stats .stat-number {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  margin-bottom: 2px !important;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-light) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  line-height: 1 !important;
}

.hero-stats .stat-label {
  font-size: 12px !important;
  color: black !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}

.hero-title {
  font-size: 48px !important;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg,
      #fff 0%,
      #e0e7ff 30%,
      var(--primary-light) 70%,
      #fff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 16px !important;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.hero-subtitle {
  font-size: 16px;
  color: #cbd5e1 !important;
  margin-bottom: 24px !important;
  line-height: 1.6 !important;
  max-width: 600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-weight: 400 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
}

/* ========== SPACE OPTIMIZATION ========== */
.hero {
  position: relative;
  /* min-height: 45vh !important; */
  padding: 70px 0 30px; /* controls top & bottom spacing */
  min-height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: 50px;
  overflow: hidden;
  background: linear-gradient(135deg,
      var(--dark) 0%,
      #1a2639 50%,
      #0f172a 100%);
}

.hero canvas,
.hero-overlay,
.hero-particles,
.hero-geometric-bg,
.hero-network-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* will now follow hero height */
}

.hero-content {
  position: relative;
  padding: 0 24px;
  z-index: 10;
  animation: heroContentFade 1.2s ease-out;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.2) 0%,
      rgba(245, 158, 11, 0.1) 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.5);
  color: var(--primary-light);
  padding: 4px 12px !important;
  border-radius: 16px;
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-top: 1rem;
  margin-bottom: 12px !important;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.1);
  animation: badgeFloat 4s ease-in-out infinite;
  backdrop-filter: blur(10px);
  margin-top: 1rem;
}

.hero-title {
  font-size: 48px !important;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg,
      #fff 0%,
      #e0e7ff 30%,
      var(--primary-light) 70%,
      #fff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 16px !important;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.hero-subtitle {
  font-size: 16px !important;
  color: #cbd5e1 !important;
  margin-bottom: 24px !important;
  line-height: 1.6 !important;
  max-width: 600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-weight: 400 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
}

.hero-stats {
  display: flex !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px !important;
  width: 100%;
  margin: 30px auto !important;
}

.hero-stats .stat-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  width: 90% !important;
  text-align: left !important;
  padding: 12px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
}

.hero-stats .stat-icon-wrapper {
  width: 40px !important;
  height: 40px !important;
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.1) 0%,
      rgba(245, 158, 11, 0.05) 100%) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid rgba(245, 158, 11, 0.2) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  flex-shrink: 0 !important;
}

.hero-stats .stat-number {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  margin-bottom: 2px !important;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-light) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  line-height: 1 !important;
}

.hero-stats .stat-label {
  font-size: 12px !important;
  color: black !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}

/* .hero-buttons {
    display: flex;
    gap: 10px !important;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroContentFade 1.4s ease-out;
    margin-top: 20px !important;
} */

.hero-buttons {
  position: relative;
  display: flex;
  gap: 10px !important;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0px !important;
  /* margin-bottom:2rem; */
  margin-bottom: 0.8rem;
}
.hero-decade-line {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Base hero-icon rule with common properties */
.hero-icon {
  position: absolute;
  top: 0%;
  transform: translateY(-90%);
  object-fit: contain;
  z-index: 100;
  opacity: 0.2;
}

/* Right hero-icon */
.hero-icon-right {
  position: absolute;
  top: 0%;
  right: 5%;
  transform: translateY(-100%);
  width: 250px;
  height: 160px;
  object-fit: contain;
  z-index: 100;
  opacity: 0.2;
}

/* Left hero-icon (existing) */
.hero-icon-left {
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translateY(-90%);
  width: 350px;
  height: 220px;
  object-fit: contain;
  z-index: 100;
  opacity: 0.2;
}

/* AI Visual hero-icon (center) */
.hero-icon-ai-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 250px;
  object-fit: contain;
  z-index: 100;
  opacity: 0.3;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 14px;
}

/* Section spacing optimization */
.section {
  padding: 40px 0 !important;
  position: relative;
}

.section h2 {
  font-size: 28px !important;
  font-weight: 800;
  text-align: center;
  color: var(--dark);
  margin-bottom: 6px !important;
  letter-spacing: -0.4px;
}

.section p.lead {
  text-align: center;
  color: var(--gray-500);
  font-size: 14px !important;
  margin-bottom: 30px !important;
  font-weight: 500;
}

/* ========== ENHANCED STAT CARD ANIMATIONS ========== */
.hero-stats .stat-item:nth-child(1) {
  animation: stat1Entrance 0.8s ease-out;
}

.hero-stats .stat-item:nth-child(2) {
  animation: stat2Entrance 0.8s ease-out 0.2s both;
}

/* Unique animations for each stat card */
.hero-stats .stat-item:nth-child(1):hover {
  animation: stat1Hover 0.6s ease-in-out infinite;
}

.hero-stats .stat-item:nth-child(2):hover {
  animation: stat2Hover 0.6s ease-in-out infinite;
}

/* Entrance animations */
@keyframes stat1Entrance {
  0% {
    opacity: 0;
    transform: translateX(-50px) translateY(20px) scale(0.8);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

@keyframes stat2Entrance {
  0% {
    opacity: 0;
    transform: translateX(50px) translateY(20px) scale(0.8);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

/* Hover animations */
@keyframes stat1Hover {

  0%,
  100% {
    transform: translateY(-8px) scale(1.02);
  }

  50% {
    transform: translateY(-12px) scale(1.03);
  }
}

@keyframes stat2Hover {

  0%,
  100% {
    transform: translateY(-8px) scale(1.02) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) scale(1.03) rotate(2deg);
  }
}

.hero-stats .stat-item {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  text-align: left !important;
  padding: 16px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative !important;
  overflow: hidden !important;
  cursor: pointer !important;
}

.hero-stats .stat-item::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg,
      transparent,
      rgba(245, 158, 11, 0.1),
      transparent) !important;
  transition: left 0.6s ease !important;
}

.hero-stats .stat-item:hover::before {
  left: 100% !important;
}

.hero-stats .stat-item:hover {
  transform: translateY(-8px) scale(1.02) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: var(--primary) !important;
  box-shadow:
    0 20px 40px rgba(245, 158, 11, 0.25),
    0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

.hero-stats .stat-icon-wrapper {
  width: 50px !important;
  height: 50px !important;
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.15) 0%,
      rgba(245, 158, 11, 0.05) 100%) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid rgba(245, 158, 11, 0.3) !important;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  flex-shrink: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

.hero-stats .stat-icon-wrapper::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 0 !important;
  height: 0 !important;
  background: var(--primary) !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  transition: all 0.4s ease !important;
  z-index: -1 !important;
}

.hero-stats .stat-item:hover .stat-icon-wrapper::after {
  width: 60px !important;
  height: 60px !important;
}

.hero-stats .stat-item:hover .stat-icon-wrapper {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  transform: scale(1.1) rotate(360deg) !important;
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4) !important;
}

.hero-stats .stat-icon-wrapper i {
  font-size: 24px !important;
  color: var(--primary) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  z-index: 2 !important;
}

.hero-stats .stat-item:hover .stat-icon-wrapper i {
  color: #fff !important;
  transform: scale(1.2) !important;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3)) !important;
}

.hero-stats .stat-number {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  margin-bottom: 4px !important;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-light) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  line-height: 1 !important;
  transition: all 0.3s ease !important;
}

.hero-stats .stat-item:hover .stat-number {
  transform: scale(1.05) !important;
  background: linear-gradient(135deg,
      #fff 0%,
      var(--primary-light) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.5)) !important;
}

/* .hero-stats .stat-label {
    font-size: 12px !important;
    color: #94a3b8 !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
} */

.hero-stats .stat-item:hover .stat-label {
  color: #d96d10 !important;
  transform: translateX(2px) !important;
}

/* ========== ENHANCED AI VISUAL ELEMENTS ========== */
.ai-visual-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.floating-ai-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.ai-element {
  position: absolute;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.ai-element.ai-neural-network {
  top: 20%;
  right: 15%;
  animation-delay: 0s;
}

.ai-element.ai-data-flow {
  top: 60%;
  right: 25%;
  animation-delay: 2s;
}

.ai-element.ai-decision-tree {
  top: 40%;
  left: 10%;
  animation-delay: 4s;
}

/* Neural Network Visualization */
.neural-visualization {
  display: flex;
  gap: 20px;
  align-items: center;
}

.neural-layer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.neuron {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle,
      var(--primary) 0%,
      var(--primary-light) 50%,
      transparent 70%);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

.neural-layer:nth-child(2) .neuron {
  animation-delay: 0.3s;
}

.neural-layer:nth-child(3) .neuron {
  animation-delay: 0.6s;
}

/* Data Flow Visualization */
.data-stream {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.data-particle {
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, var(--info), var(--primary));
  border-radius: 50%;
  animation: dataFlow 3s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
}

.data-particle:nth-child(2) {
  animation-delay: 0.5s;
}

.data-particle:nth-child(3) {
  animation-delay: 1s;
}

.data-particle:nth-child(4) {
  animation-delay: 1.5s;
}

/* Decision Tree Visualization */
.decision-visualization {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.decision-node {
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, var(--success) 0%, var(--info) 100%);
  border-radius: 50%;
  animation: decisionPulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.7);
}

.decision-node.root {
  width: 20px;
  height: 20px;
  background: radial-gradient(circle,
      var(--primary) 0%,
      var(--primary-dark) 100%);
}

.decision-branch {
  display: flex;
  gap: 30px;
}

/* AI Element Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

@keyframes dataFlow {
  0% {
    transform: translateX(-20px) translateY(0px);
    opacity: 0;
  }

  50% {
    transform: translateX(20px) translateY(-10px);
    opacity: 1;
  }

  100% {
    transform: translateX(60px) translateY(0px);
    opacity: 0;
  }
}

@keyframes decisionPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.7);
  }

  50% {
    transform: scale(1.2);
    box-shadow: 0 0 35px rgba(16, 185, 129, 0.9);
  }
}

/* Enhanced AI Hero Visual */
.hero-ai-visual {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 5;
  opacity: 0.9;
}

.ai-brain-animation {
  position: relative;
  width: 150px;
  height: 150px;
  animation: brainFloat 6s ease-in-out infinite;
}

.brain-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.8);
  animation: brainPulse 3s ease-in-out infinite;
}

.neural-network {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.neural-node {
  position: absolute;
  width: 15px;
  height: 15px;
  background: radial-gradient(circle,
      rgba(59, 130, 246, 0.9) 0%,
      rgba(59, 130, 246, 0.4) 100%);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
  animation: neuralPulse 2s ease-in-out infinite;
}

.neural-node:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.neural-node:nth-child(2) {
  top: 30%;
  right: 15%;
  animation-delay: 0.3s;
}

.neural-node:nth-child(3) {
  top: 60%;
  left: 5%;
  animation-delay: 0.6s;
}

.neural-node:nth-child(4) {
  top: 70%;
  right: 10%;
  animation-delay: 0.9s;
}

.neural-node:nth-child(5) {
  top: 40%;
  left: 50%;
  animation-delay: 1.2s;
}

.neural-node:nth-child(6) {
  top: 85%;
  left: 45%;
  animation-delay: 1.5s;
}

@keyframes brainFloat {

  0%,
  100% {
    transform: translateY(-50%) rotate(0deg);
  }

  50% {
    transform: translateY(-55%) rotate(5deg);
  }
}

@keyframes brainPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes neuralPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
  }

  50% {
    transform: scale(1.4);
    opacity: 1;
    box-shadow: 0 0 40px rgba(59, 130, 246, 1);
  }
}

/* ========== AI INITIATIVES NEW SECTION ========== */
.ai-initiatives-new-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.ai-initiatives-new-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="subtle-grid-new" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(0,0,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23subtle-grid-new)"/></svg>');
  opacity: 0.4;
}

.ai-initiatives-new-section .container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ai-initiatives-new-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.ai-initiatives-new-intro {
  font-size: 20px;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 500;
}

.ai-initiatives-new-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.ai-initiatives-new-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.ai-initiatives-new-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.checkmark-new-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.ai-initiatives-new-item p {
  font-size: 18px;
  color: var(--dark);
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

.ai-initiatives-new-conclusion {
  font-size: 18px;
  color: var(--gray-700);
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
  padding: 24px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);
}

/* @media (max-width: 480px) {
    .ai-initiatives-new-title {
        font-size: 28px;
    }

    .ai-initiatives-new-intro {
        font-size: 16px;
    }

    .ai-initiatives-new-item {
        padding: 14px 16px;
        gap: 10px;
    }

    .checkmark-new-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .ai-initiatives-new-item p {
        font-size: 14px;
    }

    .ai-initiatives-new-conclusion {
        font-size: 14px;
        padding: 16px;
    }
} */

/* ========== AI INITIATIVES SECTION ========== */
.ai-initiatives-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.ai-initiatives-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="subtle-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(0,0,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23subtle-grid)"/></svg>');
  opacity: 0.4;
}

.ai-initiatives-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ai-initiatives-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.ai-initiatives-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ai-initiatives-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.initiative-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.initiative-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(245, 158, 11, 0.05),
      transparent);
  transition: left 0.6s ease;
}

.initiative-item:hover::before {
  left: 100%;
}

.initiative-item:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--primary);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 10px 20px rgba(245, 158, 11, 0.1);
}

.checkmark-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.checkmark-icon svg {
  color: white;
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.initiative-item:hover .checkmark-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.initiative-text {
  flex: 1;
}

.initiative-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.initiative-text p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

.ai-initiatives-footer {
  text-align: center;
  padding: 32px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.ai-initiatives-footer p {
  font-size: 18px;
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* @media (max-width: 480px) {
    .ai-initiatives-title {
        font-size: 28px;
    }

    .initiative-item {
        padding: 16px;
        gap: 12px;
    }

    .checkmark-icon {
        width: 36px;
        height: 36px;
    }

    .checkmark-icon svg {
        width: 16px;
        height: 16px;
    }

    .initiative-text h4 {
        font-size: 16px;
    }

    .initiative-text p {
        font-size: 13px;
    }
    .solution-highlight{
       font-size: 12px !important;
       margin:5px !important;
    }
    .focus-cards-grid{
        display:flex !important;
        flex-direction:column !important;
    }
} */

/* ========== AI ARCHITECTURE SECTION ========== */
.ai-architecture-section {
  background: linear-gradient(135deg,
      var(--dark) 0%,
      #1e293b 50%,
      #334155 100%) !important;
  color: #fff !important;
  position: relative;
  overflow: hidden;
}

.ai-architecture-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin-bottom: 12px !important;
  background: linear-gradient(135deg,
      #fff 0%,
      var(--primary-light) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.section-header p.lead {
  font-size: 16px !important;
  color: #cbd5e1 !important;
  max-width: 500px !important;
  margin: 0 auto !important;
}

.architecture-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.arch-visual {
  position: relative;
}

.arch-layers {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.arch-layer {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative !important;
  overflow: hidden !important;
}

.arch-layer::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg,
      transparent,
      rgba(245, 158, 11, 0.1),
      transparent) !important;
  transition: left 0.6s ease !important;
}

.arch-layer:hover::before {
  left: 100% !important;
}

.arch-layer:hover {
  transform: translateX(10px) scale(1.02) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2) !important;
}

.layer-icon {
  font-size: 28px !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.2) 0%,
      rgba(245, 158, 11, 0.1) 100%) !important;
  border-radius: 10px !important;
  flex-shrink: 0 !important;
  transition: all 0.3s ease !important;
}

.arch-layer:hover .layer-icon {
  background: var(--primary) !important;
  transform: scale(1.1) rotate(5deg) !important;
}

.layer-content h4 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 6px !important;
}

.layer-content p {
  font-size: 13px !important;
  color: #94a3b8 !important;
  margin-bottom: 8px !important;
  line-height: 1.4 !important;
}

.tech-tags {
  display: flex !important;
  gap: 6px !important;
  flex-wrap: wrap !important;
}

.tech-tag {
  background: rgba(59, 130, 246, 0.2) !important;
  color: #93c5fd !important;
  padding: 3px 6px !important;
  border-radius: 8px !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  border: 1px solid rgba(59, 130, 246, 0.3) !important;
  font-family: "JetBrains Mono", monospace !important;
  transition: all 0.3s ease !important;
}

.tech-tag:hover {
  background: rgba(59, 130, 246, 0.3) !important;
  transform: scale(1.05) !important;
}

/* Data Flow Animation */
.data-flow-animation {
  position: absolute;
  top: 0;
  left: -50px;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.flow-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary) !important;
  border-radius: 50% !important;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.8) !important;
  animation: flowAnimation 4s ease-in-out infinite;
}

.flow-particle:nth-child(1) {
  top: 20%;
  animation-delay: 0s;
}

.flow-particle:nth-child(2) {
  top: 35%;
  animation-delay: 0.8s;
}

.flow-particle:nth-child(3) {
  top: 50%;
  animation-delay: 1.6s;
}

.flow-particle:nth-child(4) {
  top: 65%;
  animation-delay: 2.4s;
}

.flow-particle:nth-child(5) {
  top: 80%;
  animation-delay: 3.2s;
}

@keyframes flowAnimation {
  0% {
    left: -50px;
    opacity: 0;
    transform: scale(0.5);
  }

  10% {
    opacity: 1;
    transform: scale(1);
  }

  90% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    left: calc(100% + 50px);
    opacity: 0;
    transform: scale(0.5);
  }
}

/* ========== BINARY RAIN ANIMATION ========== */
.binary-rain {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  overflow: hidden;
}

.rain-column {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  font-size: 14px;
  top: -100%;
}

.column-1 {
  left: 10%;
  animation: rainFall1 6s linear infinite;
}

.column-2 {
  left: 25%;
  animation: rainFall2 7s linear infinite;
  animation-delay: 1s;
}

.column-3 {
  left: 40%;
  animation: rainFall3 8s linear infinite;
  animation-delay: 2s;
}

.column-4 {
  left: 55%;
  animation: rainFall4 6.5s linear infinite;
  animation-delay: 0.5s;
}

.column-5 {
  left: 70%;
  animation: rainFall5 7.5s linear infinite;
  animation-delay: 1.5s;
}

.column-6 {
  left: 85%;
  animation: rainFall6 9s linear infinite;
  animation-delay: 2.5s;
}

.binary-digit {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.8);
  opacity: 0.8;
  animation: digitGlow 1s ease-in-out infinite alternate;
}

/* Binary Rain Keyframe Animations */
@keyframes rainFall1 {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(400px);
    opacity: 0;
  }
}

@keyframes rainFall2 {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  10% {
    opacity: 0.7;
  }

  90% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(400px);
    opacity: 0;
  }
}

@keyframes rainFall3 {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  10% {
    opacity: 0.9;
  }

  90% {
    opacity: 0.9;
  }

  100% {
    transform: translateY(400px);
    opacity: 0;
  }
}

@keyframes rainFall4 {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(400px);
    opacity: 0;
  }
}

@keyframes rainFall5 {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(400px);
    opacity: 0;
  }
}

@keyframes rainFall6 {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  10% {
    opacity: 0.7;
  }

  90% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(400px);
    opacity: 0;
  }
}

@keyframes digitGlow {
  0% {
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.8);
    transform: scale(1);
  }

  100% {
    text-shadow: 0 0 15px rgba(245, 158, 11, 1);
    transform: scale(1.1);
  }
}

@keyframes dataPulse {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translateX(-50%) scale(1.5);
    opacity: 1;
  }
}

/* ========== ENHANCED BUTTON STYLES ========== */
.hero-cta,
.hero-secondary {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  border-radius: 12px !important;
}

.btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.hero-cta:hover .btn-ripple,
.hero-secondary:hover .btn-ripple {
  width: 300px;
  height: 300px;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.4) !important;
}

.hero-secondary:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3) !important;
  border-color: var(--secondary) !important;
  color: var(--d97706) !important;
}

/* ========== ICON GLOW EFFECTS ========== */
.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle,
      rgba(245, 158, 11, 0.3) 0%,
      transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.stat-item:hover .icon-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.5);
}

/* ========== AOS ANIMATIONS OVERRIDES ========== */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ========== ENHANCED SCROLL INDICATOR ========== */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  margin: 0 auto 8px;
}

.scroll-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ========== ENHANCED CLIENT BRAND CARDS ========== */
.client-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px 0;
  perspective: 1200px;
}

.client-brand-card {
  position: relative;
  height: 320px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.client-brand-card:hover .brand-card-inner {
  transform: rotateY(180deg);
}

.brand-card-front,
.brand-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s ease;
}

.client-brand-card:hover .brand-card-front,
.client-brand-card:hover .brand-card-back {
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.2);
}

.brand-card-front {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-card-back {
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  color: white;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-container {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 30px auto 20px;
  border-radius: 18px;
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.brand-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.brand-glow-effect {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg,
      var(--primary),
      var(--secondary),
      var(--info),
      var(--primary));
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: glowRotate 4s linear infinite;
}

.client-brand-card:hover .brand-glow-effect {
  opacity: 0.8;
}

.client-brand-card:hover .brand-logo {
  transform: scale(1.1) rotate(5deg);
}

.brand-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.brand-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 3s ease-in-out infinite;
}

.brand-particles span:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.brand-particles span:nth-child(2) {
  top: 70%;
  left: 80%;
  animation-delay: 0.5s;
}

.brand-particles span:nth-child(3) {
  top: 40%;
  left: 60%;
  animation-delay: 1s;
}

.brand-particles span:nth-child(4) {
  top: 80%;
  left: 20%;
  animation-delay: 1.5s;
}

.client-brand-card:hover .brand-particles span {
  opacity: 0.6;
}

.brand-info {
  padding: 0 20px;
}

.brand-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.brand-info p {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
  margin: 0;
}

.brand-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.05) 0%,
      rgba(139, 92, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.client-brand-card:hover .brand-hover-overlay {
  opacity: 1;
}

.brand-detail-content {
  padding: 30px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.brand-detail-content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  animation: shimmer 3s infinite;
}

.brand-icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.9;
  animation: iconFloat 3s ease-in-out infinite;
}

.brand-detail-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.brand-detail-content p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.95;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.brand-metrics {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.metric {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 16px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.metric:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.metric-number {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card entrance animations */
.client-brand-card:nth-child(1) {
  animation: slideInLeft 0.8s ease-out;
}

.client-brand-card:nth-child(2) {
  animation: slideInUp 0.8s ease-out 0.1s both;
}

.client-brand-card:nth-child(3) {
  animation: slideInRight 0.8s ease-out 0.2s both;
}

.client-brand-card:nth-child(4) {
  animation: slideInLeft 0.8s ease-out 0.3s both;
}

.client-brand-card:nth-child(5) {
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.client-brand-card:nth-child(6) {
  animation: slideInRight 0.8s ease-out 0.5s both;
}

.client-brand-card:nth-child(7) {
  animation: slideInLeft 0.8s ease-out 0.6s both;
}

.client-brand-card:nth-child(8) {
  animation: slideInUp 0.8s ease-out 0.7s both;
}

.client-brand-card:nth-child(9) {
  animation: slideInRight 0.8s ease-out 0.8s both;
}

.client-brand-card:nth-child(10) {
  animation: slideInLeft 0.8s ease-out 0.9s both;
}

/* Animations */
@keyframes glowRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes particleFloat {

  0%,
  100% {
    transform: translateY(0px) scale(0);
    opacity: 0;
  }

  50% {
    transform: translateY(-20px) scale(1);
    opacity: 0.6;
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* @media (max-width: 480px) {
    .client-showcase-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 0;
    }
    
    .client-brand-card {
        height: 260px;
    }
    
    .brand-logo-container {
        width: 60px;
        height: 60px;
        margin: 15px auto 12px;
    }
    
    .brand-logo {
        width: 48px;
        height: 48px;
    }
    
    .brand-info h4 {
        font-size: 16px;
    }
    
    .brand-info p {
        font-size: 11px;
    }
    
    .brand-icon {
        font-size: 32px;
    }
    
    .brand-detail-content h4 {
        font-size: 16px;
    }
    
    .brand-detail-content p {
        font-size: 11px;
    }
    
    .metric-number {
        font-size: 14px;
    }
    
    .metric-label {
        font-size: 8px;
    }
} */

/* Touch device support */
@media (hover: none) and (pointer: coarse) {
  .client-brand-card:active .brand-card-inner {
    transform: rotateY(180deg);
  }
}

/* ========== SIMPLIFIED CLIENT LOGO CARDS ========== */
.client-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 40px 0;
  justify-content: center;
}

.client-logo-card {
  position: relative;
  height: 120px;
  cursor: pointer;
  flex: 0 0 calc(20% - 12px);
  min-width: 140px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 110px;
}

.client-logo-card:hover {
  transform: translateY(-5px);
}

.logo-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.logo-card-front {
  position: relative;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%); */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.client-logo-card:hover .logo-card-front {
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.15);
  transform: scale(1.02);
}
/* 
.logo-image-container {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
} */

.client-logo {
  width: 170px;
  height: 125px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}

/* .logo-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg,
      var(--primary),
      var(--secondary),
      var(--info),
      var(--primary));
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: glowRotate 3s linear infinite;
} */

.client-logo-card:hover .logo-glow {
  opacity: 0.7;
}

.client-logo-card:hover .client-logo {
  transform: scale(1.1);
}

.client-logo-card:hover .logo-image-container {
  transform: rotate(5deg);
}

.logo-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.logo-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 2.5s ease-in-out infinite;
}

.logo-particles span:nth-child(1) {
  top: 25%;
  left: 15%;
  animation-delay: 0s;
}

.logo-particles span:nth-child(2) {
  top: 65%;
  left: 75%;
  animation-delay: 0.4s;
}

.logo-particles span:nth-child(3) {
  top: 45%;
  left: 55%;
  animation-delay: 0.8s;
}

.client-logo-card:hover .logo-particles span {
  opacity: 0.5;
}

.logo-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.03) 0%,
      rgba(139, 92, 246, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 16px;
}

.client-logo-card:hover .logo-hover-overlay {
  opacity: 1;
}

/* Card entrance animations */
.client-logo-card:nth-child(1) {
  animation: slideInLeft 0.6s ease-out;
}

.client-logo-card:nth-child(2) {
  animation: slideInUp 0.6s ease-out 0.1s both;
}

.client-logo-card:nth-child(3) {
  animation: slideInRight 0.6s ease-out 0.2s both;
}

.client-logo-card:nth-child(4) {
  animation: slideInLeft 0.6s ease-out 0.3s both;
}

.client-logo-card:nth-child(5) {
  animation: slideInUp 0.6s ease-out 0.4s both;
}

.client-logo-card:nth-child(6) {
  animation: slideInRight 0.6s ease-out 0.5s both;
}

.client-logo-card:nth-child(7) {
  animation: slideInLeft 0.6s ease-out 0.6s both;
}

.client-logo-card:nth-child(8) {
  animation: slideInUp 0.6s ease-out 0.7s both;
}

.client-logo-card:nth-child(9) {
  animation: slideInRight 0.6s ease-out 0.8s both;
}

.client-logo-card:nth-child(10) {
  animation: slideInLeft 0.6s ease-out 0.9s both;
}

/* Animations */
@keyframes glowRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes particleFloat {

  0%,
  100% {
    transform: translateY(0px) scale(0);
    opacity: 0;
  }

  50% {
    transform: translateY(-15px) scale(1);
    opacity: 0.5;
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 
@media (max-width: 480px) {
    .client-logo-grid {
        flex-wrap: wrap;
        gap: 12px;
        padding: 20px 0;
    }
    
    .client-logo-card {
        height: 140px;
        flex: 0 0 calc(50% - 6px);
        min-width: 100px;
    }
    
    .logo-image-container {
        width: 60px;
        height: 60px;
    }
    
    .client-logo {
        width: 48px;
        height: 48px;
    }
} */

.logo-item {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  cursor: pointer;
}

.logo-icon-bg {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease !important;
}

.logo-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(245, 158, 11, 0.2),
      transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.logo-item .logo-hover-effect {
  left: 100%;
}

.logo-item .logo-icon-bg {
  /* background: var(--primary) !important; */
  /* transform: scale(1.1) rotate(5deg) !important; */
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3) !important;
}

.logo-item .logo-icon-bg i {
  color: #fff !important;
  transform: scale(1.2) !important;
}

/* ========== ENHANCED CHALLENGE ITEMS ========== */
.challenge-item {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.challenge-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(245, 158, 11, 0.05),
      transparent);
  transition: left 0.6s ease;
}

.challenge-item:hover::before {
  left: 100%;
}

.challenge-item:hover {
  transform: translateX(10px) scale(1.02) !important;
  background: rgba(245, 158, 11, 0.05) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15) !important;
}

.challenge-item:hover .challenge-icon {
  transform: scale(1.2) rotate(10deg) !important;
  filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.3)) !important;
}

/* ========== ENHANCED VISUAL ITEMS ========== */
.visual-item {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  cursor: pointer;
}

.visual-item:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.2) !important;
}

/* ========== DNA HELIX ========== */
.dna-helix {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 80px;
  position: relative;
  min-height: 600px;
}

.helix-strand {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.strand-left {
  align-items: flex-end;
}

.strand-right {
  align-items: flex-start;
}

.node-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.node-sphere {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3);
  transition: all 0.4s ease;
}

.node-sphere::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: sphereRotate 8s linear infinite;
}

.node-sphere::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle,
      rgba(245, 158, 11, 0.1) 0%,
      transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spherePulse 3s ease-in-out infinite;
}

.node-item:hover .node-sphere {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.4);
}

.node-icon {
  font-size: 32px;
  z-index: 2;
  position: relative;
  animation: iconFloat 4s ease-in-out infinite;
}

.node-content {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.node-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(245, 158, 11, 0.1),
      transparent);
  transition: left 0.6s ease;
}

.node-item:hover .node-content::before {
  left: 100%;
}

.node-item:hover .node-content {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(245, 158, 11, 0.2);
  border-color: var(--primary);
}

.node-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.node-content p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* Connection lines between strands */
.helix-strand::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg,
      var(--primary) 0%,
      rgba(245, 158, 11, 0.2) 100%);
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 0;
}

.strand-left::before {
  transform: translateX(-50%) rotate(15deg);
}

.strand-right::before {
  transform: translateX(-50%) rotate(-15deg);
}

@keyframes sphereRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spherePulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.3;
  }
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* ========== QUANTUM GRID ========== */
.quantum-grid {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 80px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantum-core {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px rgba(139, 92, 246, 0.5);
  z-index: 10;
  animation: coreQuantumPulse 4s ease-in-out infinite;
}

.core-particle {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: particleFloat 6s ease-in-out infinite;
}

.core-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 3px solid rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringQuantumRotate 12s linear infinite;
}

.core-text {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  z-index: 2;
  position: relative;
}

.quantum-field {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.field-node {
  position: absolute;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.node-1 {
  top: 10%;
  left: 10%;
}

.node-2 {
  top: 10%;
  right: 10%;
}

.node-3 {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.node-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle,
      rgba(139, 92, 246, 0.2) 0%,
      transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: nodeGlow 3s ease-in-out infinite;
}

.node-crystal {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #fff 0%, #f8fafc 50%, #fff 100%);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  z-index: 2;
}

.field-node:hover .node-crystal {
  transform: scale(1.1) rotate(15deg);
  background: linear-gradient(45deg, var(--secondary) 0%, var(--primary) 100%);
  box-shadow: 0 15px 45px rgba(139, 92, 246, 0.3);
}

.crystal-icon {
  font-size: 24px;
  transition: all 0.3s ease;
}

.field-node:hover .crystal-icon {
  transform: scale(1.2);
}

.node-label {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  transition: color 0.3s ease;
}

.field-node:hover .node-label {
  color: var(--secondary);
}

.energy-wave {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: waveExpand 4s ease-in-out infinite;
}

.wave-1 {
  animation-delay: 0s;
}

.wave-2 {
  animation-delay: 1.3s;
}

.wave-3 {
  animation-delay: 2.6s;
}

@keyframes coreQuantumPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes particleFloat {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

@keyframes ringQuantumRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes nodeGlow {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.1;
  }
}

@keyframes waveExpand {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.2;
  }
}

/* ========== FRACTAL PATH ========== */
.fractal-path {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.path-segment {
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.path-segment::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(16, 185, 129, 0.05),
      transparent);
  transition: left 0.8s ease;
}

.path-segment:hover::before {
  left: 100%;
}

.path-segment:hover {
  transform: translateX(30px) scale(1.02);
  box-shadow: 0 25px 60px rgba(16, 185, 129, 0.15);
  border-color: var(--success);
}

.segment-geometry {
  flex-shrink: 0;
}

.fractal-shape {
  width: 100px;
  height: 100px;
  position: relative;
  transition: all 0.5s ease;
}

.shape-layers {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.layer {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--success);
  opacity: 0.3;
  transition: all 0.4s ease;
}

.shape-1 .layer-1 {
  transform: rotate(0deg) scale(1);
}

.shape-1 .layer-2 {
  transform: rotate(30deg) scale(0.9);
}

.shape-1 .layer-3 {
  transform: rotate(60deg) scale(0.8);
}

.shape-2 .layer-1 {
  transform: rotate(45deg) scale(1);
}

.shape-2 .layer-2 {
  transform: rotate(75deg) scale(0.9);
}

.shape-2 .layer-3 {
  transform: rotate(105deg) scale(0.8);
}

.shape-3 .layer-1 {
  border-radius: 50%;
  transform: rotate(0deg) scale(1);
}

.shape-3 .layer-2 {
  border-radius: 50%;
  transform: rotate(45deg) scale(0.9);
}

.shape-3 .layer-3 {
  border-radius: 50%;
  transform: rotate(90deg) scale(0.8);
}

.path-segment:hover .layer {
  opacity: 0.8;
  border-color: var(--primary);
  transform: scale(1.1) rotate(15deg);
}

.step-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--success);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.segment-content {
  flex: 1;
}

.segment-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.segment-content p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.segment-progress {
  width: 100%;
  height: 8px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--success) 0%, #10b981 100%);
  border-radius: 4px;
  transition: width 2s ease-out;
  position: relative;
}

.progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  animation: progressShine 2s ease-in-out infinite;
}

.path-segment:hover .progress-fill {
  width: 100%;
}

/* ========== HEXAGON GRID ========== */
.hexagon-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 90px;
  margin-bottom: 40px !important;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hexagon-item {
  width: 180px;
  height: 200px;
  position: relative;
  cursor: pointer;
}

.hexagon-shape {
  width: 100%;
  height: 100%;
  position: relative;
  transform: rotate(30deg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hexagon-shape::before,
.hexagon-shape::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hexagon-shape::before {
  transform: rotate(60deg);
}

.hexagon-shape::after {
  transform: rotate(-60deg);
}

.hexagon-item:hover .hexagon-shape {
  transform: rotate(30deg) scale(1.05);
}

.hexagon-item:hover .hexagon-shape::before,
.hexagon-item:hover .hexagon-shape::after {
  background: linear-gradient(135deg, #fffaf2 0%, #ffe9d6 100%);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3);
}

.hex-content {
  position: absolute;
  top: 42%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(-30deg);
  text-align: center;
  z-index: 2;
  width: 80%;
  transition: all 0.3s ease;
}

.hex-icon {
  font-size: 32px;
  margin-bottom: 8px;
  display: block;
  animation: hexIconFloat 3s ease-in-out infinite;
}

.hex-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.hex-content p {
  font-size: 11px;
  color: var(--gray-600);
  margin-bottom: 12px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.hexagon-item:hover .hex-content h4,
.hexagon-item:hover .hex-content p {
  color: black;
}

.hex-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.hex-dots span {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.hexagon-item:hover .hex-dots span {
  opacity: 1;
  background: var(--primary);
  animation: dotPulse 1.5s ease-in-out infinite;
}

.hex-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.hex-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes hexIconFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes dotPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* ========== FOCUS CARDS GRID ========== */
.focus-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.focus-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  animation: cardEntrance 0.8s ease-out forwards;
}

.focus-card:nth-child(1) {
  animation-delay: 0.1s;
}

.focus-card:nth-child(2) {
  animation-delay: 0.2s;
}

.focus-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes cardEntrance {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }

  50% {
    opacity: 0.8;
    transform: translateY(-10px) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.focus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(245, 158, 11, 0.05),
      transparent);
  transition: left 0.8s ease;
  z-index: 1;
}

.focus-card:hover::before {
  left: 100%;
}

.focus-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.2);
  border-color: var(--primary);
}

.card-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon {
  font-size: 32px;
  z-index: 2;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: iconFloat 4s ease-in-out infinite;
}

.focus-card:nth-child(1) .card-icon {
  animation-delay: 0s;
}

.focus-card:nth-child(2) .card-icon {
  animation-delay: 1.3s;
}

.focus-card:nth-child(3) .card-icon {
  animation-delay: 2.6s;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-3px) rotate(2deg);
  }

  50% {
    transform: translateY(-6px) rotate(0deg);
  }

  75% {
    transform: translateY(-3px) rotate(-2deg);
  }
}

.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.1) 0%,
      rgba(245, 158, 11, 0.05) 100%);
  border-radius: 20px;
  border: 2px solid rgba(245, 158, 11, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.focus-card:hover .icon-bg {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.3);
}

.focus-card:hover .card-icon {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.4));
}

.card-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.card-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}

/* .focus-card:hover .card-content h3 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} */

.card-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.focus-card:hover .card-content p {
  color: var(--gray-700);
}

.card-features {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.feature-tag {
  background: rgba(59, 130, 246, 0.1);
  color: var(--info);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
  font-family: "JetBrains Mono", monospace;
  position: relative;
  overflow: hidden;
}

.feature-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.6s ease;
}

.focus-card:hover .feature-tag::before {
  left: 100%;
}

.focus-card:hover .feature-tag {
  background: rgba(245, 158, 11, 0.1);
  color: var(--primary);
  border-color: rgba(245, 158, 11, 0.3);
  transform: scale(1.05);
  animation: tagPulse 2s ease-in-out infinite;
}

.focus-card:nth-child(1) .feature-tag:nth-child(1) {
  animation-delay: 0s;
}

.focus-card:nth-child(1) .feature-tag:nth-child(2) {
  animation-delay: 0.3s;
}

.focus-card:nth-child(2) .feature-tag:nth-child(1) {
  animation-delay: 0.6s;
}

.focus-card:nth-child(2) .feature-tag:nth-child(2) {
  animation-delay: 0.9s;
}

.focus-card:nth-child(3) .feature-tag:nth-child(1) {
  animation-delay: 1.2s;
}

.focus-card:nth-child(3) .feature-tag:nth-child(2) {
  animation-delay: 1.5s;
}

@keyframes tagPulse {

  0%,
  100% {
    transform: scale(1.05);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.2);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
  }
}

.card-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.02) 0%,
      rgba(139, 92, 246, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.focus-card:hover .card-hover-effect {
  opacity: 1;
}

/* ========== MODERN ENGAGEMENT CARDS ========== */
.engagement-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.engagement-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  padding: 0;
  border: 2px solid transparent;
  background-clip: padding-box;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.engagement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 24px;
  padding: 2px;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.engagement-card:hover::before {
  opacity: 1;
}

.engagement-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(245, 158, 11, 0.25);
  border-color: var(--primary);
}

.card-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg,
      var(--dark) 0%,
      #1e293b 50%,
      #334155 100%);
  border-radius: 22px 22px 0 0;
}

.card-ai-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-number-wrapper {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}

.card-number-bg {
  position: relative;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.card-number-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  animation: numberShimmer 3s infinite;
}

.card-number {
  font-size: 24px;
  font-weight: 900;
  color: white;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: numberPulse 2s ease-in-out infinite;
}

.card-number-label {
  font-size: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: -2px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.card-content {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.card-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-features {
  display: flex;
  gap: 10px;
}

.feature-badge {
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.1) 0%,
      rgba(245, 158, 11, 0.05) 100%);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 12px;
  /* border: 1px solid rgba(245, 158, 11, 0.2); */
  transition: all 0.3s ease;
  width: 147px;
}

.card-1 .card-number-bg {
  animation: card1Float 4s ease-in-out infinite;
}

.card-2 .card-number-bg {
  animation: card2Rotate 4s ease-in-out infinite;
}

.card-3 .card-number-bg {
  animation: card3Pulse 4s ease-in-out infinite;
}

.card-1 {
  animation: card1Entrance 0.8s ease-out;
}

.card-2 {
  animation: card2Entrance 0.8s ease-out 0.2s both;
}

.card-3 {
  animation: card3Entrance 0.8s ease-out 0.4s both;
}

.engagement-card:hover .card-number-bg {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.engagement-card:hover .card-number {
  transform: scale(1.2);
  color: #fff;
}

.engagement-card:hover .card-number-label {
  color: #fff;
  opacity: 1;
  transform: translateY(0);
}

@keyframes numberShimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes numberPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes card1Float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes card2Rotate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(10deg);
  }
}

@keyframes card3Pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
  }
}

@keyframes card1Entrance {
  0% {
    opacity: 0;
    transform: translateX(-50px) translateY(30px) scale(0.8);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

@keyframes card2Entrance {
  0% {
    opacity: 0;
    transform: translateX(50px) translateY(30px) scale(0.8);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

@keyframes card3Entrance {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.card-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.8s ease;
  pointer-events: none;
}

.engagement-card:hover .card-hover-effect {
  left: 0%;
}

/* ========== AI ASSESSMENT VISUAL ========== */
.ai-assessment-visual {
  position: relative;
  width: 100%;
  height: 100%;
}

.assessment-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scanning-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: scanRotate 3s linear infinite;
}

.assessment-icon {
  font-size: 32px;
  z-index: 2;
  animation: iconPulse 2s ease-in-out infinite;
}

.data-points {
  position: absolute;
  width: 100%;
  height: 100%;
}

.data-point {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, var(--info) 0%, var(--primary) 100%);
  border-radius: 50%;
  animation: dataFloat 4s ease-in-out infinite;
}

.data-point:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.data-point:nth-child(2) {
  top: 30%;
  right: 20%;
  animation-delay: 1s;
}

.data-point:nth-child(3) {
  bottom: 25%;
  left: 25%;
  animation-delay: 2s;
}

.data-point:nth-child(4) {
  bottom: 20%;
  right: 15%;
  animation-delay: 3s;
}

.assessment-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.grid-line {
  position: absolute;
  background: linear-gradient(90deg,
      transparent,
      rgba(245, 158, 11, 0.3),
      transparent);
  height: 1px;
}

.grid-line:nth-child(1) {
  top: 30%;
  width: 60%;
  left: 20%;
  animation: gridScan 8s linear infinite;
}

.grid-line:nth-child(2) {
  top: 50%;
  width: 80%;
  left: 10%;
  animation: gridScan 8s linear infinite 2s;
}

.grid-line:nth-child(3) {
  top: 70%;
  width: 70%;
  left: 15%;
  animation: gridScan 8s linear infinite 4s;
}

.ai-brain-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
      rgba(245, 158, 11, 0.3) 0%,
      transparent 70%);
  animation: brainPulse 2s ease-in-out infinite;
}

.neural-network {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.neural-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, var(--info) 0%, var(--primary) 100%);
  border-radius: 50%;
  animation: neuralPulse 3s ease-in-out infinite;
}

.neural-node.node-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.neural-node.node-2 {
  top: 30%;
  left: 80%;
  animation-delay: 0.5s;
}

.neural-node.node-3 {
  top: 50%;
  left: 20%;
  animation-delay: 1s;
}

.neural-node.node-4 {
  top: 70%;
  left: 70%;
  animation-delay: 1.5s;
}

.neural-node.node-5 {
  top: 80%;
  left: 30%;
  animation-delay: 2s;
}

.neural-node.node-6 {
  top: 40%;
  left: 60%;
  animation-delay: 2.5s;
}

.ai-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ai-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 4s ease-in-out infinite;
}

.ai-particle.particle-1 {
  top: 15%;
  left: 25%;
  animation-delay: 0s;
}

.ai-particle.particle-2 {
  top: 25%;
  left: 75%;
  animation-delay: 1s;
}

.ai-particle.particle-3 {
  top: 75%;
  left: 25%;
  animation-delay: 2s;
}

.ai-particle.particle-4 {
  top: 85%;
  left: 75%;
  animation-delay: 3s;
}

/* ========== PILOT IMPLEMENTATION VISUAL ========== */
.pilot-implementation-visual {
  position: relative;
  width: 100%;
  height: 100%;
}

.pilot-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotating-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-right: 3px solid var(--secondary);
  border-radius: 50%;
  animation: rotateClockwise 2s linear infinite;
}

.pilot-icon {
  font-size: 32px;
  z-index: 2;
  animation: rocketFloat 3s ease-in-out infinite;
}

.implementation-dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.impl-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--secondary);
  border-radius: 50%;
  animation: orbitDot 6s linear infinite;
}

.impl-dot:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.impl-dot:nth-child(2) {
  top: 25%;
  right: 15%;
  animation-delay: 1s;
}

.impl-dot:nth-child(3) {
  top: 50%;
  left: 5%;
  animation-delay: 2s;
}

.impl-dot:nth-child(4) {
  top: 50%;
  right: 8%;
  animation-delay: 3s;
}

.impl-dot:nth-child(5) {
  bottom: 25%;
  left: 12%;
  animation-delay: 4s;
}

.impl-dot:nth-child(6) {
  bottom: 20%;
  right: 10%;
  animation-delay: 5s;
}

.pilot-progress {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.progress-segment {
  width: 40px;
  height: 4px;
  background: rgba(139, 92, 246, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.progress-segment::after {
  content: "";
  display: block;
  height: 100%;
  background: var(--secondary);
  border-radius: 2px;
  animation: progressFill 3s ease-in-out infinite;
}

.progress-segment:nth-child(1)::after {
  animation-delay: 0s;
}

.progress-segment:nth-child(2)::after {
  animation-delay: 0.5s;
}

.progress-segment:nth-child(3)::after {
  animation-delay: 1s;
}

/* ========== ENTERPRISE DEPLOYMENT VISUAL ========== */
.enterprise-deployment-visual {
  position: relative;
  width: 100%;
  height: 100%;
}

.deployment-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expanding-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border: 3px solid var(--success);
  border-radius: 50%;
  animation: expandPulse 2s ease-in-out infinite;
}

.deployment-icon {
  font-size: 32px;
  z-index: 2;
  animation: globalRotate 4s ease-in-out infinite;
}

.network-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.node {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: nodePulse 3s ease-in-out infinite;
}

.node:nth-child(1) {
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}

.node:nth-child(2) {
  top: 20%;
  right: 25%;
  animation-delay: 0.5s;
}

.node:nth-child(3) {
  top: 40%;
  left: 10%;
  animation-delay: 1s;
}

.node:nth-child(4) {
  top: 40%;
  right: 15%;
  animation-delay: 1.5s;
}

.node:nth-child(5) {
  top: 60%;
  left: 25%;
  animation-delay: 2s;
}

.node:nth-child(6) {
  top: 60%;
  right: 20%;
  animation-delay: 2.5s;
}

.node:nth-child(7) {
  bottom: 15%;
  left: 15%;
  animation-delay: 3s;
}

.node:nth-child(8) {
  bottom: 20%;
  right: 30%;
  animation-delay: 3.5s;
}

.deployment-waves {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}

.wave {
  width: 3px;
  height: 20px;
  background: linear-gradient(to top, transparent, var(--success), transparent);
  border-radius: 2px;
  animation: waveAnimation 2s ease-in-out infinite;
}

.wave:nth-child(1) {
  animation-delay: 0s;
}

.wave:nth-child(2) {
  animation-delay: 0.2s;
}

.wave:nth-child(3) {
  animation-delay: 0.4s;
}

/* ========== ANIMATIONS ========== */
@keyframes scanRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes dataFloat {

  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

@keyframes gridScan {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes rotateClockwise {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rocketFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(5deg);
  }
}

@keyframes orbitDot {
  0% {
    transform: rotate(0deg) translateX(30px) rotate(0deg);
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: rotate(360deg) translateX(30px) rotate(-360deg);
    opacity: 0.6;
  }
}

@keyframes progressFill {

  0%,
  100% {
    width: 0%;
  }

  50% {
    width: 100%;
  }
}

@keyframes expandPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.4;
  }
}

@keyframes globalRotate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(5deg);
  }

  75% {
    transform: rotate(-5deg);
  }
}

@keyframes nodePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

@keyframes waveAnimation {

  0%,
  100% {
    height: 20px;
    opacity: 0.6;
  }

  50% {
    height: 30px;
    opacity: 1;
  }
}

/* ========== CLEAN HORIZONTAL TIMELINE ========== */
.engagement-timeline {
  position: relative;
  /* padding: 80px 0; */
  overflow: hidden;
}

/* Timeline Line */
.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--gray-200) 0%,
      var(--primary) 50%,
      var(--gray-200) 100%);
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transition: width 2s ease;
  animation: timelineProgress 8s ease-in-out infinite;
}

/* Timeline Container */
.timeline-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  z-index: 2;
}

/* Timeline Steps */
.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 300px;
  cursor: pointer;
}

/* Step Marker */
.step-marker {
  position: relative;
  margin-bottom: 30px;
  z-index: 3;
}

.marker-inner {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
  position: relative;
  transition: all 0.4s ease;
  animation: markerFloat 3s ease-in-out infinite;
}

.marker-inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: markerPulse 2s ease-in-out infinite;
}

.timeline-step:hover .marker-inner {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
}

.step-number {
  font-size: 16px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.step-icon {
  font-size: 24px;
  animation: iconBounce 2s ease-in-out infinite;
}

/* Step Content */
.step-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(245, 158, 11, 0.1),
      transparent);
  animation: contentShine 3s ease-in-out infinite;
}

.timeline-step:hover .step-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
  width: 85%;
}

.step-content p {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.5;
}

.step-features {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(245, 158, 11, 0.1);
  transform: translateX(5px);
}

.feature-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

/* Animations */
@keyframes timelineProgress {

  0%,
  100% {
    width: 0%;
  }

  50% {
    width: 100%;
  }
}

@keyframes markerFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes markerPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

@keyframes iconBounce {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes contentShine {

  0%,
  100% {
    left: -100%;
  }

  50% {
    left: 100%;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
  min-height: auto !important;
  padding: 60px 16px 20px;
}

  .hero-buttons {
  margin-bottom: 0.4rem !important;
}

.hero-decade-line {
  font-size: 12px;
  line-height: 1.4;
}
  .timeline-container {
    flex-direction: column;
    gap: 60px;
    align-items: center;
  }

  .timeline-line {
    width: 4px;
    height: 100%;
    top: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .timeline-progress {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg,
        var(--primary) 0%,
        var(--secondary) 100%);
    animation: timelineProgressVertical 8s ease-in-out infinite;
  }

  .step-marker {
    margin-bottom: 20px;
  }

  .marker-inner {
    width: 70px;
    height: 70px;
  }

  .step-number {
    font-size: 14px;
  }

  .step-icon {
    font-size: 20px;
  }

  .step-content {
    padding: 25px;
    max-width: 400px;
  }

  .step-content h3 {
    font-size: 18px;
  }

  .step-content p {
    font-size: 14px;
  }

  .feature-item {
    padding: 10px 14px;
  }

  .feature-icon {
    font-size: 16px;
  }

  .feature-item span {
    font-size: 13px;
  }
}

/* @media (max-width: 480px) {
    .timeline-container {
        gap: 30px;
    }
    
    .marker-inner {
        width: 50px;
        height: 50px;
    }
    
    .step-number {
        font-size: 10px;
        margin-bottom: 2px;
    }
    
    .step-icon {
        font-size: 16px;
    }
    
    .step-content {
        padding: 15px;
    }
    
    .step-content h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .step-content p {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .feature-item {
        padding: 6px 10px;
    }
    
    .feature-icon {
        font-size: 12px;
        margin-bottom: 2px;
    }
    
    .feature-item span {
        font-size: 11px;
    }
} */

@keyframes timelineProgressVertical {

  0%,
  100% {
    height: 0%;
  }

  50% {
    height: 100%;
  }
}

@media (max-width: 992px) {
  .engagement-cards {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .engagement-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .card-image-wrapper {
    height: 200px;
  }

  .card-content {
    padding: 25px;
  }

  .card-content h3 {
    font-size: 20px;
  }

  .card-content p {
    font-size: 14px;
  }
}

/* @media (max-width: 480px) {
    .engagement-cards {
        gap: 20px;
        margin-top: 25px;
    }

    .card-image-wrapper {
        height: 160px;
    }

    .card-content {
        padding: 18px;
    }

    .card-content h3 {
        font-size: 16px;
    }

    .card-content p {
        font-size: 12px;
    }

    .feature-badge {
        font-size: 9px;
        padding: 3px 6px;
    }

    .card-number {
        font-size: 12px;
        padding: 6px 12px;
    }
} */

/* ========== PROGRESSIVE STEPS (Legacy - Keep for reference) ========== */
.progressive-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.step-block {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.step-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(16, 185, 129, 0.05),
      transparent);
  transition: left 0.8s ease;
}

.step-block:hover::before {
  left: 100%;
}

.step-block:hover {
  transform: translateX(20px) scale(1.02);
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
  border-color: var(--success);
}

.step-geometry {
  position: relative;
  flex-shrink: 0;
}

.geo-shape {
  width: 80px;
  height: 80px;
  position: relative;
  transition: all 0.4s ease;
}

.geo-shape.triangle {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid var(--success);
  filter: drop-shadow(0 8px 20px rgba(16, 185, 129, 0.3));
}

.geo-shape.square {
  width: 70px;
  height: 70px;
  background: var(--success);
  transform: rotate(45deg);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.geo-shape.circle {
  width: 70px;
  height: 70px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.step-block:hover .geo-shape {
  transform: scale(1.1) rotate(10deg);
  filter: brightness(1.1) drop-shadow(0 12px 30px rgba(16, 185, 129, 0.4));
}

.step-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  z-index: 2;
}

.step-details {
  flex: 1;
}

.step-details h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-details p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-progress {
  width: 100%;
  height: 6px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--success) 0%, #10b981 100%);
  border-radius: 3px;
  transition: width 1.5s ease-out;
  position: relative;
}

.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  animation: progressShine 2s ease-in-out infinite;
}

.step-block:hover .progress-bar {
  width: 100%;
}

@keyframes progressShine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* ========== PROCESS TIMELINE ========== */
.process-timeline {
  margin-top: 60px;
  position: relative;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  opacity: 0;
  animation: timelineFadeIn 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 40px;
  width: 2px;
  height: calc(100% + 20px);
  background: linear-gradient(180deg,
      var(--primary) 0%,
      rgba(245, 158, 11, 0.2) 100%);
  z-index: 0;
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.marker-core {
  width: 30px;
  height: 30px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
  animation: markerPulse 2s ease-in-out infinite;
}

.marker-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  animation: ringExpand 3s ease-in-out infinite;
}

.process-content {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.process-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(245, 158, 11, 0.05),
      transparent);
  transition: left 0.6s ease;
}

.process-content:hover::before {
  left: 100%;
}

.process-content:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
  border-color: var(--primary);
}

.process-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
  animation: iconFloat 3s ease-in-out infinite;
}

.process-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.process-content p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.tech-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.1) 0%,
      rgba(245, 158, 11, 0.05) 100%);
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(245, 158, 11, 0.2);
  transition: all 0.3s ease;
}

.pill:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

@keyframes timelineFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes markerPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes ringExpand {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.1;
  }
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* ========== METHODOLOGY CARDS ENHANCEMENTS ========== */
.methodology-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.methodology-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(245, 158, 11, 0.1),
      transparent);
  transition: left 0.6s ease;
}

.methodology-card:hover::before {
  left: 100%;
}

.methodology-card:hover {
  transform: translateY(-10px) scale(1.03) !important;
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.25) !important;
  border-color: var(--primary) !important;
}

.methodology-card:hover .card-icon {
  transform: scale(1.2) rotate(10deg) !important;
  filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.4)) !important;
}

/* ========== CAPABILITY CARDS ENHANCEMENTS ========== */
.capability-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.capability-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(139, 92, 246, 0.1),
      transparent);
  transition: left 0.6s ease;
}

.capability-card:hover::before {
  left: 100%;
}

.capability-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2) !important;
  border-color: var(--secondary) !important;
}

.capability-card:hover .capability-icon {
  transform: scale(1.3) rotate(15deg) !important;
  filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4)) !important;
}

/* ========== STEP CARDS ENHANCEMENTS ========== */
.step-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(16, 185, 129, 0.1),
      transparent);
  transition: left 0.6s ease;
}

.step-card:hover::before {
  left: 100%;
}

.step-card:hover {
  transform: translateY(-6px) scale(1.02) !important;
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.2) !important;
  border-color: var(--success) !important;
}

.step-card:hover .step-number {
  background: var(--success) !important;
  transform: scale(1.1) rotate(5deg) !important;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4) !important;
}

/* @media (max-width: 480px) {
    .hero {
        min-height: 65vh !important;
        padding: 30px 0 !important;
    }

    .hero-ai-visual {
        width: 100px !important;
        height: 100px !important;
    }

    .ai-brain-animation {
        width: 100px !important;
        height: 100px !important;
    }

    .brain-core {
        width: 50px !important;
        height: 50px !important;
    }

    .binary-rain {
        width: 200px !important;
        height: 200px !important;
    }

    .hero-title {
        font-size: 24px !important;
    }

    .hero-subtitle {
        font-size: 14px !important;
    }

    .hero-stats .stat-icon-wrapper {
        width: 40px !important;
        height: 40px !important;
    }

    .hero-stats .stat-number {
        font-size: 20px !important;
    }

    .hero-stats .stat-label {
        font-size: 11px !important;
    }
} */

/* ========== TABLET OPTIMIZATIONS ========== */
@media (max-width: 992px) and (min-width: 769px) {
  .hero {
    min-height: 75vh !important;
  }

  .hero-ai-visual {
    right: 5% !important;
    transform: translateY(-50%) scale(0.8) !important;
  }

  .hero-title {
    font-size: 48px !important;
    margin-bottom: 24px !important;
  }

  .hero-subtitle {
    font-size: 18px !important;
    margin-bottom: 36px !important;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
    max-width: 600px !important;
  }

  .hero-stats .stat-item {
    padding: 20px 16px !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
  }

  .hero-stats .stat-icon-wrapper {
    width: 55px !important;
    height: 55px !important;
  }

  .hero-stats .stat-number {
    font-size: 26px !important;
  }

  .hero-stats .stat-label {
    font-size: 13px !important;
  }
}

/* ========== ENHANCED TOUCH INTERACTIONS ========== */
@media (hover: none) and (pointer: coarse) {

  .stat-item:hover,
  .logo-item:hover,
  .challenge-item:hover,
  .methodology-card:hover,
  .capability-card:hover,
  .step-card:hover {
    transform: none !important;
  }

  .stat-item:active,
  .logo-item:active,
  .challenge-item:active,
  .methodology-card:active,
  .capability-card:active,
  .step-card:active {
    transform: scale(0.98) !important;
    transition: transform 0.1s ease !important;
  }
}

/* ========== UNIQUE TIMELINE DESIGN ========== */
.engagement-timeline {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.timeline-path {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  transform: translateY(-50%);
  z-index: 1;
}

.path-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      var(--primary) 0%,
      var(--secondary) 50%,
      var(--success) 100%);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.path-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  animation: pathFlow 3s ease-in-out infinite;
}

@keyframes pathFlow {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.path-glow {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 20px;
  transform: translateY(-50%);
  background: linear-gradient(90deg,
      rgba(245, 158, 11, 0.2) 0%,
      rgba(139, 92, 246, 0.2) 50%,
      rgba(16, 185, 129, 0.2) 100%);
  filter: blur(10px);
  border-radius: 10px;
}

.timeline-steps {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-step:hover {
  transform: translateY(-10px);
}

.step-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.connector-dot {
  width: 20px;
  height: 20px;
  background: var(--dark);
  border: 4px solid var(--primary);
  border-radius: 50%;
  position: relative;
  z-index: 4;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.timeline-step:nth-child(2) .connector-dot {
  border-color: var(--secondary);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.timeline-step:nth-child(3) .connector-dot {
  border-color: var(--success);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.timeline-step:hover .connector-dot {
  transform: scale(1.3);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.8);
}

.timeline-step:nth-child(2):hover .connector-dot {
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
}

.timeline-step:nth-child(3):hover .connector-dot {
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-top: 0px;
}

.step-hexagon {
  width: 120px;
  height: 120px;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hex-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, #1a2639 100%);
  position: relative;
  clip-path: polygon(30% 0%,
      70% 0%,
      100% 30%,
      100% 70%,
      70% 100%,
      30% 100%,
      0% 70%,
      0% 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--primary);
  transition: all 0.4s ease;
  overflow: hidden;
}

.timeline-step:nth-child(2) .hex-inner {
  border-color: var(--secondary);
}

.timeline-step:nth-child(3) .hex-inner {
  border-color: var(--success);
}

.hex-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.4s ease;
  clip-path: polygon(30% 0%,
      70% 0%,
      100% 30%,
      100% 70%,
      70% 100%,
      30% 100%,
      0% 70%,
      0% 30%);
}

.timeline-step:nth-child(2) .hex-glow {
  background: linear-gradient(135deg, var(--secondary) 0%, transparent 70%);
}

.timeline-step:nth-child(3) .hex-glow {
  background: linear-gradient(135deg, var(--success) 0%, transparent 70%);
}

.timeline-step:hover .hex-glow {
  opacity: 0.3;
}

.timeline-step:hover .hex-inner {
  transform: rotate(15deg) scale(1.1);
  border-color: var(--primary-light);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
}

.timeline-step:nth-child(2):hover .hex-inner {
  border-color: var(--secondary);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.timeline-step:nth-child(3):hover .hex-inner {
  border-color: var(--success);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

.step-number {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  left: 22px !important;
  top: 47px !important;
}

.timeline-step:nth-child(2) .step-number {
  color: var(--secondary) !important;
}

.timeline-step:nth-child(3) .step-number {
  color: var(--success) !important;
}

.step-info {
  max-width: 280px;
}

.step-info h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  margin-bottom: 12px !important;
  line-height: 1.3 !important;
}

.step-info p {
  font-size: 14px !important;
  color: var(--gray-600) !important;
  line-height: 1.6 !important;
  margin-bottom: 16px !important;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.feature-tag {
  background: rgba(245, 158, 11, 0.1) !important;
  color: var(--primary) !important;
  padding: 4px 12px !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  border: 1px solid rgba(245, 158, 11, 0.2) !important;
  transition: all 0.3s ease !important;
}

.timeline-step:nth-child(2) .feature-tag {
  background: rgba(139, 92, 246, 0.1) !important;
  color: var(--secondary) !important;
  border-color: rgba(139, 92, 246, 0.2) !important;
}

.timeline-step:nth-child(3) .feature-tag {
  background: rgba(16, 185, 129, 0.1) !important;
  color: var(--success) !important;
  border-color: rgba(16, 185, 129, 0.2) !important;
}

.feature-tag:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* @media (max-width: 480px) {
    .step-hexagon {
        width: 80px;
        height: 80px;
    }

    .step-number {
        font-size: 24px !important;
    }

    .step-info h3 {
        font-size: 15px !important;
    }

    .step-info p {
        font-size: 12px !important;
    }

    .feature-tag {
        font-size: 10px !important;
        padding: 3px 8px !important;
    }
} */

/* ========== INNOVATIVE ORBITAL DESIGN ========== */
.engagement-orbital {
  position: relative;
  height: 600px;
  margin: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbital-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.center-core {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg,
      var(--dark) 0%,
      #1a2639 50%,
      var(--primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.5);
  animation: coreRotate 20s linear infinite;
}

.core-icon {
  font-size: 40px;
  z-index: 2;
  position: relative;
  animation: iconFloat 3s ease-in-out infinite;
}

.core-pulse {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  animation: corePulse 2s ease-in-out infinite;
}

@keyframes coreRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes corePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.orbit-ring {
  position: absolute;
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  animation: orbitRotate 30s linear infinite;
}

.orbit-1 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(245, 158, 11, 0.4);
}

.orbit-2 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(139, 92, 246, 0.4);
  animation-duration: 40s;
  animation-direction: reverse;
}

.orbit-3 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(16, 185, 129, 0.4);
  animation-duration: 50s;
}

@keyframes orbitRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.orbit-node {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--dark) 0%, #1a2639 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.node-1 {
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  border-color: var(--primary);
}

.node-2 {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  border-color: var(--secondary);
}

.node-3 {
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  border-color: var(--success);
}

.orbit-node:hover {
  transform: scale(1.2) translateX(-50%);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.4);
  border-color: var(--primary-light);
}

.node-2:hover {
  transform: scale(1.2) translateY(-50%);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
  border-color: var(--secondary);
}

.node-3:hover {
  transform: scale(1.2) translateX(-50%);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
  border-color: var(--success);
}

.node-content {
  text-align: center;
  z-index: 2;
  position: relative;
}

.node-number {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.node-2 .node-number {
  color: var(--secondary) !important;
}

.node-3 .node-number {
  color: var(--success) !important;
}

.node-icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.node-title {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 2px;
}

.node-desc {
  font-size: 10px !important;
  color: var(--gray-400) !important;
  line-height: 1.2;
}

.node-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

.node-2 .node-glow {
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
}

.node-3 .node-glow {
  background: radial-gradient(circle, var(--success) 0%, transparent 70%);
}

.orbit-node:hover .node-glow {
  opacity: 0.6;
  transform: scale(1.2);
}

/* AI Intelligence Theme - Advanced Animations */
.ai-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle,
      rgba(245, 158, 11, 1) 0%,
      rgba(245, 158, 11, 0) 70%);
  border-radius: 50%;
  opacity: 0;
  animation: aiParticleFloat 4s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.particle-1 {
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}

.particle-2 {
  top: 25%;
  right: 25%;
  animation-delay: 0.8s;
}

.particle-3 {
  bottom: 30%;
  left: 30%;
  animation-delay: 1.6s;
}

.particle-4 {
  bottom: 20%;
  right: 15%;
  animation-delay: 2.4s;
}

@keyframes aiParticleFloat {

  0%,
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.3);
    filter: blur(2px);
  }

  25% {
    opacity: 0.4;
    transform: translate(20px, -15px) scale(1.2);
    filter: blur(1px);
  }

  50% {
    opacity: 1;
    transform: translate(35px, -25px) scale(1.5);
    filter: blur(0px);
  }

  75% {
    opacity: 0.6;
    transform: translate(15px, -10px) scale(1);
    filter: blur(0.5px);
  }
}

.neural-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.neural-line {
  position: absolute;
  width: 2px;
  background: linear-gradient(180deg,
      transparent,
      rgba(245, 158, 11, 0.8),
      transparent);
  opacity: 0;
  animation: neuralConnection 3s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.4);
}

.line-1 {
  top: 45%;
  left: 15%;
  height: 35%;
  transform: rotate(25deg);
  animation-delay: 0s;
}

.line-2 {
  top: 25%;
  right: 20%;
  height: 40%;
  transform: rotate(-35deg);
  animation-delay: 1s;
}

.line-3 {
  bottom: 35%;
  left: 25%;
  height: 30%;
  transform: rotate(15deg);
  animation-delay: 2s;
}

@keyframes neuralConnection {

  0%,
  100% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.2) scaleY(1.2);
  }
}

/* AI Brain Pulse Effect */
.ai-brain-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  opacity: 0;
  animation: brainPulse 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes brainPulse {

  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }

  50% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

/* Data Flow Animation */
.data-flow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.data-node {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(245, 158, 11, 0.8);
  border-radius: 50%;
  opacity: 0;
  animation: dataNodePulse 2.5s ease-in-out infinite;
}

.data-node:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.data-node:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 0.5s;
}

.data-node:nth-child(3) {
  bottom: 25%;
  left: 40%;
  animation-delay: 1s;
}

.data-node:nth-child(4) {
  bottom: 40%;
  right: 30%;
  animation-delay: 1.5s;
}

@keyframes dataNodePulse {

  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.3);
  }
}

/* Floating Particles */
.orbital-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.6;
}

.particle-1 {
  top: 20%;
  left: 15%;
  animation: particleFloat 8s ease-in-out infinite;
}

.particle-2 {
  top: 30%;
  right: 20%;
  animation: particleFloat 10s ease-in-out infinite 2s;
}

.particle-3 {
  bottom: 25%;
  left: 25%;
  animation: particleFloat 12s ease-in-out infinite 4s;
}

.particle-4 {
  bottom: 35%;
  right: 15%;
  animation: particleFloat 9s ease-in-out infinite 1s;
}

.particle-5 {
  top: 60%;
  left: 10%;
  animation: particleFloat 11s ease-in-out infinite 3s;
}

.particle-6 {
  top: 70%;
  right: 25%;
  animation: particleFloat 7s ease-in-out infinite 5s;
}

@keyframes particleFloat {

  0%,
  100% {
    transform: translate(0px, 0px) scale(1);
    opacity: 0.6;
  }

  25% {
    transform: translate(30px, -20px) scale(1.2);
    opacity: 1;
  }

  50% {
    transform: translate(-20px, 30px) scale(0.8);
    opacity: 0.4;
  }

  75% {
    transform: translate(40px, 10px) scale(1.1);
    opacity: 0.8;
  }
}

/* Connection Lines */
.connection-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  pointer-events: none;
  z-index: 1;
}

.connection-line {
  stroke-dasharray: 5, 5;
  animation: dashFlow 20s linear infinite;
  opacity: 0.6;
}

@keyframes dashFlow {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: 100;
  }
}

/* Detail Cards */
.engagement-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
}

.detail-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(245, 158, 11, 0.1),
      transparent);
  transition: left 0.6s ease;
}

.detail-card:hover::before {
  left: 100%;
}

.detail-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.detail-2:hover {
  border-color: var(--secondary);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.detail-3:hover {
  border-color: var(--success);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.detail-badge {
  background: var(--primary);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-2 .detail-badge {
  background: var(--secondary);
}

.detail-3 .detail-badge {
  background: var(--success);
}

.detail-header h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

.detail-card p {
  font-size: 14px !important;
  color: var(--gray-600) !important;
  line-height: 1.6 !important;
  margin-bottom: 20px !important;
}

.detail-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.feature-item i {
  color: var(--primary);
  font-size: 14px;
  width: 20px;
  text-align: center;
}

.detail-2 .feature-item i {
  color: var(--secondary);
}

.detail-3 .feature-item i {
  color: var(--success);
}

.feature-item span {
  font-size: 11px !important;
  color: var(--primary-dark) !important;
  font-weight: 600 !important;
}

.feature-item:hover {
  transform: translateX(5px);
}

.feature-item:hover i {
  transform: scale(1.2);
}

/* @media (max-width: 480px) {
    .engagement-orbital {
        height: 350px;
    }

    .center-core {
        width: 70px;
        height: 70px;
    }

    .core-icon {
        font-size: 25px;
    }

    .orbit-node {
        width: 50px;
        height: 50px;
    }

    .node-number {
        font-size: 16px !important;
    }

    .detail-card {
        padding: 16px;
    }

    .detail-header h3 {
        font-size: 15px !important;
    }
} */

/* ========== MODERN HEIZEN-INSPIRED DESIGN ========== */
.engagement-modern {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 24px;
  overflow: hidden;
}

.progress-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.progress-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg,
      var(--primary) 0%,
      var(--secondary) 50%,
      var(--success) 100%);
  border-radius: 2px;
  opacity: 0.3;
}

.modern-step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modern-step:hover {
  transform: translateX(10px);
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}

.step-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gray-300);
  border: 3px solid var(--gray-300);
  transition: all 0.3s ease;
  position: relative;
}

.step-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.step-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.step-dot.active::after {
  opacity: 1;
}

.step-connector {
  width: 4px;
  height: 40px;
  background: var(--gray-300);
  transition: all 0.3s ease;
}

.step-content-modern {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.step-content-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(245, 158, 11, 0.05),
      transparent);
  transition: left 0.6s ease;
}

.modern-step:hover .step-content-modern::before {
  left: 100%;
}

.modern-step:hover .step-content-modern {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.15);
  border-color: var(--primary);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.step-number-modern {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  background: rgba(245, 158, 11, 0.1);
  padding: 8px 16px;
  border-radius: 12px;
  min-width: 60px;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.step-header h3 {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

.step-description {
  font-size: 15px !important;
  color: var(--gray-600) !important;
  line-height: 1.6 !important;
  margin-bottom: 24px !important;
}

.step-features-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 20px;
  padding: 8px 16px;
  transition: all 0.3s ease;
}

.feature-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.feature-pill i {
  color: var(--primary) !important;
  font-size: 14px !important;
  transition: all 0.3s ease;
}

.feature-pill span {
  font-size: 13px !important;
  color: var(--gray-700) !important;
  font-weight: 500 !important;
}

.feature-pill:hover i {
  color: #fff !important;
  transform: scale(1.1);
}

.feature-pill:hover span {
  color: #fff !important;
}

/* Progress Visual */
.progress-visual {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.progress-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      var(--primary),
      var(--secondary),
      var(--success),
      var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  animation: progressRotate 20s linear infinite;
}

.progress-fill {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.progress-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: conic-gradient(from 0deg,
      var(--primary),
      var(--secondary),
      var(--success),
      var(--primary));
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.6;
  animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes progressPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.progress-text {
  text-align: center;
}

.progress-label {
  font-size: 12px !important;
  color: var(--gray-500) !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.progress-percentage {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  font-family: "JetBrains Mono", monospace;
  text-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

/* @media (max-width: 480px) {
    .engagement-modern {
        padding: 40px 0;
    }

    .modern-step {
        gap: 20px;
    }

    .step-content-modern {
        padding: 20px;
    }

    .step-header h3 {
        font-size: 16px !important;
    }

    .step-description {
        font-size: 13px !important;
    }

    .feature-pill {
        padding: 4px 8px;
    }

    .progress-circle {
        width: 50px;
        height: 50px;
    }

    .progress-fill {
        width: 35px;
        height: 35px;
    }

    .progress-percentage {
        font-size: 20px !important;
    }
} */

/* Architecture Features */
.arch-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.2) !important;
}

.feature-icon {
  font-size: 40px !important;
  margin-bottom: 16px !important;
  display: block !important;
  animation: iconFloat 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon {
  animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
  animation-delay: 1s;
}

.feature-card:nth-child(4) .feature-icon {
  animation-delay: 1.5s;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.feature-card h4 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 12px !important;
}

.feature-card p {
  font-size: 13px !important;
  color: #94a3b8 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Responsive Design */
@media (max-width: 992px) {
  .architecture-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .arch-layers {
    gap: 16px;
  }

  .arch-layer {
    padding: 20px !important;
    gap: 16px !important;
  }

  .layer-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 24px !important;
  }

  .layer-content h4 {
    font-size: 16px !important;
  }

  .layer-content p {
    font-size: 13px !important;
  }

  .tech-tag {
    font-size: 10px !important;
    padding: 3px 6px !important;
  }
}

/* ========== AI ARCHITECTURE VISUALS ========== */
.ai-architecture-visual {
  margin: 60px 0;
  text-align: center;
}

.ai-diagram-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.ai-layer-diagram {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.ai-arch-layer {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  padding: 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.4s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.ai-arch-layer:hover {
  transform: translateX(10px) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2) !important;
}

.layer-visual {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-icon {
  font-size: 32px !important;
  z-index: 2;
  position: relative;
}

.layer-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.node-pulse {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary) !important;
  border-radius: 50% !important;
  animation: nodePulse 2s ease-in-out infinite;
}

.node-pulse:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.node-pulse:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 0.5s;
}

.node-pulse:nth-child(3) {
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1s;
}

.neural-connections {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.connection-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--info)) !important;
  animation: connectionPulse 3s ease-in-out infinite;
}

.connection-line:nth-child(1) {
  top: 30%;
  width: 60%;
  left: 20%;
  animation-delay: 0s;
}

.connection-line:nth-child(2) {
  top: 50%;
  width: 80%;
  left: 10%;
  animation-delay: 1s;
}

.connection-line:nth-child(3) {
  top: 70%;
  width: 50%;
  left: 25%;
  animation-delay: 2s;
}

.data-flow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.data-stream {
  position: absolute;
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, var(--info), var(--primary)) !important;
  border-radius: 2px !important;
  animation: dataStreamFlow 2s ease-in-out infinite;
}

.data-stream:nth-child(1) {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.data-stream:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.5s;
}

.infra-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.grid-node {
  width: 8px;
  height: 8px;
  background: var(--info) !important;
  border-radius: 2px !important;
  animation: gridPulse 2s ease-in-out infinite;
}

.grid-node:nth-child(2) {
  animation-delay: 0.3s;
}

.grid-node:nth-child(3) {
  animation-delay: 0.6s;
}

.security-shield {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.shield-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--primary);
  border-radius: 50%;
  animation: shieldExpand 3s ease-in-out infinite;
}

.shield-ring:nth-child(1) {
  width: 60px;
  height: 60px;
  animation-delay: 0s;
}

.shield-ring:nth-child(2) {
  width: 40px;
  height: 40px;
  animation-delay: 1s;
}

.shield-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--primary) !important;
  border-radius: 50%;
  animation: shieldPulse 2s ease-in-out infinite;
}

/* Card Visuals */
.card-visual {
  margin: 20px 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cloud-architecture {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.cloud-layer {
  width: 60px;
  height: 12px;
  background: linear-gradient(90deg, var(--info), var(--primary)) !important;
  border-radius: 20px !important;
  animation: cloudFloat 4s ease-in-out infinite;
}

.cloud-layer:nth-child(2) {
  width: 50px;
  animation-delay: 0.5s;
}

.cloud-layer:nth-child(3) {
  width: 40px;
  animation-delay: 1s;
}

.security-visual {
  position: relative;
  width: 60px;
  height: 60px;
}

.security-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--primary);
  border-radius: 50%;
  animation: securityRotate 4s linear infinite;
}

.security-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--primary) !important;
  border-radius: 50%;
}

.security-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--info) !important;
  border-radius: 50% !important;
  animation: particleOrbit 3s linear infinite;
}

.particle:nth-child(1) {
  top: 10%;
  left: 50%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 50%;
  right: 10%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  bottom: 10%;
  left: 50%;
  animation-delay: 2s;
}

.data-pipeline {
  position: relative;
  width: 80px;
  height: 40px;
}

.pipeline-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.flow-node {
  width: 12px;
  height: 12px;
  background: var(--primary) !important;
  border-radius: 50% !important;
  animation: flowNodePulse 2s ease-in-out infinite;
}

.flow-node:nth-child(2) {
  animation-delay: 0.5s;
}

.flow-node:nth-child(3) {
  animation-delay: 1s;
}

.pilot-visual {
  position: relative;
  width: 40px;
  height: 60px;
}

.test-tube {
  width: 20px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid var(--primary);
  border-radius: 10px 10px 20px 20px;
  position: relative;
  overflow: hidden;
}

.test-liquid {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, var(--primary), var(--info)) !important;
  animation: liquidFill 3s ease-in-out infinite;
}

.test-bubble {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8) !important;
  border-radius: 50% !important;
  animation: bubbleRise 2s ease-in-out infinite;
}

.test-bubble:nth-child(2) {
  left: 60%;
  animation-delay: 0.5s;
}

.metrics-visual {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 40px;
}

.chart-bars {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 40px;
}

.bar {
  width: 12px;
  background: linear-gradient(180deg, var(--primary), var(--info)) !important;
  border-radius: 2px !important;
  animation: barGrow 2s ease-in-out infinite;
}

.bar:nth-child(1) {
  height: 20px;
  animation-delay: 0s;
}

.bar:nth-child(2) {
  height: 30px;
  animation-delay: 0.3s;
}

.bar:nth-child(3) {
  height: 25px;
  animation-delay: 0.6s;
}

.bar:nth-child(4) {
  height: 35px;
  animation-delay: 0.9s;
}

/* Capability Visuals */
.capability-visual {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}

.decision-intelligence {
  position: relative;
  width: 100px;
  height: 100px;
}

.brain-network {
  position: relative;
  width: 100%;
  height: 100%;
}

.neural-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--primary) !important;
  border-radius: 50%;
  animation: neuralCenterPulse 2s ease-in-out infinite;
}

.neural-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--info);
  border-radius: 50%;
  animation: neuralRingExpand 3s ease-in-out infinite;
}

.neural-ring:nth-child(1) {
  width: 40px;
  height: 40px;
  animation-delay: 0s;
}

.neural-ring:nth-child(2) {
  width: 60px;
  height: 60px;
  animation-delay: 1s;
}

.data-points {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.data-point {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--success) !important;
  border-radius: 50% !important;
  animation: dataPointOrbit 4s linear infinite;
}

.data-point:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.data-point:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 1s;
}

.data-point:nth-child(3) {
  bottom: 30%;
  left: 10%;
  animation-delay: 2s;
}

.data-point:nth-child(4) {
  bottom: 30%;
  right: 10%;
  animation-delay: 3s;
}

.legal-ai {
  position: relative;
  width: 100px;
  height: 100px;
}

.law-scale {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
}

.scale-left,
.scale-right {
  position: absolute;
  width: 25px;
  height: 4px;
  background: var(--primary) !important;
  top: 50%;
  transform-origin: center;
}

.scale-left {
  left: 0;
  transform: rotate(-20deg);
  animation: scaleLeft 3s ease-in-out infinite;
}

.scale-right {
  right: 0;
  transform: rotate(20deg);
  animation: scaleRight 3s ease-in-out infinite;
}

.scale-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--info) !important;
  border-radius: 50% !important;
}

.compliance-rings {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.compliance-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--success);
  border-radius: 50%;
  animation: complianceRingExpand 4s ease-in-out infinite;
}

.compliance-ring:nth-child(1) {
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.compliance-ring:nth-child(2) {
  width: 90px;
  height: 90px;
  animation-delay: 1.3s;
}

.compliance-ring:nth-child(3) {
  width: 100px;
  height: 100px;
  animation-delay: 2.6s;
}

.infrastructure-ai {
  position: relative;
  width: 120px;
  height: 80px;
}

.city-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.grid-node {
  width: 8px;
  height: 8px;
  background: var(--primary) !important;
  border-radius: 2px !important;
  animation: cityGridPulse 2s ease-in-out infinite;
}

.grid-node:nth-child(2) {
  animation-delay: 0.2s;
}

.grid-node:nth-child(4) {
  animation-delay: 0.4s;
}

.grid-node:nth-child(6) {
  animation-delay: 0.6s;
}

.spatial-network {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.network-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      var(--info),
      transparent) !important;
  animation: networkFlow 3s ease-in-out infinite;
}

.network-line:nth-child(1) {
  top: 30%;
  width: 80%;
  left: 10%;
  animation-delay: 0s;
}

.network-line:nth-child(2) {
  top: 50%;
  width: 60%;
  left: 20%;
  animation-delay: 1s;
}

.network-line:nth-child(3) {
  top: 70%;
  width: 70%;
  left: 15%;
  animation-delay: 2s;
}

/* Step Visuals */
.step-visual {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}

.assessment-ai {
  position: relative;
  width: 80px;
  height: 80px;
}

.scan-circle {
  position: relative;
  width: 60px;
  height: 60px;
}

.scan-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--primary);
  border-radius: 50%;
  animation: scanRingExpand 2s ease-in-out infinite;
}

.scan-ring:nth-child(2) {
  animation-delay: 0.5s;
}

.scan-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--primary) !important;
  border-radius: 50%;
  animation: scanPulse 1s ease-in-out infinite;
}

.assessment-points {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.point {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--info) !important;
  border-radius: 50% !important;
  animation: assessmentScan 3s linear infinite;
}

.point:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.point:nth-child(2) {
  top: 30%;
  right: 15%;
  animation-delay: 0.75s;
}

.point:nth-child(3) {
  bottom: 30%;
  left: 25%;
  animation-delay: 1.5s;
}

.point:nth-child(4) {
  bottom: 10%;
  right: 20%;
  animation-delay: 2.25s;
}

.pilot-ai {
  position: relative;
  width: 60px;
  height: 80px;
}

.pilot-results {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}

.result-bar {
  width: 8px;
  height: 20px;
  background: linear-gradient(180deg,
      var(--success),
      var(--primary)) !important;
  border-radius: 2px !important;
  animation: resultBarGrow 2s ease-in-out infinite;
}

.result-bar:nth-child(2) {
  height: 25px;
  animation-delay: 0.3s;
}

.result-bar:nth-child(3) {
  height: 15px;
  animation-delay: 0.6s;
}

.deployment-ai {
  position: relative;
  width: 80px;
  height: 80px;
}

.deployment-globe {
  position: relative;
  width: 60px;
  height: 60px;
}

.globe-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--primary) !important;
  border-radius: 50%;
  animation: globePulse 2s ease-in-out infinite;
}

.globe-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--info);
  border-radius: 50%;
  animation: globeRingExpand 3s ease-in-out infinite;
}

.globe-ring:nth-child(2) {
  animation-delay: 1s;
}

.deployment-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.deploy-node {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--success) !important;
  border-radius: 50% !important;
  animation: deployNodeOrbit 4s linear infinite;
}

.deploy-node:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.deploy-node:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 1s;
}

.deploy-node:nth-child(3) {
  bottom: 20%;
  left: 30%;
  animation-delay: 2s;
}

.deploy-node:nth-child(4) {
  bottom: 20%;
  right: 30%;
  animation-delay: 3s;
}

/* Feature Tags */
.tech-features,
.step-features {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 12px;
}

.feature-tag,
.step-tag {
  background: rgba(59, 130, 246, 0.1) !important;
  color: var(--info) !important;
  padding: 4px 8px !important;
  border-radius: 12px !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  border: 1px solid rgba(59, 130, 246, 0.2) !important;
  font-family: "JetBrains Mono", monospace !important;
  transition: all 0.3s ease !important;
}

.feature-tag:hover,
.step-tag:hover {
  background: rgba(59, 130, 246, 0.2) !important;
  transform: scale(1.05) !important;
}

/* Animations */
@keyframes nodePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

@keyframes connectionPulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

@keyframes dataStreamFlow {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }

  50% {
    transform: translateY(0px);
    opacity: 1;
  }

  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

@keyframes gridPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes shieldExpand {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

@keyframes shieldPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes cloudFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes securityRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes particleOrbit {
  0% {
    transform: rotate(0deg) translateX(30px);
  }

  100% {
    transform: rotate(360deg) translateX(30px);
  }
}

@keyframes flowNodePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

@keyframes liquidFill {

  0%,
  100% {
    height: 60%;
  }

  50% {
    height: 80%;
  }
}

@keyframes bubbleRise {
  0% {
    transform: translateY(0px);
    opacity: 0;
  }

  50% {
    transform: translateY(-20px);
    opacity: 1;
  }

  100% {
    transform: translateY(-40px);
    opacity: 0;
  }
}

@keyframes barGrow {

  0%,
  100% {
    height: var(--bar-height, 20px);
  }

  50% {
    height: calc(var(--bar-height, 20px) + 10px);
  }
}

@keyframes neuralCenterPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
  }
}

@keyframes neuralRingExpand {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

@keyframes dataPointOrbit {
  0% {
    transform: rotate(0deg) translateX(40px);
  }

  100% {
    transform: rotate(360deg) translateX(40px);
  }
}

@keyframes scaleLeft {

  0%,
  100% {
    transform: rotate(-20deg);
  }

  50% {
    transform: rotate(-30deg);
  }
}

@keyframes scaleRight {

  0%,
  100% {
    transform: rotate(20deg);
  }

  50% {
    transform: rotate(30deg);
  }
}

@keyframes complianceRingExpand {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.8;
  }
}

@keyframes cityGridPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes networkFlow {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  50% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes scanRingExpand {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
}

@keyframes scanPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes assessmentScan {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  10% {
    transform: scale(1);
    opacity: 1;
  }

  90% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0);
    opacity: 0;
  }
}

@keyframes resultBarGrow {

  0%,
  100% {
    height: var(--bar-height, 20px);
  }

  50% {
    height: calc(var(--bar-height, 20px) + 5px);
  }
}

@keyframes globePulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes globeRingExpand {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

@keyframes deployNodeOrbit {
  0% {
    transform: rotate(0deg) translateX(35px);
  }

  100% {
    transform: rotate(360deg) translateX(35px);
  }
}

/* ========== AI IMAGES STYLING ========== */
.ai-architecture-image {
  position: relative;
  margin: 40px 0;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.architecture-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px !important;
  transition: transform 0.6s ease !important;
}

.ai-architecture-image:hover .architecture-img {
  transform: scale(1.05) !important;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9),
      transparent) !important;
  padding: 40px 30px 30px;
  border-radius: 0 0 16px 16px;
}

.overlay-content h4 {
  color: var(--primary) !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
}

/* Card Images */
.card-image {
  margin-bottom: 20px;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.methodology-card {
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.capability-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px !important;
  transition: transform 0.4s ease !important;
}

.capability-card:hover .capability-img {
  transform: scale(1.1) !important;
}

/* Step Images */
.step-image {
  margin-bottom: 20px;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.step-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px !important;
  transition: transform 0.4s ease !important;
}

.step-card:hover .step-img {
  transform: scale(1.1) !important;
}

/* @media (max-width: 480px) {
    .architecture-img {
        height: 200px !important;
    }

    .methodology-img {
        height: 120px !important;
    }

    .capability-img {
        height: 150px !important;
    }

    .step-img {
        height: 150px !important;
    }

    .overlay-content h4 {
        font-size: 18px !important;
    }

    .overlay-content p {
        font-size: 13px !important;
    }

    .image-overlay {
        padding: 25px 15px 15px !important;
    }
} */

/* ========== PROFESSIONAL UI ENHANCEMENTS ========== */
.hero {
  position: relative;
  /* min-height: 60vh !important; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: 70px;
  overflow: hidden;
  background: linear-gradient(135deg,
      #0f172a 0%,
      #1e293b 25%,
      #334155 50%,
      #1e293b 75%,
      #0f172a 100%) !important;
  animation: heroBackgroundShift 10s ease-in-out infinite !important;
}

@keyframes heroBackgroundShift {

  0%,
  100% {
    background: linear-gradient(135deg,
        #0f172a 0%,
        #1e293b 25%,
        #334155 50%,
        #1e293b 75%,
        #0f172a 100%) !important;
  }

  50% {
    background: linear-gradient(135deg,
        #1e293b 0%,
        #334155 25%,
        #475569 50%,
        #334155 75%,
        #1e293b 100%) !important;
  }
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.25) 0%,
      rgba(245, 158, 11, 0.15) 100%) !important;
  border: 2px solid rgba(245, 158, 11, 0.6) !important;
  color: var(--primary-light) !important;
  padding: 8px 20px !important;
  border-radius: 30px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  margin-top: 1rem;
  margin-bottom: 20px !important;
  text-transform: uppercase !important;
  box-shadow:
    0 8px 25px rgba(245, 158, 11, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  animation: badgeFloat 4s ease-in-out infinite !important;
  backdrop-filter: blur(15px) !important;
  transition: all 0.3s ease !important;
}

.hero-badge:hover {
  transform: translateY(-2px) !important;
  box-shadow:
    0 12px 35px rgba(245, 158, 11, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  border-color: var(--primary) !important;
}

.hero-title {
  font-size: 56px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  background: linear-gradient(135deg,
      #fff 0%,
      #f0f9ff 20%,
      var(--primary-light) 50%,
      #fef3c7 80%,
      #fff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 20px !important;
  letter-spacing: -1px !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  animation: titleGlow 3s ease-in-out infinite !important;
}

@keyframes titleGlow {

  0%,
  100% {
    filter: brightness(1) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3)) !important;
  }

  50% {
    filter: brightness(1.1) drop-shadow(0 6px 25px rgba(245, 158, 11, 0.3)) !important;
  }
}

.hero-subtitle {
  font-size: 18px;
  color: #e2e8f0 !important;
  margin-bottom: 30px !important;
  line-height: 1.6 !important;
  max-width: 700px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
  animation: subtitleFade 2s ease-in-out !important;
}

/* ========== UNIQUE ENTERPRISE WORK SECTION ENHANCEMENTS ========== */
.client-showcase {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.4px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  color: #000;
  box-shadow:
    0 4px 15px rgba(245, 158, 11, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px rgba(245, 158, 11, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
  transition: all 0.4s ease;
}

.btn-outline:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}

/* ========== AI HERO VISUALS ========== */
.hero-ai-visual {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 5;
  opacity: 0.8;
}

.ai-brain-animation {
  position: relative;
  width: 120px;
  height: 120px;
  animation: brainFloat 6s ease-in-out infinite;
}

.brain-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.6);
  animation: brainPulse 3s ease-in-out infinite;
}

.neural-network {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.neural-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(59, 130, 246, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
  animation: neuralPulse 2s ease-in-out infinite;
}

.neural-node:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.neural-node:nth-child(2) {
  top: 30%;
  right: 15%;
  animation-delay: 0.3s;
}

.neural-node:nth-child(3) {
  top: 60%;
  left: 5%;
  animation-delay: 0.6s;
}

.neural-node:nth-child(4) {
  top: 70%;
  right: 10%;
  animation-delay: 0.9s;
}

.neural-node:nth-child(5) {
  top: 40%;
  left: 50%;
  animation-delay: 1.2s;
}

.neural-node:nth-child(6) {
  top: 85%;
  left: 45%;
  animation-delay: 1.5s;
}

@keyframes brainFloat {

  0%,
  100% {
    transform: translateY(-50%) rotate(0deg);
  }

  50% {
    transform: translateY(-55%) rotate(5deg);
  }
}

@keyframes brainPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes neuralPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.9);
  }
}

/* ========== 2-LAYER AI DIAGRAM ========== */
.ai-two-layer-diagram {
  margin: 80px 0;
  padding: 60px 40px;
  background: linear-gradient(135deg,
      rgba(15, 23, 42, 0.05) 0%,
      rgba(59, 130, 246, 0.05) 100%);
  border-radius: 24px;
  border: 2px solid rgba(59, 130, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.ai-two-layer-diagram::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--primary),
      var(--secondary),
      var(--info));
  animation: diagramShine 3s linear infinite;
}

@keyframes diagramShine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.diagram-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 50px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.two-layer-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.layer-section {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.input-layer {
  border-color: rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, #fff 0%, rgba(59, 130, 246, 0.02) 100%);
}

.output-layer {
  border-color: rgba(16, 185, 129, 0.2);
  background: linear-gradient(135deg, #fff 0%, rgba(16, 185, 129, 0.02) 100%);
}

.layer-section:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.input-layer:hover {
  border-color: var(--info);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.output-layer:hover {
  border-color: var(--success);
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
}

.layer-header {
  text-align: center;
  margin-bottom: 30px;
}

.layer-header .layer-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  animation: iconBounce 2s ease-in-out infinite;
}

.layer-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.layer-header p {
  color: var(--gray-600);
  font-size: 14px;
  margin: 0;
}

.neural-inputs,
.neural-outputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.input-node,
.output-node {
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.1) 0%,
      rgba(59, 130, 246, 0.05) 100%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--info);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.output-node {
  background: linear-gradient(135deg,
      rgba(16, 185, 129, 0.1) 0%,
      rgba(16, 185, 129, 0.05) 100%);
  border-color: rgba(16, 185, 129, 0.2);
  color: var(--success);
}

.input-node:hover,
.output-node:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.input-node:hover {
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.2) 0%,
      rgba(59, 130, 246, 0.1) 100%);
  border-color: var(--info);
}

.output-node:hover {
  background: linear-gradient(135deg,
      rgba(16, 185, 129, 0.2) 0%,
      rgba(16, 185, 129, 0.1) 100%);
  border-color: var(--success);
}

.connection-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.data-flow-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--info), var(--success));
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.data-flow-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.8),
      transparent);
  animation: dataFlow 2s linear infinite;
}

@keyframes dataFlow {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.pulse-animation {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  margin-top: 20px;
  animation: dataPulse 2s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
}

@keyframes dataPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
  }

  50% {
    transform: scale(1.3);
    box-shadow: 0 0 50px rgba(245, 158, 11, 0.9);
  }
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  /* min-height: 60vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: 70px;
  overflow: hidden;
  background: linear-gradient(135deg,
      var(--dark) 0%,
      #1a2639 50%,
      #0f172a 100%);
}

#canvas3d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%,
      rgba(245, 158, 11, 0.15) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(59, 130, 246, 0.12) 0%,
      transparent 50%),
    radial-gradient(circle at 40% 0%,
      rgba(139, 92, 246, 0.08) 0%,
      transparent 40%),
    radial-gradient(circle at 60% 100%,
      rgba(16, 185, 129, 0.06) 0%,
      transparent 40%);
  z-index: 0;
  pointer-events: none;
  animation: heroGradient 15s ease-in-out infinite;
}

@keyframes heroGradient {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(15, 23, 42, 0.4) 0%,
      rgba(15, 23, 42, 0.7) 100%);
  z-index: 2;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(245, 158, 11, 0.6);
  border-radius: 50%;
  animation: particleFloat 20s infinite linear;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  padding: 0 24px;
  z-index: 10;
  animation: heroContentFade 1.2s ease-out;
}

@keyframes heroContentFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.2) 0%,
      rgba(245, 158, 11, 0.1) 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.5);
  color: var(--primary-light);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 32px;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
  animation: badgeFloat 4s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-4px);
  }
}

.hero h1 {
  font-size: 68px;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg,
      #fff 0%,
      #e0e7ff 30%,
      var(--primary-light) 70%,
      #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 32px;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.text-gradient {
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--secondary) 50%,
      var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: textShine 3s linear infinite;
}

@keyframes textShine {
  to {
    background-position: 200% center;
  }
}

.hero p {
  font-size: 20px;
  color: #cbd5e1;
  margin-bottom: 48px;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 60px 0;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: left;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.stat-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.1) 0%,
      rgba(245, 158, 11, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(245, 158, 11, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.stat-item:hover .stat-icon-wrapper {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3);
}

.stat-icon-wrapper i {
  font-size: 24px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon-wrapper i {
  color: #fff;
  transform: scale(1.1);
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroContentFade 1.4s ease-out;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  position: relative;
}

.scroll-arrow::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(15px);
  }
}

/* ========== SECTIONS ========== */
.section {
  padding: 120px 0;
  position: relative;
}

.section-light {
  background: #fff;
}

.section-muted {
  background: linear-gradient(180deg, var(--light) 0%, #f0f1f9 100%);
}

.section h2 {
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section p.lead {
  text-align: center;
  color: var(--gray-500);
  font-size: 18px;
  /* margin-bottom: 20px; */
  font-weight: 500;
}

/* ========== QUOTE SECTION ========== */
.quote-text {
  font-size: 28px !important;
  color: var(--gray-700) !important;
  font-weight: 500;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
  line-height: 1.8;
  letter-spacing: -0.3px;
}

/* ========== AI LAYERS SECTION ========== */
.ai-layers-section h2 {
  margin-bottom: 0;
}

.ai-layers-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-top: 80px;
}

.layer-diagram {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ai-layer {
  border-radius: 12px;
  padding: 28px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #fff 0%, #f9fafb 100%);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  animation: layerSlideIn 0.6s ease-out forwards;
  opacity: 0;
  animation-delay: calc(var(--delay) * 0.5s);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

@keyframes layerSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ai-layer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.ai-layer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.02;
  transition: width 0.3s ease;
}

.ai-layer:hover {
  transform: translateX(8px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ai-layer:hover::after {
  width: 100%;
}

.layer-app {
  border-left: 3px solid #3b82f6;
}

.layer-ai {
  border-left: 3px solid #06b6d4;
}

.layer-data {
  border-left: 3px solid #10b981;
}

.layer-infra {
  border-left: 3px solid var(--primary);
}

.layer-foundation {
  border-left: 3px solid #8b5cf6;
}

.layer-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: inline-block;
}

.layer-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.layer-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.item {
  font-size: 13px;
  color: var(--gray-600);
  padding-left: 16px;
  position: relative;
  padding-top: 2px;
}

.item::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.diagram-3d {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-architecture-svg {
  width: 100%;
  max-width: 350px;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.1));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.layer-label {
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  font-size: 14px;
  fill: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pulse-dot {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    r: 3;
    opacity: 1;
  }

  50% {
    r: 6;
    opacity: 0.3;
  }

  100% {
    r: 3;
    opacity: 1;
  }
}

/* ========== AI SHOWCASE SECTION ========== */
.ai-showcase {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.ai-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(16, 185, 129, 0.05) 0%,
      transparent 50%);
  pointer-events: none;
}

.ai-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.ai-solution-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.ai-solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--primary),
      var(--secondary),
      var(--info));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.ai-solution-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(59, 130, 246, 0.2);
}

.ai-solution-card:hover::before {
  transform: scaleX(1);
}

.ai-icon {
  font-size: 64px;
  margin-bottom: 20px;
  display: block;
  animation: aiIconFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
}

.ai-solution-card:nth-child(2) .ai-icon {
  animation-delay: 0.5s;
}

.ai-solution-card:nth-child(3) .ai-icon {
  animation-delay: 1s;
}

.ai-solution-card:nth-child(4) .ai-icon {
  animation-delay: 1.5s;
}

@keyframes aiIconFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(5deg);
  }
}

.ai-solution-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.ai-solution-card p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  min-height: 48px;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tech-tag {
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.1) 0%,
      rgba(59, 130, 246, 0.05) 100%);
  color: var(--info);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
  font-family: "JetBrains Mono", monospace;
}

.tech-tag:hover {
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.2) 0%,
      rgba(59, 130, 246, 0.1) 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

/* ========== SOLUTION HIGHLIGHT ========== */
.solution-highlight {
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  padding: 6px 0px !important;
  font-size: 16px;
  font-weight: 700 !important;
  color: #334155 !important;
  text-align: center !important;
  margin: 40px auto;
  max-width: 800px !important;
  box-shadow:
    0 8px 32px rgba(245, 158, 11, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

/* ========== CHALLENGE SECTION ========== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 80px;
}

.challenge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.challenge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  box-shadow: none;
}

.challenge-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.05) 0%,
      transparent 100%);
  transition: width 0.4s ease;
}

.challenge-item:hover {
  transform: none;
}

.challenge-item:hover::before {
  width: 0;
}

.challenge-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  transition: none;
  color: var(--primary);
}

.challenge-item:hover .challenge-icon {
  background: transparent;
  transform: none;
}

.challenge-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
}

.challenge-content p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

.feature-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  perspective: 1000px;
  height: 400px;
}

.visual-item {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 24px;
  border-radius: 16px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transform: rotateX(-8deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.visual-item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.visual-item:hover {
  transform: rotateX(0deg) rotateY(5deg) translateZ(30px) scale(1.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.visual-item:hover::before {
  opacity: 1;
  animation: visualShine 0.6s ease-out;
}

@keyframes visualShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.item-1 {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.item-2 {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.item-3 {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.item-4 {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

/* ========== AI ARCHITECTURE IMAGE STYLING ========== */
.ai-architecture-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.ai-architecture-img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* ========== METHODOLOGY SECTION ========== */
.methodology-section h2 {
  margin-bottom: 0;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.methodology-card {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.methodology-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.methodology-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-10px);
}

.methodology-card:hover::before {
  transform: scaleX(1);
}

.card-number {
  font-size: 30px;
  font-weight: 800;
  color: black;
  margin-bottom: 0;
}

.card-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.methodology-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.methodology-card p {
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.methodology-card ul {
  list-style: none;
  padding: 0;
}

.methodology-card li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: var(--gray-600);
  font-size: 13px;
}

.methodology-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* ========== FOCUS MODULES ========== */
.focus-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.focus-module {
  background: #fff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.focus-module::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.focus-module:hover::before {
  transform: scaleX(1);
}

.focus-module:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
  border-color: var(--secondary);
}

.module-header {
  padding: 32px 32px 0;
  text-align: center;
  position: relative;
}

.module-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.module-icon {
  font-size: 32px;
  display: block;
  animation: moduleIconFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.icon-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: iconPulse 2s ease-in-out infinite;
}

.module-accent {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  margin: 20px auto 0;
  border-radius: 2px;
  transform: scaleX(0.8);
  transition: transform 0.3s ease;
}

.focus-module:hover .module-accent {
  transform: scaleX(1);
}

.module-content {
  padding: 0 32px 32px;
  text-align: center;
}

.module-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.module-content p {
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

@keyframes moduleIconFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-5px) rotate(2deg);
  }
}

@keyframes iconPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
}

/* ========== ENGAGEMENT FLOW ========== */
.engagement-flow {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 60px;
  position: relative;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}

.flow-step::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 80px;
  width: 2px;
  height: calc(100% + 16px);
  background: linear-gradient(180deg,
      var(--success) 0%,
      rgba(16, 185, 129, 0.2) 100%);
  z-index: 0;
}

.flow-step:last-child::before {
  display: none;
}

.step-visual {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.step-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--success) 0%, #10b981 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-circle:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.step-text {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  z-index: 2;
  position: relative;
}

.step-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  animation: stepRipple 3s ease-in-out infinite;
}

.step-connector {
  position: absolute;
  top: 50%;
  left: 70px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg,
      var(--success) 0%,
      rgba(16, 185, 129, 0.2) 100%);
  z-index: 1;
}

.step-info {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.step-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(16, 185, 129, 0.05),
      transparent);
  transition: left 0.6s ease;
}

.step-info:hover::before {
  left: 100%;
}

.step-info:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
  border-color: var(--success);
}

.step-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.step-info p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@keyframes stepRipple {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.1;
  }
}

/* ========== ENGAGEMENT FLOW CARDS ========== */
.engagement-flow-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.engagement-step-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  cursor: pointer;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.engagement-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.engagement-step-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.engagement-step-card:hover::before {
  transform: scaleX(1);
}

/* Step Connectors */
.step-connector-left,
.step-connector-right {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 1;
  opacity: 0.6;
}

.step-connector-left {
  left: -40px;
  transform: translateY(-50%);
}

.step-connector-right {
  right: -40px;
  transform: translateY(-50%);
}

/* Step Header */
.step-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 80px;
  margin-bottom: 20px;
}

.step-icon {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
}

.step-number-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: var(--info);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  z-index: 3;
}

.icon-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle,
      rgba(245, 158, 11, 0.3) 0%,
      transparent 70%);
  border-radius: 20px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}

.engagement-step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.engagement-step-card:hover .icon-glow {
  opacity: 1;
  transform: scale(1.2);
}

.step-flow-line {
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, var(--primary), transparent);
  margin-top: 10px;
  opacity: 0.6;
}

/* Step Content */
.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-content p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0px;
}

/* Step Features */
.step-features {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateX(5px);
}

.feature-icon {
  color: var(--success);
  font-weight: 700;
  font-size: 14px;
}

.feature-item span:last-child {
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 500;
}

/* Progress Bar */
.step-progress-bar {
  position: relative;
  margin-top: auto;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: 8px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 10px;
  transition: width 0.8s ease;
  position: relative;
}

.progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  animation: progressShine 2s linear infinite;
}

@keyframes progressShine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.progress-text {
  position: absolute;
  top: -25px;
  right: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

/* Hover Effect */
.step-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(245, 158, 11, 0.05),
      transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.engagement-step-card:hover .step-hover-effect {
  left: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .engagement-flow-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step-connector-left,
  .step-connector-right {
    display: none;
  }

  .engagement-step-card {
    min-height: 320px;
    padding: 30px 25px;
  }

  .step-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .step-icon {
    font-size: 28px;
  }

  .step-content h3 {
    font-size: 18px;
  }

  .step-content p {
    font-size: 13px;
  }
}

/* @media (max-width: 480px) {
    .engagement-step-card {
        min-height: 280px;
        padding: 20px 16px;
    }

    .step-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .step-icon {
        font-size: 20px;
    }

    .step-number-badge {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    .step-content h3 {
        font-size: 15px;
    }

    .step-content p {
        font-size: 11px;
    }

    .feature-item {
        padding: 5px 8px;
        gap: 8px;
    }

    .feature-icon {
        font-size: 12px;
    }

    .feature-item span:last-child {
        font-size: 11px;
    }
} */

/* ========== CAPABILITIES SECTION ========== */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.capability-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.capability-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.capability-icon {
  font-size: 48px;
  margin-bottom: 16px;
  animation: iconBounce 2s ease-in-out infinite;
}

.capability-card:nth-child(2) .capability-icon {
  animation-delay: 0.2s;
}

.capability-card:nth-child(3) .capability-icon {
  animation-delay: 0.4s;
}

.capability-card:nth-child(4) .capability-icon {
  animation-delay: 0.6s;
}

.capability-card:nth-child(5) .capability-icon {
  animation-delay: 0.8s;
}

.capability-card:nth-child(6) .capability-icon {
  animation-delay: 1s;
}

@keyframes iconBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.capability-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.capability-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1f2937 100%);
  color: #fff;
  text-align: center;
  padding: 120px 0;
}

.cta-content h2 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */
footer {
  background: #0b1220;
  color: #94a3b8;
  padding: 20px 0;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  padding: 0;
}

/* ========== AUTHORITY STRIP ========== */
.authority-strip {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.authority-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: authorityShine 3s infinite;
}

@keyframes authorityShine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.authority-content {
  max-width: 900px;
  margin: 0 auto 60px;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.trust-item i {
  font-size: 20px;
  color: var(--primary);
}

.trust-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.trust-item:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
  position: relative;
}

.logo-item {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-600);
  /* padding: 20px 32px; */
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  background: #fff;
  position: relative;
}

.logo-icon-bg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.1) 0%,
      rgba(245, 158, 11, 0.05) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 2px solid rgba(245, 158, 11, 0.2);
}

.logo-icon-bg i {
  font-size: 20px;
  color: var(--primary);
}

.client-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo-text {
  text-align: center;
}

.logo-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.logo-text span {
  display: block;
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 400;
}

/* ========== ENGAGEMENT STEPS ========== */
.engagement-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.step-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-10px);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(245, 158, 11, 0.1);
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.step-card p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.8;
}

/* ========== ENHANCED HERO STYLES ========== */
.hero-geometric-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 1;
  overflow: hidden;
}

.hero-geometric-bg::before,
.hero-geometric-bg::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(245, 158, 11, 0.3);
  animation: geometricFloat 20s infinite linear;
}

.hero-geometric-bg::before {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  border-radius: 50%;
  transform: rotate(45deg);
}

.hero-geometric-bg::after {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 15%;
  border-radius: 30%;
  transform: rotate(-30deg);
  animation-delay: -10s;
}

@keyframes geometricFloat {

  0%,
  100% {
    transform: rotate(0deg) translateY(0px);
  }

  50% {
    transform: rotate(180deg) translateY(-20px);
  }
}

.stat-icon {
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* ========== ENHANCED AUTHORITY STRIP ========== */
.trust-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.1) 0%,
      rgba(245, 158, 11, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  border: 2px solid rgba(245, 158, 11, 0.2);
  transition: all 0.3s ease;
}

.trust-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-content strong {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 2px;
}

.trust-content span {
  font-size: 13px;
  color: var(--gray-600);
}

.client-showcase {
  /* margin-top: 80px; */
  text-align: center;
}

.client-showcase h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.logo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
}

.logo-inner i {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 8px;
}

.logo-inner span {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
}

/* ========== ENHANCED ARCHITECTURE DIAGRAM ========== */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-visual {
  margin-bottom: 60px;
}

.arch-diagram {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.arch-layer {
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border-radius: 16px;
  padding: 24px;
  border: 2px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.arch-layer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.arch-layer:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
}

.arch-layer:hover::before {
  transform: scaleX(1);
}

.arch-layer[data-layer="5"] {
  border-left: 4px solid #3b82f6;
}

.arch-layer[data-layer="4"] {
  border-left: 4px solid #8b5cf6;
}

.arch-layer[data-layer="3"] {
  border-left: 4px solid #10b981;
}

.arch-layer[data-layer="2"] {
  border-left: 4px solid #f59e0b;
}

.arch-layer[data-layer="1"] {
  border-left: 4px solid #06b6d4;
}

.layer-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.layer-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.layer-info p {
  font-size: 13px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.4;
}

.diagram-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-architecture-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
  animation: diagramFloat 6s ease-in-out infinite;
}

@keyframes diagramFloat {

  0%,
  100% {
    transform: translateY(0px) rotateX(0deg);
  }

  50% {
    transform: translateY(-10px) rotateX(2deg);
  }
}

/* ========== ENHANCED HERO NETWORK BACKGROUND ========== */
.hero-network-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.network-lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.network-lines::before,
.network-lines::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg,
      transparent,
      rgba(245, 158, 11, 0.1),
      transparent);
  animation: networkPulse 4s ease-in-out infinite;
}

.network-lines::before {
  width: 2px;
  height: 60%;
  top: 20%;
  left: 30%;
  transform: rotate(45deg);
}

.network-lines::after {
  width: 2px;
  height: 40%;
  top: 30%;
  right: 25%;
  transform: rotate(-30deg);
  animation-delay: 2s;
}

@keyframes networkPulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
  }
}

.network-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.network-nodes::before,
.network-nodes::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(245, 158, 11, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
  animation: nodeFloat 6s ease-in-out infinite;
}

.network-nodes::before {
  top: 25%;
  left: 20%;
}

.network-nodes::after {
  bottom: 30%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes nodeFloat {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.2);
  }
}

/* ========== ENHANCED STATS STYLING ========== */
.stat-visual {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.1) 0%,
      rgba(245, 158, 11, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(245, 158, 11, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-icon-wrapper i {
  font-size: 24px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.stat-content {
  flex: 1;
}

/* ========== ENHANCED SCROLL INDICATOR ========== */
.scroll-text {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: scrollTextFade 2s ease-in-out infinite;
}

@keyframes scrollTextFade {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.8;
  }
}

/* ========== ENHANCED CLIENT LOGO STYLING ========== */
.logo-icon-bg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.1) 0%,
      rgba(245, 158, 11, 0.05) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 2px solid rgba(245, 158, 11, 0.2);
}

.logo-icon-bg i {
  font-size: 20px;
  color: var(--primary);
}

.client-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo-text {
  text-align: center;
}

.logo-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.logo-text span {
  display: block;
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 400;
}

/* ========== ENHANCED ARCHITECTURE LAYER STYLING ========== */
.arch-layer[data-layer]:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 50px rgba(245, 158, 11, 0.2);
  z-index: 10;
}

.arch-layer[data-layer]:hover .layer-icon {
  transform: scale(1.2) rotate(10deg);
  color: var(--primary);
}

.arch-layer[data-layer]:hover .layer-info h4 {
  color: var(--primary);
}

/* ========== ENHANCED 3D DIAGRAM STYLING ========== */
.diagram-container {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(248, 250, 252, 0.12) 100%);
  border-radius: 24px;
  padding: 50px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.diagram-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg,
      transparent,
      rgba(245, 158, 11, 0.05),
      transparent);
  animation: diagramShine 8s linear infinite;
  pointer-events: none;
}

@keyframes diagramShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.ai-architecture-svg {
  width: 100%;
  max-width: 450px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  animation: diagramFloat 8s ease-in-out infinite;
  position: relative;
  z-index: 5;
}

.ai-architecture-svg::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg,
      transparent,
      rgba(245, 158, 11, 0.1),
      transparent);
  border-radius: 20px;
  animation: svgGlow 3s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-decade-line {
  width: 100vw;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* Desktop: keep the decade badge stuck to the bottom of the hero card */
@media (min-width: 992px) {
  /* Let the hero content stretch so we can push decade badge to bottom */
  .hero {
    align-items: stretch;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
  }

  /* Keep top badge centered even when hero-content uses flex */
  .hero-badge {
    align-self: center;
  }

  /* Push the decade badge to the bottom of the hero content */
  .hero-decade-line {
    position: relative;
    margin-top: auto;
  }
}

.ai-decade-badge {
  width: 100%;
  padding: 16px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg,
      rgba(15, 23, 42, 0.95),
      rgba(30, 41, 59, 0.95));
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;

  display: flex;
  align-items: center;
  gap: 14px;

  box-shadow: 0 0 25px rgba(99, 102, 241, 0.15);
  animation: badgeBlink 2s ease-in-out infinite;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6366f1;
  box-shadow: 0 0 12px #6366f1;
}

.badge-text {
  flex: 1;
}

@keyframes badgeBlink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.02);
  }
}

@keyframes svgGlow {
  0% {
    opacity: 0.3;
    transform: scale(0.95);
  }

  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}

@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .process-timeline .timeline-item {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .timeline-item::before {
    left: 50%;
    top: 30px;
    height: calc(100% + 40px);
    transform: translateX(-50%);
  }

  .timeline-marker {
    align-self: center;
  }

  .process-content {
    width: 100%;
  }

  .focus-modules {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .engagement-flow {
    gap: 32px;
  }

  .flow-step {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .flow-step::before {
    left: 50%;
    top: 70px;
    height: calc(100% + 32px);
    transform: translateX(-50%);
  }

  .step-visual {
    align-self: center;
  }

  .step-info {
    width: 100%;
  }

  .step-connector {
    display: none;
  }

  .methodology-grid {
    grid-template-columns: 1fr;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-layers-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .engagement-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .client-logos {
    gap: 30px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .section h2 {
    font-size: 32px;
  }

  .hero {
    margin-top: 0;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px !important;
    /* max-width: 400px; */
  }

  .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 24px;
  }

  .section h2 {
    font-size: 22px;
  }

  .feature-visual {
    grid-template-columns: 1fr;
  }

  .challenge-list {
    gap: 16px;
  }

  .challenge-item {
    padding: 16px;
  }

  .challenge-icon {
    font-size: 24px;
  }
}

/* ========== FOCUS AREA CARDS ========== */
.focus-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}

.focus-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 24px 24px;
}

.focus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.7) 100%);
  z-index: 1;
}

.focus-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.card-icon-wrapper {
  position: absolute;
  /* top: -30px; */
  /* top: 0; */
  left: 50%;
  /* transform: translateX(-50%); */
  transform: translate(-50%, -50%);
  z-index: 3;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 24px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 3px solid #fff;
}

.card-icon i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  display: block !important;
  text-align: center !important;
  line-height: 1 !important;
  color: #fff !important;
}

.card-icon.green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.card-icon.orange {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.card-icon.dark-green {
  background: linear-gradient(135deg, #065f46 0%, #047857 100%);
}

.focus-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.card-content {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 10px;
}

.card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-content p {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  margin: 0;
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
  overflow: hidden;
}

/* AI-themed background patterns */
.card-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
}

.focus-card:nth-child(1) .card-background {
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
}

.focus-card:nth-child(1) .card-background::before {
  background-image:
    radial-gradient(circle at 20% 20%,
      rgba(16, 185, 129, 0.1) 2px,
      transparent 2px),
    radial-gradient(circle at 80% 80%,
      rgba(16, 185, 129, 0.1) 2px,
      transparent 2px),
    radial-gradient(circle at 40% 60%,
      rgba(16, 185, 129, 0.1) 1px,
      transparent 1px),
    radial-gradient(circle at 60% 40%,
      rgba(16, 185, 129, 0.1) 1px,
      transparent 1px);
  background-size:
    50px 50px,
    60px 60px,
    30px 30px,
    40px 40px;
  animation: floatPattern 20s ease-in-out infinite;
}

.focus-card:nth-child(2) .card-background {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.focus-card:nth-child(2) .card-background::before {
  background-image:
    linear-gradient(45deg,
      transparent 48%,
      rgba(245, 158, 11, 0.1) 48%,
      rgba(245, 158, 11, 0.1) 52%,
      transparent 52%),
    linear-gradient(-45deg,
      transparent 48%,
      rgba(245, 158, 11, 0.1) 48%,
      rgba(245, 158, 11, 0.1) 52%,
      transparent 52%);
  background-size: 20px 20px;
  animation: slidePattern 15s linear infinite;
}

.focus-card:nth-child(3) .card-background {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.focus-card:nth-child(3) .card-background::before {
  background-image:
    linear-gradient(90deg, rgba(6, 95, 70, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(6, 95, 70, 0.1) 1px, transparent 1px);
  background-size: 25px 25px;
  animation: gridPattern 25s linear infinite;
}

/* AI animated elements */
.card-background::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(59, 130, 246, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
  animation: aiPulse 3s ease-in-out infinite;
}

.focus-card:nth-child(1) .card-background::after {
  top: 30%;
  left: 25%;
  animation-delay: 0s;
}

.focus-card:nth-child(2) .card-background::after {
  top: 60%;
  left: 70%;
  animation-delay: 1s;
}

.focus-card:nth-child(3) .card-background::after {
  top: 45%;
  left: 40%;
  animation-delay: 2s;
}

/* Background animations */
@keyframes floatPattern {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes slidePattern {
  0% {
    background-position:
      0 0,
      0 0;
  }

  100% {
    background-position:
      20px 20px,
      -20px -20px;
  }
}

@keyframes gridPattern {
  0% {
    background-position:
      0 0,
      0 0;
  }

  100% {
    background-position:
      25px 0,
      0 25px;
  }
}

@keyframes aiPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
    box-shadow: 0 0 20px rgba(59, 130, 246, 1);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .focus-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .focus-card {
    min-height: 260px;
    padding: 35px 20px 20px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .card-content h3 {
    font-size: 16px;
  }

  .card-content p {
    font-size: 13px;
  }
}

/* @media (max-width: 480px) {
    .focus-card {
        min-height: 220px;
        padding: 28px 14px 14px;
    }

    .card-icon {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .card-content h3 {
        font-size: 14px;
        line-height: 1.2;
    }

    .card-content p {
        font-size: 11px;
    }
} */

/* ========== AI ANIMATIONS FOR ENGAGEMENT CARDS ========== */

/* AI Animation Container */
.card-ai-animation {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* AI Scanner Animation */
.ai-scanner {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scanner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: 50%;
  animation: scannerRotate 3s linear infinite;
}

.scanner-core {
  position: relative;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.scanner-icon {
  font-size: 20px;
  color: #fff;
  animation: iconFloat 2s ease-in-out infinite;
}

.scan-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.scan-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  animation: scanParticleFloat 3s ease-in-out infinite;
}

.scan-particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.scan-particle:nth-child(2) {
  top: 70%;
  right: 15%;
  animation-delay: 0.5s;
}

.scan-particle:nth-child(3) {
  bottom: 25%;
  left: 20%;
  animation-delay: 1s;
}

.scan-particle:nth-child(4) {
  top: 40%;
  right: 25%;
  animation-delay: 1.5s;
}

.scan-waves {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.wave {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  animation: waveExpand 3s ease-out infinite;
}

.wave-1 {
  animation-delay: 0s;
}

.wave-2 {
  animation-delay: 1s;
}

.wave-3 {
  animation-delay: 2s;
}

/* AI Rocket Animation */
.ai-rocket {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rocket-body {
  position: relative;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--info) 0%, var(--primary) 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: rocketFloat 2s ease-in-out infinite;
}

.rocket-icon {
  font-size: 20px;
  color: #fff;
  transform: rotate(-45deg);
}

.rocket-flames {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2px;
}

.flame {
  width: 6px;
  height: 12px;
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #dc2626 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: flameFlicker 0.3s ease-in-out infinite alternate;
}

.flame-1 {
  animation-delay: 0s;
}

.flame-2 {
  animation-delay: 0.1s;
}

.flame-3 {
  animation-delay: 0.2s;
}

.rocket-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rocket-particles .particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
  animation: rocketParticleFly 2s ease-out infinite;
}

.rocket-particles .particle:nth-child(1) {
  bottom: 20%;
  left: 30%;
  animation-delay: 0s;
}

.rocket-particles .particle:nth-child(2) {
  bottom: 30%;
  right: 25%;
  animation-delay: 0.3s;
}

.rocket-particles .particle:nth-child(3) {
  bottom: 15%;
  left: 40%;
  animation-delay: 0.6s;
}

.rocket-particles .particle:nth-child(4) {
  bottom: 25%;
  right: 35%;
  animation-delay: 0.9s;
}

.rocket-particles .particle:nth-child(5) {
  bottom: 10%;
  left: 50%;
  animation-delay: 1.2s;
}

.rocket-trail {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: linear-gradient(180deg, var(--primary), transparent);
  animation: trailFade 1s ease-in-out infinite alternate;
}

/* AI Trophy Animation */
.ai-trophy {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trophy-base {
  position: relative;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--success) 0%, var(--info) 100%);
  clip-path: polygon(50% 0%,
      61% 35%,
      98% 35%,
      68% 57%,
      79% 91%,
      50% 70%,
      21% 91%,
      32% 57%,
      2% 35%,
      39% 35%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: trophyFloat 3s ease-in-out infinite;
}

.trophy-icon {
  font-size: 24px;
  color: #fff;
  margin-top: 5px;
}

.trophy-rays {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.ray {
  position: absolute;
  width: 2px;
  height: 15px;
  background: linear-gradient(180deg, var(--success), transparent);
  left: 50%;
  transform-origin: center bottom;
  animation: rayRotate 4s linear infinite;
}

.ray-1 {
  transform: translateX(-50%) rotate(0deg);
  animation-delay: 0s;
}

.ray-2 {
  transform: translateX(-50%) rotate(60deg);
  animation-delay: 0.67s;
}

.ray-3 {
  transform: translateX(-50%) rotate(120deg);
  animation-delay: 1.33s;
}

.ray-4 {
  transform: translateX(-50%) rotate(180deg);
  animation-delay: 2s;
}

.ray-5 {
  transform: translateX(-50%) rotate(240deg);
  animation-delay: 2.67s;
}

.ray-6 {
  transform: translateX(-50%) rotate(300deg);
  animation-delay: 3.33s;
}

.trophy-sparkles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--success);
  border-radius: 50%;
  animation: sparkleTwinkle 2s ease-in-out infinite;
}

.sparkle-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.sparkle-2 {
  top: 15%;
  right: 25%;
  animation-delay: 0.3s;
}

.sparkle-3 {
  bottom: 20%;
  left: 15%;
  animation-delay: 0.6s;
}

.sparkle-4 {
  bottom: 25%;
  right: 20%;
  animation-delay: 0.9s;
}

.sparkle-5 {
  top: 50%;
  left: 10%;
  animation-delay: 1.2s;
}

.sparkle-6 {
  top: 45%;
  right: 10%;
  animation-delay: 1.5s;
}

.trophy-glow {
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle,
      rgba(16, 185, 129, 0.3) 0%,
      transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 2s ease-in-out infinite;
}

/* Animation Keyframes */
@keyframes scannerRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes scanParticleFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(0.5);
    opacity: 0;
  }

  50% {
    transform: translate(15px, -10px) scale(1);
    opacity: 1;
  }
}

@keyframes waveExpand {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes rocketFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(-5deg);
  }

  50% {
    transform: translateY(-5px) rotate(5deg);
  }
}

@keyframes flameFlicker {
  0% {
    transform: scaleY(1);
    opacity: 0.8;
  }

  100% {
    transform: scaleY(1.2);
    opacity: 1;
  }
}

@keyframes rocketParticleFly {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-20px, 30px) scale(0.3);
    opacity: 0;
  }
}

@keyframes trailFade {
  0% {
    opacity: 0.3;
    height: 15px;
  }

  100% {
    opacity: 0.8;
    height: 25px;
  }
}

@keyframes trophyFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(-2deg);
  }

  50% {
    transform: translateY(-3px) rotate(2deg);
  }
}

@keyframes rayRotate {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }

  100% {
    transform: translateX(-50%) rotate(360deg);
  }
}

@keyframes sparkleTwinkle {

  0%,
  100% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes glowPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.6;
  }
}

.earth-cta {
  position: relative;
  background: url("./Images/image01.png") center bottom / cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  overflow: hidden;
}

.earth-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(10, 15, 25, 0.75),
      rgba(5, 10, 20, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
}

.earth-content {
  max-width: 750px;
  padding: 20px;
  color: #ffffff;
  margin-top: 15px;
}

.earth-content h2 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 12px;
}

.earth-content p {
  font-size: 14px;
  color: #cbd5e1;
}

.earth-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 8px 24px rgba(255, 90, 0, 0.35);
  transition: all 0.3s ease;
}

.earth-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 90, 0, 0.5);
}

/* =========================
   Footer Strip
========================= */

.earth-footer {
  background: #0b1220;
  color: #9aa4b2;
  font-size: 13px;
  padding: 14px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  font-size: 10px;
}

.footer-link {
  color: #9aa4b2;
  text-decoration: none;
}

.footer-link:hover {
  color: #fff;
  text-decoration: none;
}

/* =========================
   Responsive
========================= */

@media (max-width: 320px) {
  .hero-network-bg {
    width: 100px !important;
  }

  .btn {
    width: 98%;
    text-align: center;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 26px !important;
  }
}

/* Custom Hamburger */
.menu-toggle {
  width: 30px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #000;
  margin: 6px 0;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Animation to X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  white-space: nowrap;
  font-weight: bold;
}

.line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f59e0b, transparent);
}

.process-section {
  padding: 100px 0;
  background: #f4f6f9;
  position: relative;
}

.process-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.process-item {
  position: relative;
  width: 300px;
  text-align: center;
}

/* TOP PERFECT CIRCLE */
.top-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto -60px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 3;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.top-circle span {
  position: absolute;
  top: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.top-circle .icon {
  font-size: 30px;
  margin-top: 10px;
}

/* CARD */
.process-card {
  background: #fff;
  padding: 80px 30px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.process-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.process-card p {
  font-size: 14px;
  color: #6c757d;
}

/* ARROW */
.process-arrow {
  font-size: 30px;
  color: #bfc5cc;
}

/* BOTTOM BASE SHADOW BAR */
.process-base {
  width: 80%;
  height: 40px;
  background: #e9edf2;
  border-radius: 30px;
  margin: -20px auto 0 auto;
  box-shadow: inset 0 8px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

/* COLORS (Soft Corporate, Not Heavy Gradient) */
.yellow {
  background: #f4b740;
}

.green {
  background: #4db6ac;
}

.blue {
  background: #4aa3df;
}

.text-gradient-white-orange {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 70%, #ff8c42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent !important;
  font-size: 17px;
}

.menu-items a {
  color: rgb(72 73 74);
  text-decoration: none;
  font-size: 14px !important;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.menu-items a:hover {
  color: #f58220;
}

.menu-items a.btn {
  color: white !important;
}

.menu-items a.active {
  color: #f58220;
}

.menu-items a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #f58220;
  border-radius: 1px;
}

.menu-items a.btn {
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%) !important;
  position: relative;
}

/* Mobile Responsive */

@media (max-width: 767px) {
  .hero {
    min-height: 35vh !important;
    margin-top: 50px !important;
  }
  .client-logo{
    width:80px;
    height:80px;
  }

  .hero-icon-right{
    top: 100%;
  }
  .hero-icon-left{
    top: 0%;
    left: 10%;
    width: 200px;
    height: 200px;
  }
  .hero-title {
    font-size: 28px !important;
    line-height: 1.1 !important;
  }

  .hero-subtitle {
    font-size: 13px !important;
    margin-bottom: 16px !important;
  }

  .hero-stats {
    margin: 18px auto !important;
    gap: 10px !important;
  }

  .hero-stats .stat-item {
    padding: 8px !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 18px !important;
    margin: 0 auto !important;
    width: 82% !important;
  }

  .badge-text {
    font-size: 13px !important;
  }

  .btn-lg {
    padding: 8px 16px !important;
    font-size: 13px !important;
    width: 100% !important;
  }

  .section {
    padding: 30px 0 !important;
  }

  .section p.lead {
    font-size: 12px !important;
    margin-bottom: 25px !important;
  }

  .focus-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 25px;
  }

  .focus-card {
    padding: 20px 16px;
  }

  .card-icon-wrapper {
    width: 55px;
    height: 55px;
    margin-bottom: 14px;
  }

  .card-icon {
    font-size: 22px;
  }

  .card-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .card-content p {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .feature-tag {
    font-size: 9px;
    padding: 3px 6px;
  }

  .hero-stats {
    display: flex !important;
    flex-direction: column !important;
    /* margin: 0 auto !important; */
    justify-content: center !important;
    align-items: center !important;
  }

  .ai-initiatives-new-section {
    padding: 60px 0;
  }

  .ai-initiatives-new-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .ai-initiatives-new-intro {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .ai-initiatives-new-list {
    gap: 12px;
    margin-bottom: 32px;
  }

  .ai-initiatives-new-item {
    padding: 16px 20px;
    gap: 12px;
  }

  .checkmark-new-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .ai-initiatives-new-item p {
    font-size: 16px;
  }

  .ai-initiatives-new-conclusion {
    font-size: 16px;
    padding: 20px;
  }

  .ai-initiatives-section {
    padding: 60px 0;
  }

  .ai-initiatives-title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .ai-initiatives-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .ai-initiatives-list {
    gap: 16px;
    margin-bottom: 32px;
  }

  .initiative-item {
    padding: 20px;
    gap: 16px;
  }

  .checkmark-icon {
    width: 40px;
    height: 40px;
  }

  .checkmark-icon svg {
    width: 18px;
    height: 18px;
  }

  .initiative-text h4 {
    font-size: 18px;
  }

  .initiative-text p {
    font-size: 14px;
  }

  .ai-initiatives-footer {
    padding: 24px;
  }

  .ai-initiatives-footer p {
    font-size: 16px;
  }

  .client-showcase-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px 0;
  }

  .client-brand-card {
    height: 280px;
  }

  .brand-logo-container {
    width: 70px;
    height: 70px;
    margin: 20px auto 15px;
  }

  .brand-logo {
    width: 55px;
    height: 55px;
  }

  .brand-info h4 {
    font-size: 18px;
  }

  .brand-info p {
    font-size: 12px;
  }

  .brand-detail-content {
    padding: 20px;
  }

  .brand-icon {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .brand-detail-content h4 {
    font-size: 18px;
  }

  .brand-detail-content p {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .brand-metrics {
    gap: 12px;
  }

  .metric {
    padding: 8px 12px;
  }

  .metric-number {
    font-size: 16px;
  }

  .metric-label {
    font-size: 9px;
  }

  .client-logo-grid {
    flex-wrap: wrap;
    gap: 16px;
    padding: 30px 0;
  }

  .client-logo-card {
    height: 160px;
    flex: 0 0 calc(33.333% - 11px);
    min-width: 120px;
  }

  .logo-image-container {
    width: 70px;
    height: 70px;
  }

  .client-logo {
    width: 55ypx;
    height: 55px;
  }

  .engagement-timeline {
    padding: 60px 20px;
  }

  .timeline-container {
    gap: 40px;
  }

  .marker-inner {
    width: 60px;
    height: 60px;
  }

  .step-number {
    font-size: 12px;
  }

  .step-icon {
    font-size: 18px;
  }

  .step-content {
    padding: 20px;
  }

  .step-content h3 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 13px;
  }

  .feature-item {
    padding: 8px 12px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .feature-icon {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .feature-item span {
    font-size: 12px;
  }

  .engagement-cards {
    gap: 25px;
    margin-top: 30px;
  }

  .card-image-wrapper {
    height: 180px;
  }

  .card-content {
    padding: 20px;
  }

  .card-content h3 {
    font-size: 18px;
  }

  .card-content p {
    font-size: 13px;
  }

  .feature-badge {
    font-size: 10px;
    padding: 4px 8px;
  }

  .hero {
    min-height: 70vh !important;
    margin-top: 60px !important;
    padding: 40px 0 !important;
  }

  .hero-ai-visual {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    margin-top: -9rem !important;
    /* margin: 0 auto 30px !important; */
    width: 120px !important;
    height: 120px !important;
  }

  .ai-brain-animation {
    width: 120px !important;
    height: 120px !important;
  }

  .brain-core {
    width: 60px !important;
    height: 60px !important;
  }

  .binary-rain {
    width: 250px !important;
    height: 250px !important;
  }

  .hero-title {
    font-size: 28px !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
  }

  .hero-subtitle {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 24px !important;
  }

  s .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    max-width: 300px !important;
    margin: 24px auto !important;
  }

  .hero-stats .stat-item {
    flex-direction: row !important;
    text-align: left !important;
    padding: 16px !important;
    gap: 12px !important;
  }

  .hero-stats .stat-icon-wrapper {
    width: 45px !important;
    height: 45px !important;
    flex-shrink: 0 !important;
  }

  .hero-stats .stat-number {
    font-size: 22px !important;
  }

  .hero-stats .stat-label {
    font-size: 12px !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 24px !important;
  }

  .btn-lg {
    padding: 12px 20px !important;
    font-size: 12px !important;
    width: 98% !important;
    justify-content: center !important;
  }

  .custom-button {
    font-size: 12px !important;
    display: flex !important;
    justify-content: center;
  }

  .scroll-indicator {
    bottom: 20px !important;
  }

  .scroll-arrow {
    width: 20px !important;
    height: 20px !important;
  }

  .scroll-text {
    font-size: 10px !important;
  }

  .timeline-steps {
    flex-direction: column;
    gap: 60px;
  }

  .timeline-path {
    width: 4px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .path-line {
    background: linear-gradient(180deg,
        var(--primary) 0%,
        var(--secondary) 50%,
        var(--success) 100%);
  }

  .path-glow {
    width: 20px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg,
        rgba(245, 158, 11, 0.2) 0%,
        rgba(139, 92, 246, 0.2) 50%,
        rgba(16, 185, 129, 0.2) 100%);
  }

  .step-connector {
    top: 50%;
    left: 50%;
  }

  .step-hexagon {
    width: 100px;
    height: 100px;
  }

  .step-number {
    font-size: 28px !important;
  }

  .step-info {
    max-width: 100%;
    padding: 0 20px;
  }

  .step-info h3 {
    font-size: 16px !important;
  }

  .step-info p {
    font-size: 13px !important;
  }

  .engagement-orbital {
    height: 400px;
    margin: 40px 0;
  }

  .center-core {
    width: 80px;
    height: 80px;
  }

  .core-icon {
    font-size: 30px;
  }

  .hero-ai-visual {
    margin-bottom: 20px;
  }

  .node-number {
    font-size: 18px !important;
  }

  .node-icon {
    font-size: 16px;
  }

  .node-title {
    font-size: 10px !important;
  }

  .node-desc {
    font-size: 9px !important;
  }

  .engagement-details {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .detail-card {
    padding: 20px;
  }

  .detail-header h3 {
    font-size: 16px !important;
  }

  .detail-card p {
    font-size: 13px !important;
  }

  .engagement-modern {
    padding: 60px 0;
  }

  .progress-container {
    gap: 40px;
  }

  .modern-step {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .step-indicator {
    flex-direction: row;
    gap: 16px;
  }

  .step-connector {
    width: 40px;
    height: 4px;
  }

  .step-content-modern {
    padding: 24px;
    width: 100%;
  }

  .step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }

  .step-header h3 {
    font-size: 18px !important;
  }

  .step-description {
    font-size: 14px !important;
    margin-bottom: 16px !important;
  }

  .step-features-modern {
    gap: 8px;
  }

  .feature-pill {
    padding: 6px 12px;
  }

  .feature-pill span {
    font-size: 12px !important;
  }

  .progress-visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 40px;
  }

  .progress-circle {
    width: 60px;
    height: 60px;
  }

  .progress-fill {
    width: 45px;
    height: 45px;
  }

  .section-header h2 {
    font-size: 32px !important;
  }

  .section-header p.lead {
    font-size: 16px !important;
  }

  .arch-layer {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
    padding: 16px !important;
  }

  .layer-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 20px !important;
  }

  .tech-tags {
    justify-content: center !important;
  }

  .arch-features {
    gap: 16px;
  }

  .feature-card {
    padding: 20px !important;
  }

  .feature-icon {
    font-size: 32px !important;
    margin-bottom: 12px !important;
  }

  .feature-card h4 {
    font-size: 14px !important;
  }

  .feature-card p {
    font-size: 12px !important;
  }

  .ai-arch-layer {
    flex-direction: column !important;
    gap: 12px !important;
    padding: 16px !important;
  }

  .layer-visual {
    width: 60px !important;
    height: 60px !important;
  }

  .ai-icon {
    font-size: 24px !important;
  }

  .card-visual {
    height: 60px !important;
  }

  .capability-visual {
    height: 80px !important;
  }

  .step-visual {
    height: 80px !important;
  }

  .tech-features,
  .step-features {
    gap: 6px !important;
  }

  .feature-tag,
  .step-tag {
    font-size: 9px !important;
    padding: 3px 6px !important;
  }

  .architecture-img {
    height: 250px !important;
  }

  .methodology-img {
    height: 150px !important;
  }

  .capability-img {
    height: 180px !important;
  }

  .step-img {
    height: 180px !important;
  }

  .overlay-content h4 {
    font-size: 20px !important;
  }

  .overlay-content p {
    font-size: 14px !important;
  }

  .image-overlay {
    padding: 30px 20px 20px !important;
  }

  .engagement-flow-cards {
    gap: 25px;
    margin-top: 40px;
  }

  .engagement-step-card {
    min-height: 300px;
    padding: 25px 20px;
  }

  .step-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .step-icon {
    font-size: 24px;
  }

  .step-number-badge {
    width: 25px;
    height: 25px;
    font-size: 12px;
    top: -8px;
    right: -8px;
  }

  .step-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .step-content p {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .feature-item {
    padding: 6px 10px;
  }

  .feature-item span:last-child {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section h2 {
    font-size: 20px !important;
    width: 232px !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  .section {
    padding: 60px 0;
  }

  .methodology-grid {
    grid-template-columns: 1fr;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .engagement-steps {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .client-logos {
    flex-direction: column;
    align-items: center;
  }

  .logo-item {
    width: 200px;
    text-align: center;
  }

  .focus-cards-container {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .focus-card {
    min-height: 240px;
    padding: 30px 16px 16px;
  }

  .card-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .card-content h3 {
    font-size: 15px;
  }

  .card-content p {
    font-size: 12px;
  }

  .earth-cta {
    height: 215px;
    border-top-left-radius: 100% 60px;
    border-top-right-radius: 100% 60px;
  }

  .earth-content h2 {
    font-size: 16px;
  }

  .footer-inner {
    font-size: 8px;
  }

  .menu-items {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .menu-items.active {
    display: flex;
  }

  .solution-highlight {
    font-size: 13px;
    margin: 10px;
    margin-top: 20px !important;
    padding: 11px 4px !important;
  }

  .challenge-item {
    padding: 0px !important;
    margin-bottom: 5px !important;
  }

  .challenge-item h4 {
    font-size: 14px !important;
  }

  .earth-content p {
    font-size: 13px;
  }

  .hexagon-grid {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 60px;
  }

  .challenge-list,
  .challenge-item {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
    margin-top: 10px;
  }
}

@media (min-width: 768px) {
  /* .hero-content {
        top: 75px;
    } */

  .hero-title {
    font-size: 45px !important;
  }

  /* .hero-badge {
    margin-top: 8rem;
  } */
/* 
  .hero-icon {
    left: 26%;
  } */

  .section h2 {
    font-size: 22px !important;
  }

  .solution-highlight {
    margin-top: 2rem !important;
  }

  .earth-content h2 {
    font-size: 22px;
  }

  .earth-content p {
    font-size: 12px;
  }

  /* .hero-stats {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    } */
}

@media (min-width: 769px) and (max-width: 1024px) {
  .earth-content h2 {
    font-size: 18px !important;
  }

  .hero-stats {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hexagon-grid {
    gap: 7px;
  }
}

@media (min-width: 992px) and (max-width:1024px) {
  .process-row {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .process-base {
    display: none;
  }
}

.container-about,
.container-domain {
  max-width: 1200px;
  margin: auto;
  padding: 20px 20px;
}

.container-about h2 {
  font-size: 28px;
}

/* HERO */

.about-hero {
  background: linear-gradient(135deg,
      rgba(15, 34, 56, 0.1) 0%,
      rgba(15, 34, 56, 0.3) 100%,
      rgba(15, 34, 56, 0.4) 50%),
    url("./Images/Modified.png") center/cover no-repeat;
  color: white;
  padding: 100px 0 40px 0;
}

.about-hero h1 {
  font-size: 46px;
  margin-bottom: 20px;
  width: 50%;
}

.about-hero p {
  max-width: 650px;
  opacity: 0.9;
  margin-bottom: 0;
}

/* WHO WE ARE */

.who-we-are {
  padding: 30px 0;
  text-align: left;
}

.who-we-are h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.who-we-are p {
  /* max-width:800px; */
  margin: auto;
  margin-bottom: 15px;
  color: #555;
  text-align: left;
}

/* PHILOSOPHY */

.philosophy,
.domain-expertise {
  /* background:#f5f5f5; */
  padding: 20px 0;
}

.philosophy-grid,
.domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.philosophy-box,
.domain-box {
  /* background:white; */
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid #dfdcd9;
}

.philosophy-box h3 {
  margin-bottom: 10px;
  font-size: 26px !important;
  /* font-weight: 700; */
}

/* FOUNDER */

.founder {
  background:
    linear-gradient(135deg,
      rgba(15, 34, 56, 0.9) 0%,
      rgba(15, 34, 56, 0.8) 50%,
      rgba(15, 34, 56, 0.9) 100%),
    url("./Images/office-bg.png") center/cover no-repeat;
  color: white;
  padding: 40px 0;
  margin-top: 3rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.founder-image img {
  width: 60%;
  border-radius: 10px;
}

.founder-text span {
  display: block;
  margin-bottom: 15px;
  color: #cfa96c;
}

.founder-expertise-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.expertise-point {
  display: flex;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  transition: all 0.3s ease;
}

.expertise-point:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

.expertise-point i {
  color: var(--primary);
  font-size: 20px;
  width: 40px;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(245, 158, 11, 0.3);
  margin-right: 15px;
  transition: all 0.3s ease;
}

.expertise-point:hover i {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.expertise-point span {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-top: 12px;
}

.expertise-point:hover span {
  color: white;
}

.founder-image {
  display: flex;
  justify-content: center;
}

/* EXPERTISE */

.expertise {
  /* padding: 40px 0; */
  text-align: center;
  margin-bottom: 50px;
}

.expertise-title {
  font-size: 22px;
  margin-bottom: 30px;
  /* margin-top: 1rem; */
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* gap: 15px; */
}

.expertise-grid div {
  padding: 10px;
}

.expertise-item {
  position: relative;
  padding-left: 30px !important;
  font-size: 11px;
  text-align: left;
  display: flex;
  align-items: center;
  min-height: 24px;
}

.expertise-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("./Images/logo.png") no-repeat center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* CTA */

.about-cta {
  background:
    url("./Images/footer-image-all.png") center/cover no-repeat;
  color: white;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.cta-btn {
  margin-top: 20px;
  background: #d97706;
  border: none;
  padding: 10px 30px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px !important;
}

.about-cta .container h2 {
  font-size: 24px !important;
}

.card-headers {
  font-size: 17px !important;
  font-weight: 600;
}

.philosophy-box p {
  font-size: 14px !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: white;
  color: #333;
  line-height: 1.6;
}

.sx-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.sx-container h2 {
  font-size: 28px !important;
  /* font-weight: 700; */
}

.sx-container-section h2 {
  font-size: 24px !important;
  /* font-weight: 700; */
}

/* HERO */

.sx-hero {
  background:
    linear-gradient(rgba(10, 20, 40, 0.85), rgba(10, 20, 40, 0.85)),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.solutions-hero h1 {
  font-size: 46px;
  margin-bottom: 10px;
}

.sx-hero p {
  max-width: 700px;
  margin: auto;
  opacity: 0.9;
}

/* SOLUTIONS */

.sx-solutions {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.sx-solutions h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.sx-subtitle {
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;
  /* color: #666; */
}

.sx-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.sx-solution-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: 0.3s;
  /* border: 1px solid #c3bfbc; */
  box-shadow: 0px 5px 20px rgb(173 161 161);
}

.sx-solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.sx-solution-card i {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.sx-solution-card h3 {
  margin-bottom: 10px;
  font-size: 26px !important;
  /* font-weight: 700; */
}

.sx-solution-card ul {
  margin-top: 10px;
  padding-left: 18px;
  color: #555;
  text-align: left;
}

/* EXPERIENCE */

.sx-experience {
  background:
    url("./Images/solutions-image.png");
  padding: 40px 0px;
  color: #fff;
  text-align: center;
  height: 200px;
}

.sx-container {
  max-width: 1200px;
  margin: auto;
}

.sx-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.sx-subtitle {
  margin-bottom: 40px;
  opacity: 0.85;
}

.sx-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.sx-exp-card {
  background: #fff;
  color: #333;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  height: 222px !important;
}

.sx-card-item {
  display: flex;
  gap: 15px;
  /* align-items:flex-start; */
  margin-bottom: 20px;
  text-align: left;
  width: 90%;
}

.sx-card-item:last-child {
  margin-bottom: 0;
}

.sx-card-item i {
  font-size: 22px;
  margin-top: 5px;
  color: #2c3e50;
}

.sx-card-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.sx-card-item p {
  font-size: 14px;
  color: #555;
}

/* responsive */

@media (max-width: 900px) {
  .sx-exp-grid {
    grid-template-columns: 1fr;
  }
}

/* Success*/

.ai-industry-success {
  background:
    url("./Images/solutions-image.png");
  color: white;
  padding: 40px 0;
  text-align: center;
  height: 200px;
  margin-top: 16rem;
  margin-bottom: 9rem;
}

.ai-success-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.ai-success-exp-card {
  background: #fff;
  color: #333;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  height: 150px !important;
}

.ai-success-card-item {
  display: flex;
  gap: 15px;
  /* align-items:flex-start; */
  margin-bottom: 20px;
  text-align: left;
  width: 90%;
}

.ai-success-exp-card h3 {
  color: #333;
  font-size: 20px !important;
  /* font-weight: 700; */
}

.ai-success-exp-card p {
  color: #555;
}

.ai-success-exp-card i {
  font-size: 24px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.ai-success-exp-card h3 {
  color: #333;
  font-size: 20px !important;
  /* font-weight: 700; */
}

.ai-success-exp-card p {
  color: #555;
}

.ai-success-exp-card i {
  font-size: 24px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.ai-success-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.ai-success-container h2 {
  font-size: 28px !important;
  /* font-weight: 700; */
}

.ai-success-container-section h2 {
  font-size: 24px !important;
  font-weight: 700;
}

/* INDUSTRY */

.sx-industries {
  padding: 50px 0;
  text-align: center;
  background: #fff;
  margin-top: 7rem !important;
}

.sx-industry-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.sx-industry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  transition: 0.3s;
  border: 1px solid #e0e0e0;
}

.sx-industry:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.sx-industry i {
  font-size: 26px;
  color: #2c3e50;
}

.sx-industry p {
  margin: 0;
  font-weight: 500;
  color: #333;
  text-align: center;
  flex: 1;
}

/* ARCHITECTURE */

.sx-architecture {
  background: #1f2c40;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.sx-architecture h2 {
  font-size: 26px;
}

.solutions-hero {
  background:
linear-gradient(135deg, rgb(22 28 34 / 80%) 0%, rgb(1 13 28 / 35%) 50%, rgb(42 42 42 / 80%) 100%),
    url(./Images/solutions-hero-image.png) center / cover no-repeat;
  color: white;
  padding: 150px 0 40px 0;
  height: 374px !important;
}

.sx-architecture {
  background:
    /* linear-gradient(135deg,
      rgba(15, 34, 56, 0.9) 0%,
      rgba(15, 34, 56, 0.8) 50%,
      rgba(15, 34, 56, 0.9) 100%), */
    url("./Images/footer-image-all.png") center/cover no-repeat;
  color: white;
  color: white;
  text-align: center;
  padding: 50px 0;
}

/* ENTERPRISE EXPERIENCE PAGE */

.exg-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HERO */

.exg-hero {
  position: relative; 
  background:
    linear-gradient(rgba(20, 35, 55, 0.85), rgba(20, 35, 55, 0.85)),
    url("./Images/AI-Image03.avif");
  background-size: cover;
  background-position: center;
  /* padding: 110px 0 90px 0;
  height: 445px !important; */
  padding: 80px 0 40px 0;
  height: 374px;
  color: white;
}

.exg-hero-content {
  max-width: 650px;
  margin-bottom: 20px;
}

.exg-hero h1 {
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 15px;
  width: 85%;
}

.exg-hero h4 {
  font-size: 22px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.exg-hero p {
  font-size: 16px;
  opacity: 0.85;
}

.exg-stats {
  display: flex;
  gap: 60px;
  align-items: center;
}

.exg-stat h2 {
  font-size: 42px;
  color: #f0c36d;
  margin-bottom: 5px;
}

.exg-stat span {
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.8;
}

.exg-stat p {
  font-size: 14px;
  opacity: 0.9;
}

/* CLIENTS SECTION */

.exg-clients {
  background: #f4f4f4;
  padding: 40px 0;
  text-align: center;
}

.exg-title,
.exg-exp-title {
  font-size: 28px;
  margin-bottom: 10px;
}

/* .project-showcase,.container,.exg-exp-title{
    text-align: center;
    font-weight: 600 !important;

} */

.exg-subtext,
.exg-exp-subtext {
  /* max-width: 700px; */
  margin: auto;
  /* margin-bottom: 50px; */
  color: #666;
  font-size: 15px;
}

.exg-exp-subtext {
  max-width: 1000px;
  margin-bottom: 0px !important;
}

/* GRID */

.exg-clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */

.exg-client-card {
  background: white;
  padding: 35px 25px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.exg-client-card:hover {
  transform: translateY(-6px);
}

.exg-client-card i {
  font-size: 26px;
  color: #324a67;
  margin-bottom: 15px;
}

.exg-client-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.exg-client-card p {
  font-size: 14px;
  color: #777;
}

/* EXPERIENCE MEANING */

.exg-meaning {
  /* background: linear-gradient(rgba(20, 35, 55, 0.85), rgba(20, 35, 55, 0.85)),
        url("./Images/enterprise-img.jpg");
    background-size: cover;
    background-position: center; */
  text-align: center;
  color: white;
}

.exg-meaning h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}

.exg-meaning p {
  width: 79%;
  margin: auto;
  opacity: 0.9;
  font-size: 15px;
  color: #333;
}

/* CONTACT HERO */

.ctg-hero {
  background:
    linear-gradient(rgba(20, 35, 55, 0.2), rgb(22 29 38 / 80%)),
    url("./Images/contact_office.png");
  background-size: cover;
  background-position: center;
  /* padding: 90px 0; */
  padding: 130px 0 40px 0;
  color: white;
  text-align: center;
  height: 374px;
}

.ctg-hero-content {
  margin-top: 40px;
}

.ctg-hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.ctg-hero p {
  max-width: 650px;
  margin: auto;
  opacity: 0.9;
  font-size: 15px;
}

/* CONTACT SECTION */

.ctg-contact {
  /* background: #f5f5f5; */
  padding: 40px 0;
  text-align: center;
  margin-top:2rem;
}

.ctg-title {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 500;
  margin-top: 2rem;
}

/* FORM */

.ctg-form-wrapper {
  max-width: 600px;
  margin: auto;
}

.ctg-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ctg-form input,
.ctg-form textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.ctg-form textarea {
  resize: none;
}

.ctg-btn {
  background: #c8a76c;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-weight: 500;
  margin-top: 10px;
  transition: 0.3s;
}

.ctg-btn:hover {
  background: #b89659;
}

/* CONTACT INFO */
.ctg-info-grid {
  display: flex !important;
  flex-direction: row;
  justify-content: space-around !important;
  align-items: center !important;
}

.ctg-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 70px;
  text-align: left;
}

.ctg-info-left ul {
  padding-left: 0px;
}

.ctg-info-left li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
}

.ctg-info-right {
  position: relative;
  bottom: 20px;
}

.ctg-info-right p {
  font-size: 14px;
  color: #555;
  line-height: 1.6; 
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .ctg-info-grid {
    display:flex !important;
    flex-direction:column !important;
    justify-content: space-evenly;
    align-items: center;
  }

  .ctg-info-left ul {
    padding-left: 0;
    list-style: none;
  }
  .ctg-info-left,.ctg-info-right{
    border: 2px solid #f5e9e9;
    box-shadow: 2px 5px 10px #dfa966;
    border-radius: 10px;
    padding: 10px;
  }
  .ctg-info-right{
    width:287px;
    margin-top:1rem;
  }
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

.team-evolution {
  padding: 70px 0;
  /* background:#f7f7f7; */
}

/* TEAM SECTION */

.team-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.team-text h2 {
  margin-bottom: 15px;
  font-size: 28px;
}

.team-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
}

.team-list ul {
  padding-left: 18px;
}

.team-list li {
  margin-bottom: 10px;
  color: #555;
}

.team-image img {
  width: 100%;
  border-radius: 8px;
}

/* EVOLUTION */

.timeline {
  display: flex;
  margin-top: 40px;
  background: #f3efef;
}

.timeline-card {
  position: relative;
  flex: 1;
  background: white;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.15);
  padding: 18px 40px;
  border: 1px solid white;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
}

.timeline-card h4 {
  margin-top: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.timeline-card p {
  font-size: 14px;
  color: #555;
  margin-top: 6px;
}

.timeline-card i {
  font-size: 20px;
  color: #444;
}

/* arrow connector */

.timeline-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 0;
  height: 0;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 40px solid #f5f5f5;
  z-index: 2;
}

/* overlap effect */

.timeline-card:not(:first-child) {
  margin-left: 40px;
}

.card-headers {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* .title-text span{
display:block;
} */

.evolution-section {
  margin-top: 60px;
}

/* ========== ABOUT PAGE RESPONSIVE DESIGN ========== */

/* Tablet Responsive */
@media (max-width: 992px) {
  .about-hero h1 {
    font-size: 26px;
    width: 70%;
  }

  .team-list li {
    width: 240px;
  }

  .about-hero p {
    max-width: 550px;
  }

  .philosophy-grid,
  .domain-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .founder-image {
    order: -1;
  }

  .founder-image img {
    width: 50%;
    margin: 0 auto;
  }

  .founder-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 500px;
    margin: 20px auto 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-text {
    order: -1;
  }

  .timeline {
    flex-direction: column;
    gap: 20px;
  }

  .timeline-card {
    width: 100%;
  }

  .timeline-card:not(:first-child) {
    margin-left: 0;
  }

  .timeline-card:not(:last-child)::after {
    display: none;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .about-hero {
    padding: 80px 0 30px 0;
  }

  .card-features {
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }

  /* .hero-icon {
       position: absolute;
    top: 0%;
    left: 26%;
    transform: translateY(-50%);
    width: 114px;
    height: 157px;
    object-fit: contain;
    z-index: -1;
    opacity: 0.3;
  } */

  .team-list li {
    width: 240px;
  }

  .about-hero h1 {
    font-size: 26px;
    width: 100%;
    line-height: 1.3;
  }

  .about-hero p {
    font-size: 16px;
    max-width: 100%;
  }

  .who-we-are {
    padding: 20px 0;
  }

  .who-we-are h2 {
    font-size: 24px;
  }

  .who-we-are p {
    font-size: 15px;
  }

  .philosophy,
  .domain-expertise {
    padding: 15px 0;
  }

  .philosophy-grid,
  .domain-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .philosophy-box,
  .domain-box {
    padding: 15px;
  }

  .philosophy-box h3 {
    font-size: 20px !important;
  }

  .philosophy-box p {
    font-size: 14px !important;
  }

  .founder {
    padding: 40px 0;
    margin-top: 2rem;
  }

  .founder-text h2 {
    font-size: 24px;
  }

  .founder-text span {
    font-size: 14px;
  }

  .founder-text p {
    font-size: 15px;
  }

  .founder-image img {
    width: 70%;
  }

  .founder-expertise-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 300px;
    margin: 20px auto 0;
  }

  .expertise-point {
    padding: 12px;
    font-size: 14px;
  }

  .expertise-point i {
    font-size: 18px;
  }

  .team-evolution {
    padding: 40px 0;
  }

  .team-text h2 {
    font-size: 24px;
  }

  .team-text p {
    font-size: 15px;
  }

  .team-list ul {
    font-size: 15px;
  }

  .team-image img {
    width: 100%;
    height: auto;
  }

  .evolution-section {
    margin-top: 40px;
  }

  .evolution-section h2 {
    font-size: 24px;
  }

  .evolution-sub {
    font-size: 15px;
  }

  .timeline-card {
    padding: 15px;
  }

  .timeline-card h4 {
    font-size: 16px;
  }

  .timeline-card p {
    font-size: 13px;
  }

  .timeline-card i {
    font-size: 18px;
  }

  .about-cta {
    padding: 40px 0;
  }

  .about-cta .container h2 {
    font-size: 20px !important;
  }

  .about-cta .container p {
    font-size: 15px;
  }

  .about-cta .custom-button {
    font-size: 14px;
    padding: 12px 24px;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .about-hero {
    padding: 60px 0 25px 0;
  }

  .team-list li {
    width: 240px;
  }

  .about-hero h1 {
    font-size: 26px;
    margin-top: 2rem;
  }

  .about-hero p {
    font-size: 15px;
  }

  .who-we-are h2 {
    font-size: 22px;
  }

  .philosophy-box h3 {
    font-size: 18px !important;
  }

  .founder-text h2 {
    font-size: 22px;
  }

  .founder-image img {
    width: 80%;
  }

  .team-text h2 {
    font-size: 22px;
  }

  .evolution-section h2 {
    font-size: 22px;
  }

  .about-cta {
    padding: 30px 0;
  }

  .about-cta .container h2 {
    font-size: 18px !important;
  }
}

/* HERO */

/* .exg-hero h1 {
    font-size: 52px;
    font-weight: 600;
} */

.exg-hero h4 {
  margin-top: 10px;
  font-weight: 400;
}

.exg-hero p {
  margin-top: 10px;
  max-width: 600px;
}

/* TRUSTED */
/* 
.exg-trusted {
    padding: 80px 0;
    background: #f7f7f7;
    text-align: center;
}

.exg-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.logo-card {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
} */

.client-floating,
.experience-floating {
  padding: 50px 0;
  text-align: center;
  color: black;
}

.experience-floating {
  padding: 40px 0;
}

/* GRID */

.floating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  margin-top: 40px;
  overflow: hidden;
}

/* CARD */

.client-card {
  background: #f58220;
  padding: 22px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: 0.35s;
}

/* IMAGE */

.client-card img {
  height: 50px;
  margin-bottom: 10px;
  object-fit: contain;
}

/* TEXT */

.client-card span {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

/* HOVER EFFECT */

.client-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

/* PROJECT SHOWCASE - CAROUSEL SYSTEM */
.project-showcase {
  padding: 25px 0;
  background:
    linear-gradient(rgba(20, 35, 55, 0.9), rgba(20, 35, 55, 0.9)),
    url("./Images/Ai-image02.jpeg");
  overflow: hidden;
  position: relative;
}

.project-showcase{
  height:418px;
}

.project-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f58220, transparent);
  animation: topLine 3s ease-in-out infinite;
}

@keyframes topLine {

  0%,
  100% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(100%);
  }
}

/* CAROUSEL CONTAINER */
.project-carousel {
  position: relative;
  height: 280px !important;
  max-height: 280px !important;
  min-height: 280px !important;
  margin-top: 5px;
  overflow: hidden;
  border-radius: 20px;
  /* background: white; */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.project-card-container {
  position: relative;
  width: 100%;
}

/* SLIDES */
.project-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 292px !important;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

.project-slide.active {
  opacity: 1;
  position: relative;
}

/* PROJECT ROW INSIDE SLIDE */
.project-slide .project-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* PROJECT IMG */
.project-slide .project-img {
  /* flex: 0 0 120px; */
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  margin-right: -20px;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}

.project-slide.active .project-img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.project-slide .project-img img {
  width: 100%;
  max-width: 400px;
  height: auto !important;
  max-height: 275px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  object-fit:contain;
}

.project-slide .project-img img::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 70%);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s ease-out;
}

.project-slide.active .project-img img::after {
  transform: rotate(45deg) translateX(100%);
}

.project-slide .project-img img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

/* PROJECT CARD */
.project-slide .project-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  /* background: var(--primary-dark); */
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.project-slide.active .project-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.project-slide .project-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      transparent 0%,
      rgba(245, 130, 32, 0.05) 50%,
      transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.8s ease-out;
}

.project-slide.active .project-card::after {
  transform: translateX(100%);
}

.project-slide .project-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* CARD CONTENT */
.project-slide .project-card h3 {
  color: #333 !important;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease-in-out;
  flex-shrink: 0;
  /* color:white; */
}

.project-slide.active .project-card h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.project-slide .project-card p {
  color: #666 !important;
  line-height: 1.5;
  margin: 0 0 10px 0;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
  /* Prevent paragraph from stretching and pushing the UL downward */
  flex-grow: 0;
  /* color:white */
}

.project-slide.active .project-card p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.project-slide .project-card ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
  flex-shrink: 0;
}

.project-slide.active .project-card ul {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.project-slide .project-card li {
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
  /* color: white; */
  color: #333 !important;
  position: relative;
  padding-left: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease-in-out;
  font-size: 13px;
}

.project-slide.active .project-card li {
  opacity: 1;
  transform: translateX(0);
}

.project-slide.active .project-card li:nth-child(1) {
  transition-delay: 0.7s;
}

.project-slide.active .project-card li:nth-child(2) {
  transition-delay: 0.8s;
}

.project-slide.active .project-card li:nth-child(3) {
  transition-delay: 0.9s;
}

.project-slide.active .project-card li:nth-child(4) {
  transition-delay: 1s;
}

.project-slide.active .project-card li:nth-child(5) {
  transition-delay: 1.1s;
}

.project-slide.active .project-card li:nth-child(6) {
  transition-delay: 1.2s;
}

.project-slide .project-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f58220;
  font-weight: bold;
  font-size: 16px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease-in-out;
}

.project-slide.active .project-card li:before {
  opacity: 1;
  transform: scale(1);
}

.project-slide.active .project-card li:nth-child(1):before {
  transition-delay: 0.7s;
}

.project-slide.active .project-card li:nth-child(2):before {
  transition-delay: 0.8s;
}

.project-slide.active .project-card li:nth-child(3):before {
  transition-delay: 0.9s;
}

.project-slide.active .project-card li:nth-child(4):before {
  transition-delay: 1s;
}

.project-slide.active .project-card li:nth-child(5):before {
  transition-delay: 1.1s;
}

.project-slide.active .project-card li:nth-child(6):before {
  transition-delay: 1.2s;
}

.project-slide .project-card li:last-child {
  border-bottom: none;
}

/* CAROUSEL NAVIGATION */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

/* .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot.active {
    background: #f58220;
    transform: scale(1.2);
}

.dot:hover {
    background: #f58220;
    transform: scale(1.1);
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(245, 130, 32, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.dot.active::before {
    width: 20px;
    height: 20px;
} */

/* Responsive Design */
/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .project-carousel {
    height: auto !important;
    min-height: 350px !important;
    max-height: none !important;
  }

  .project-slide .project-row {
    gap: 15px;
  }

  .project-slide .project-img img {
    width: 100%;
    max-width: 300px;
    height: auto !important;
    max-height: 200px;
  }

  .project-slide .project-card {
    padding: 18px;
  }

  .project-slide .project-card h3 {
    font-size: 18px;
  }

  .project-slide .project-card p {
    font-size: 14px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .project-carousel {
    height: auto !important;
    min-height: 400px !important;
    max-height: none !important;
  }

  .ai-industry-success {
    margin-top: 41rem;
    margin-bottom:30rem;
  }

  .exg-hero {
  padding: 100px 0 40px 0;
  }
  .exg-delivery {
   margin-bottom: 29rem !important;
  }
  .project-slide {
    height: auto !important;
    min-height: 380px !important;
    padding: 15px;
  }

  .project-slide .project-row,
  .project-slide .project-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .project-slide .project-img {
    flex: none;
    margin-bottom: 0;
    transform: scale(0.3) rotate(180deg) !important;
  }

  .project-slide.active .project-img {
    transform: scale(1) rotate(0deg) !important;
  }

  .project-slide .project-card {
    text-align: left;
    transform: translateY(50px) scale(0.8) !important;
    padding: 18px;
    min-height: 200px;
  }

  .project-slide.active .project-card {
    transform: translateY(0) scale(1) !important;
  }

  .project-showcase {
    padding: 30px 0;
    height:80%;
  }
  .project-slide .project-img img{
    width: 100%;
    max-width: 250px;
    height: auto !important;
    max-height: 170px;
  }

  /* Mobile-optimized animations */
  .project-slide.active .project-img {
    transition-delay: 0.1s !important;
  }

  .project-slide.active .project-card {
    transition-delay: 0.15s !important;
  }

  .project-slide.active .project-card h3 {
    transition-delay: 0.2s !important;
  }

  .project-slide.active .project-card p {
    transition-delay: 0.25s !important;
  }

  .project-slide.active .project-card ul {
    transition-delay: 0.3s !important;
  }

  .project-slide.active .project-card li:nth-child(1) {
    transition-delay: 0.35s !important;
  }

  .project-slide.active .project-card li:nth-child(2) {
    transition-delay: 0.4s !important;
  }

  .project-slide.active .project-card li:nth-child(3) {
    transition-delay: 0.45s !important;
  }

  .project-slide.active .project-card li:nth-child(4) {
    transition-delay: 0.5s !important;
  }

  .project-slide.active .project-card li:nth-child(5) {
    transition-delay: 0.55s !important;
  }

  .project-slide.active .project-card li:nth-child(6) {
    transition-delay: 0.6s !important;
  }
}

/* SLIDING ANIMATIONS */

.slide1 {
  animation: slideInLeft 1s ease-out forwards;
  opacity: 0;
}

.slide2 {
  animation: slideInLeft 1s ease-out 0.2s forwards;
  opacity: 0;
}

.slide3 {
  animation: slideInRight 1s ease-out 0.4s forwards;
  opacity: 0;
}

.slide4 {
  animation: slideInRight 1s ease-out 0.6s forwards;
  opacity: 0;
}

.slide5 {
  animation: slideInLeft 1s ease-out 0.8s forwards;
  opacity: 0;
}

.slide6 {
  animation: slideInLeft 1s ease-out 1s forwards;
  opacity: 0;
}

.slide7 {
  animation: slideInRight 1s ease-out 1.2s forwards;
  opacity: 0;
}

.slide8 {
  animation: slideInRight 1s ease-out 1.4s forwards;
  opacity: 0;
}

/* SLIDING KEYFRAMES */

@keyframes slideInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* INDUSTRY */

.exg-industries {
  padding: 80px 0;
}

.exg-industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* 
.industry-card{
background:#fff;
padding:25px;
text-align:center;
border:1px solid #eee;
}

.industry-card i{
font-size:28px;
margin-bottom:10px;
color:#cfa45e;
} */

/* EXPERIENCE */
/* DELIVERY SECTION */

.exg-delivery {
    background:
    url("./Images/solutions-image.png");
  color: white;
  padding: 40px 0;
  text-align: center;
  height: 200px;
  margin-top:4rem;
  margin-bottom: 7rem;
}

.exg-delivery,
.exg-title {
  color: white;
}

.delivery-header h4 {
  color: #333;
}

/* GRID */

.exg-delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
}

/* CARD */

.delivery-card {
  background: #fff;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  text-align: left;
  transition: 0.3s;
}

.delivery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* HEADER (ICON + TITLE) */

.delivery-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

/* STEP ICON */

.step {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  /* background: #e8d3a3; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #c59a63;
  border: 2px solid #c59a63;
  font-size: 14px;
}

/* TITLE */

.delivery-card h4 {
  font-weight: 400;
  margin: 0;
  font-size: 18px;
  width: 110px;
}

/* TEXT */

.delivery-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-top: 4px;
}

/* CTA BUTTON */

.exg-cta {
  margin-top: 18px;
  cursor: pointer;
}

.exg-cta .btn {
  padding: 12px 30px;
  font-weight: 500;
}

.industries-experience {
  /* background: #1f2c40; */
  background:
    /* linear-gradient(rgba(20, 35, 55, 0.9), rgba(20, 35, 55, 0.9)), */
    url("./Images/solutions-image.png");
  color: white;
  padding: 40px 0;
  text-align: center;
  height: 200px;
  margin-bottom: 0rem;
  margin-top:2rem;
}

.industries-exp-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.industries-exp-card {
  color: #333;
  padding: 25px;
  border-radius: 6px;
  height: 150px !important;
}

.industries-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.industries-container h2 {
  font-weight: 400;
}

/* SECTION */

.industries-experience {
  /* background:
    linear-gradient(rgba(20, 35, 55, 0.9), rgba(20, 35, 55, 0.9)),
    url("./Images/AI-image04.jpg"); */
  color: #fff;
  /* padding: 70px 0 120px; */
  text-align: center;
}

/* GRID */

.industries-exp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 20px;
  margin-bottom: -80px;
}

/* CARD */

.industry-card {
  background: #f4f4f4;
  padding: 30px 20px;
  border-right: 1px solid #e5e5e5;
  text-align: center;
  color: #333;
}

/* ICON */

.industry-card i {
  font-size: 28px;
  color: #c59a63;
  margin-bottom: 12px;
}

/* TITLE */

.industry-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* TEXT */

.industry-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* REMOVE LAST BORDER */

.industry-card:last-child {
  border-right: none;
}

/* .container-domain p{
    text-align: center;
} */
.domain-box,
.card-holders,
.title-text p {
  text-align: left !important;
}

.domain-grid .domain-box {
  text-align: left;
}

.domain-grid .domain-box .card-headers {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.domain-grid .domain-box .card-headers i {
  font-size: 18px;
  width: 20px;
}

.domain-grid .domain-box p {
  margin-left: 38px;
  color: #666;
  font-size: 15px;
}

/* ========== ENGINEERING FOUNDATIONS STYLES ========== */

/* ENGINEERING HERO */
.engf-hero {
  background:
    linear-gradient(135deg,
      rgb(17 18 18 / 90%) 0%,
      rgb(5 15 26 / 80%) 50%,
      rgb(10 23 38 / 90%) 100%),
    url(./Images/AI-image04.jpg) center / cover no-repeat;
  color: white;
  /* padding: 120px 0 80px 0;
  height: 346px !important; */
      padding: 130px 0 40px 0;
    height: 374px !important;
}

.engf-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cdefs%3E%3Cpattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"%3E%3Cpath d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/%3E%3C/pattern%3E%3C/defs%3E%3Crect width="100%25" height="100%25" fill="url(%23grid)"/%3E%3C/svg%3E');
  opacity: 0.5;
}

.engf-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.engf-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-size: 46px;
}

.engf-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-weight: 400;
}

/* ARCHITECTURE FOUNDATIONS */
.engf-architecture {
  padding: 50px 0;
  background: #ffffff;
}

.engf-title {
  text-align: center;
  margin-bottom: 60px;
}

.engf-title h2 {
  font-size: 28px;
  /* font-weight: 700; */
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.engf-title p {
  font-size: 16px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.engf-arch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.engf-arch-card {
  background: white;
  border: 1px solid #e9ebef;
  border-radius: 12px;
  padding: 8px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 2px 5px 10px #c7c0c0;
}

.engf-arch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #dcdfe3;
}

.engf-arch-card i {
  font-size: 3rem;
  /* color: #8d8686; */
  color:#caa15a;
  margin-bottom: 20px;
  display: block;
}

.engf-arch-card h4 {
  font-size: 22px;
  font-weight: 400;
  color: #1a1a2e;
  margin-bottom: 15px;
}

.engf-arch-card p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

/* SECTION BACKGROUND */

.engf-ecosystem {
  background:
    linear-gradient(135deg, rgb(52 63 74 / 90%) 0%, rgb(57 64 70 / 80%) 50%, rgb(62 65 70 / 90%) 100%),
    url(./Images/technology-eosystem.png) center / cover no-repeat;
  color: white;
  padding: 25px 0;
}

/* OUTER CARD BORDER */

.eco-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 40px;
  /* background: rgba(255, 255, 255, 0.03); */
  background:
    linear-gradient(135deg, rgb(52 63 74 / 90%) 0%, rgb(57 64 70 / 80%) 50%, rgb(62 65 70 / 90%) 100%),
    url(./Images/rock-bg.png) center / cover no-repeat;
}

/* TITLE */

.engf-eco-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  /* font-weight: 500; */
}

/* GRID */

.eco-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
}

/* COLUMN */

.eco-col {
  text-align: center;
  padding: 0 25px;
  position: relative;
}

/* VERTICAL DIVIDER */

.eco-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

/* ICON */

.eco-col i {
  font-size: 34px;
  color: #caa15a;
  margin-bottom: 15px;
}

/* TITLE */

.eco-col h5 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* LIST */

.eco-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}

/* BULLETS */

.eco-col li {
  font-size: 14px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
  color: #d6d6d6;
}

/* GOLD BULLET */

.eco-col li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #caa15a;
}

/* DELIVERY PRACTICES */
.engf-delivery {
  padding: 45px 0;
  background: #ffffff;
}

.engf-delivery-title {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 50px;
}

.engf-delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.engf-delivery-text h2 {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a2e;
  text-align: center;
}

.engf-delivery-text p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 30px;
}

.engf-delivery-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.engf-delivery-text li {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;
  line-height: 1.6;
}

.engf-delivery-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  /* background: #3b82f6; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c59a63;
}

.engf-delivery-text li::after {
  content: "✓";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #c59a63;
  font-size: 12px;
  font-weight: bold;
}

.engf-delivery-img {
  text-align: center;
}

.engf-delivery-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* FOOTER */
.engf-footer {
  background: #1a1a2e;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.engf-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.engf-footer-text,
.engf-footer-location,
.engf-footer-website,
.engf-footer-social {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.engf-footer-text {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .engf-arch-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .engf-eco-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }

  .engf-delivery-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .engf-footer-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .engf-hero h1 {
    font-size: 2rem;
  }

  .engf-title h2,
  .engf-eco-title,
  .engf-delivery-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .engf-arch-card {
    padding: 30px 20px;
  }

  .engf-eco-col {
    padding: 30px 20px;
  }
    .hero-icon-right{
    top: 100%;
  }
  .hero-icon-left{
    top: 0%;
    left: 10%;
    width: 200px;
    height: 200px;
  }
}

.schedule-section {
  background:linear-gradient(rgba(20, 35, 55, 0.75), rgb(22 29 38 / 100%)),url("Images/contact-hero.jpg") center/cover no-repeat;
  padding: 26px 20px;
  text-align: center;
  color: white;
  height: 417px;
}

.schedule-section h2 {
  margin-bottom: 25px;
}

.calendar-card {
  background: #f2f2f2;
  width: 360px;
  margin: auto;
  border-radius: 8px;
  padding: 12px;
  color: #333;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
}

.calendar-header button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 12px;
  margin-bottom: 4px;
  color: #777;
}

.calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-dates div {
  padding: 4px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.2s;
}

.calendar-dates div:hover {
  background: #e0e0e0;
}

.selected-date {
  background: #d97706;
  color: white;
}

.pick-time {
  margin: 8px 0 4px;
  font-size: 12px;
  color: #555;
}

.time-slots {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: thin;
  scrollbar-color: #d97706 #f1f1f1;
}

.time-slots::-webkit-scrollbar {
  height: 6px;
}

.time-slots::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.time-slots::-webkit-scrollbar-thumb {
  background: #d97706;
  border-radius: 3px;
}

.time-slots::-webkit-scrollbar-thumb:hover {
  background: #b45309;
}

.time-slots button {
  border: 1px solid #ddd;
  background: #fafafa;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 11px;
  color: #333;
  transition: 0.3s;
}

.time-slots button:hover {
  background: #d97706;
  color: white;
  border-color: #d97706;
}

.selected-time {
  background: #d97706;
  color: white;
  border-color: #d97706;
}

/* ========== SOLUTIONS PAGE RESPONSIVE DESIGN ========== */

/* Tablet Responsive */
@media (max-width: 992px) {
  .solutions-hero h1 {
    font-size: 26px;
  }

  .solutions-hero p {
    font-size: 16px;
  }

  .sx-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .sx-exp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: stretch;
  }

  .sx-exp-card {
    width: 100%;
    height: auto !important;
    min-height: unset;
  }

  .sx-card-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
  }

  .ai-success-exp-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .logo-title {
    width: 180px;
    margin-right: 10px;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .solutions-hero {
    padding: 107px 0 30px 0;
  }

  .solutions-hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .solutions-hero p {
    font-size: 15px;
  }

  .sx-solutions {
    padding: 40px 0;
  }

  .sx-solutions h2 {
    font-size: 24px;
  }

  .sx-exp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sx-exp-card {
    width: 100%;
    height: auto !important;
    min-height: unset;
  }

  .sx-solutions p {
    font-size: 15px;
  }

  .sx-solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sx-solution-card {
    padding: 20px;
  }

  .sx-solution-card h3 {
    font-size: 18px;
  }

  .sx-solution-card p {
    font-size: 14px;
  }

  .sx-experience {
    padding: 30px 0;
    margin-top: 2rem;
  }

  .sx-experience h2 {
    font-size: 24px;
  }

  .sx-experience p {
    font-size: 15px;
  }

  .sx-exp-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: auto !important;
    min-height: 222px;
  }

  .sx-card-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
  }

  .sx-card-item i {
    font-size: 18px;
    margin-top: 2px;
  }

  .sx-card-item h3 {
    font-size: 16px;
  }

  .sx-card-item p {
    font-size: 14px;
  }

  .ai-industry-success {
    padding: 30px 0;
    margin-top: 50rem;
    margin-bottom: 30rem;
  }

  .ai-industry-success h2 {
    font-size: 24px;
  }

  .ai-industry-success p {
    font-size: 15px;
  }

  .ai-success-exp-card {
    padding: 20px;
  }

  .sx-architecture {
    padding: 30px 0;
    margin-top: 29.5rem !important;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .solutions-hero h1 {
    font-size: 26px;
  }

  .solutions-hero p {
    font-size: 14px;
  }

  .sx-solutions h2 {
    font-size: 22px;
  }

  .sx-solution-card h3 {
    font-size: 16px;
  }

  .sx-experience h2 {
    font-size: 22px;
  }

  .ai-industry-success h2 {
    font-size: 22px;
  }
}

/* ========== ENTERPRISE EXPERIENCE PAGE RESPONSIVE DESIGN ========== */

/* Tablet Responsive */
@media (max-width: 992px) {
  .exg-hero h1 {
    font-size: 34px;
  }

  .eco-col {
    padding: 20px 25px;
    position: inherit;

  }

  .exg-hero p {
    font-size: 16px;
  }

  .exg-stat span {
    font-size: 7px;
  }

  .exg-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .exg-stat {
    text-align: center;
  }

  .project-carousel {
    height: auto !important;
    min-height: 420px !important;
    max-height: none !important;
  }

  .project-row {
    flex-direction: column;
    gap: 30px;
  }

  .project-img {
    order: -1;
  }

  .project-img img {
    width: 80%;
    max-width: 280px;
    height: auto !important;
    max-height: 190px;
    margin: 0 auto;
  }

  .domain-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .industries-exp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .ai-success-exp-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .exg-delivery-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .exg-hero {
    padding: 95px 0 30px 0;
    height: 445px;
  }

  .exg-hero h1 {
    font-size: 34px;
    line-height: 1.3;
  }

  .exg-hero p {
    font-size: 15px;
  }

  .exg-stat span {
    font-size: 7px;
  }

  .eco-col {
    padding: 20px 25px;
    position: inherit;

  }

  .project-slide .project-img img {
  width: 84%;
  max-width: 320px;
  height: auto !important;
  max-height: 210px;
  }

  .exg-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .exg-stat h2 {
    font-size: 32px;
  }

  .exg-stat p {
    font-size: 14px;
  }

  .experience-floating {
    padding: 30px 0;
  }

  .industry-mobile-view {
    margin-top: 65rem
  }

  .experience-floating h2 {
    font-size: 24px;
  }

  .experience-floating p {
    font-size: 15px;
  }

  .project-showcase {
    padding: 40px 0;
    height: 80%;
  }

  .project-showcase h2 {
    font-size: 24px;
  }

  .project-showcase p {
    font-size: 15px;
  }

  .project-carousel {
    height: auto !important;
    min-height: 450px !important;
    max-height: none !important;
  }

  .project-card {
    padding: 20px;
  }

  .project-card h3 {
    font-size: 18px;
  }

  .project-card p {
    font-size: 14px;
  }

  .project-card ul {
    font-size: 13px;
  }

  .project-img img {
    width: 85%;
    max-width: 300px;
    height: auto !important;
    max-height: 200px;
  }

  .domain-expertise {
    padding: 30px 0;
  }

  .domain-expertise h2 {
    font-size: 24px;
  }

  .domain-expertise p {
    font-size: 15px;
  }

  .domain-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .domain-box {
    padding: 15px;
  }

  .domain-box h3 {
    font-size: 18px;
  }

  .domain-box p {
    font-size: 14px;
  }

  .industries-experience {
    padding: 30px 0;
    margin-top:1rem;
  }

  .industries-experience h2 {
    font-size: 24px;
  }

  .industries-experience p {
    font-size: 15px;
  }

  .industries-exp-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .industry-card {
    padding: 20px;
  }

  .industry-card h4 {
    font-size: 16px;
  }

  .industry-card p {
    font-size: 14px;
  }

  /* .ai-industry-success {
    padding: 30px 0;
  } */

  .ai-industry-success h2 {
    font-size: 24px;
  }

  .ai-industry-success p {
    font-size: 15px;
  }

  .ai-success-exp-card {
    padding: 20px;
  }

  .sx-card-item h3 {
    font-size: 16px;
  }

  .sx-card-item p {
    font-size: 14px;
  }

  .exg-meaning {
    padding: 20px 0;
    margin-top: 31rem;
  }

  .exg-meaning h2 {
    font-size: 24px;
  }

  .exg-meaning p {
    font-size: 15px;
  }

  .exg-delivery {
    padding: 30px 0;
    margin: 0rem;
    margin-top: 2rem;
     margin-bottom: 29rem;
  }

  .exg-delivery h2 {
    font-size: 24px;
  }

  .delivery-card {
    padding: 20px;
  }

  .delivery-card h4 {
    font-size: 16px;
  }

  .delivery-card p {
    font-size: 14px;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .exg-hero h1 {
    font-size: 26px;
  }

  .eco-col {
    padding: 20px 25px;
    position: inherit;
  }


  .exg-hero p {
    font-size: 14px;
  }

  .exg-stat span {
    font-size: 7px;
    position: none;
  }

  .exg-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .exg-stat h2 {
    font-size: 28px;
  }

  .experience-floating h2 {
    font-size: 22px;
  }

  .project-showcase h2 {
    font-size: 22px;
  }

  .project-card h3 {
    font-size: 16px;
  }

  .domain-expertise h2 {
    font-size: 22px;
  }

  .domain-box h3 {
    font-size: 16px;
  }

  .industries-experience h2 {
    font-size: 22px;
  }

  .industry-card h4 {
    font-size: 15px;
  }

  .ai-industry-success h2 {
    font-size: 22px;
  }

  .exg-meaning h2 {
    font-size: 22px;
  }

  .exg-delivery h2 {
    font-size: 22px;
  }
}

/* ========== ENGINEERING FOUNDATIONS PAGE RESPONSIVE DESIGN ========== */

/* Tablet Responsive */
@media (max-width: 992px) {
  .engf-hero h1 {
    font-size: 26px;
  }

  .engf-hero p {
    font-size: 16px;
  }

  .eco-grid {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }

  .engf-arch-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .engf-eco-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .engf-delivery-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .engf-hero {
    padding: 90px 0 30px 0;
    height: 304px !important;
  }

  .engf-hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .engf-hero p {
    font-size: 15px;
  }

  .engf-architecture {
    padding: 40px 0;
  }

  .engf-title h2 {
    font-size: 24px;
  }

  .engf-title p {
    font-size: 15px;
  }

  .engf-arch-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .engf-arch-card {
    padding: 20px;
  }

  .engf-arch-card h4 {
    font-size: 16px;
  }

  .engf-arch-card p {
    font-size: 14px;
  }

  .engf-ecosystem {
    padding: 40px 0;
  }

  .engf-eco-title {
    font-size: 24px;
  }

  .engf-eco-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .engf-eco-col {
    padding: 20px;
  }

  .engf-eco-col h5 {
    font-size: 16px;
  }

  .engf-eco-col ul {
    font-size: 14px;
  }

  .engf-delivery {
    padding: 40px 0;
  }

  .engf-delivery-title {
    font-size: 24px;
  }

  .engf-delivery-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .engf-delivery-text p {
    font-size: 15px;
  }

  .engf-delivery-text ul {
    font-size: 14px;
  }

  .engf-delivery-img img {
    width: 100%;
  }

  .eco-grid {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .engf-hero h1 {
    font-size: 24px;
  }

  .eco-grid {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }

  .engf-hero p {
    font-size: 14px;
  }

  .engf-title h2 {
    font-size: 22px;
  }

  .engf-arch-card h4 {
    font-size: 15px;
  }

  .engf-eco-title {
    font-size: 22px;
  }

  .engf-eco-col h5 {
    font-size: 15px;
  }

  .engf-delivery-title {
    font-size: 22px;
  }
}

/* ========== CONTACT PAGE RESPONSIVE DESIGN ========== */

/* Tablet Responsive */
@media (max-width: 992px) {
  .ctg-hero h1 {
    font-size: 26px;
  }
    .ctg-hero {
      padding: 53px 0 30px 0;
        height: 258px;
    }

  .ctg-hero p {
    font-size: 16px;
  }

  .ctg-title {
    font-size: 28px;
  }

  .ctg-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .schedule-section {
    padding: 30px 20px;
    height: auto;
  }

  .calendar-card {
    width: 320px;
  }
    .hero-badge {
    margin-top: 8rem;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .ctg-hero {
   padding: 53px 0 30px 0;
        height: 258px;
  }
     .hero-badge {
    margin-top: 0rem;
  }

  .ctg-hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .ctg-hero p {
    font-size: 15px;
  }

  .ctg-title {
    font-size: 24px;
  }

  .ctg-form-wrapper {
    margin-bottom: 40px;
  }

  .ctg-info-grid{
    margin-top:0px !important;
  }
  .ctg-form {
    padding: 20px;
  }

  .ctg-form input,
  .ctg-form textarea {
    font-size: 15px;
    padding: 12px;
  }

  .ctg-btn {
    font-size: 15px;
    padding: 12px 20px;
  }

  .ctg-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .ctg-info-left h5,
  .ctg-info-right h5 {
    font-size: 18px;
  }

  .ctg-info-left ul {
    font-size: 14px;
  }

  .ctg-info-right p {
    font-size: 14px;
  }

  .schedule-section {
    padding: 20px 15px;
    height: auto;
  }

  .calendar-card {
    width: 100%;
    max-width: 320px;
    padding: 15px;
  }

  .calendar-header {
    font-size: 13px;
  }

  .calendar-days {
    font-size: 11px;
  }

  .calendar-dates div {
    font-size: 12px;
    padding: 4px;
  }

  .pick-time {
    font-size: 12px;
  }

  .time-slots button {
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .ctg-hero h1 {
    font-size: 26px;
  }
.ctg-hero{
        padding: 52px 0 30px 0;
        height: 276px;
}
  .ctg-hero p {
    font-size: 14px;
  }

  .ctg-title {
    font-size: 22px;
  }

  .ctg-form {
    padding: 15px;
  }

  .ctg-form input,
  .ctg-form textarea {
    font-size: 14px;
    padding: 10px;
  }

  .ctg-btn {
    font-size: 14px;
    padding: 10px 16px;
  }

  .ctg-info-left h5,
  .ctg-info-right h5 {
    font-size: 16px;
  }

  .ctg-info-left ul,
  .ctg-info-right p {
    font-size: 13px;
  }

  .calendar-card {
    padding: 12px;
  }

  .calendar-header {
    font-size: 12px;
  }

  .calendar-days {
    font-size: 10px;
  }

  .calendar-dates div {
    font-size: 11px;
    padding: 3px;
  }

  .pick-time {
    font-size: 11px;
  }

  .time-slots button {
    font-size: 10px;
    padding: 4px 8px;
  }
}

.video-close-btn i{
font-size:14px;
position: relative;
bottom:2px
}

.video-popup{
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 10;
}
.video-popup-content{
position:relative;
width:300px;
background:#000;
border-radius:10px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.5);
}

.video-popup video{
width:100%;
display:block;
}

.video-close-btn{
position:absolute;
top:6px;
right:6px;
width:28px;
height:28px;
border:none;
border-radius:50%;
background:#000;
color:#fff;
font-size:18px;
cursor:pointer;
z-index:10;
}

.video-download{
display:block;
text-align:center;
padding:8px;
background:#111;
color:#fff;
text-decoration:none;
font-size:14px;
}

@media(max-width:768px){

.video-popup{
position:fixed;

top:50%;
left:50%;

transform:translate(-50%,-50%);

bottom:auto;
right:auto;

display:flex;
justify-content:center;
align-items:center;

width:100%;
padding:10px;
}

.video-popup-content{
width:90%;
max-width:320px;
}

}

/* ===== FORCE FULL WIDTH ROW (MAIN FIX) ===== */
/* ===== PROJECT SHOWCASE (PRODUCTION GRADE) ===== */

.project-showcase .container {
  max-width: 1200px;
}

/* ROW LAYOUT */
.project-row {
  display: grid;
  grid-template-columns: 180px 1fr 420px;
  align-items: center;
  gap: 40px;
}

/* LEFT: LOGO */
.project-logo {
  display: flex;
  justify-content: flex-start;
}

.project-logo img {
  max-width: 140px;
  height: auto;
  object-fit: contain;
}

/* CENTER: TEXT CARD */
.project-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.project-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.project-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

/* RIGHT: APPLICATION IMAGE */
.project-preview {
  display: flex;
  justify-content: flex-end;
}

.project-preview img {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .project-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .project-logo {
    justify-content: center;
  }

  .project-preview {
    justify-content: center;
  }

  .project-preview img {
    max-width: 100%;
  }
}


/* =========================
   PROJECT CARD PERFECT ALIGNMENT
   ========================= */

.project-row {
  display: flex;
  align-items: center; /* KEY FIX */
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* LEFT IMAGE */
.project-img {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-img img {
  width: 100%;
  max-width: 420px;
  height: 260px; /* FIXED HEIGHT */
  object-fit: cover; /* PREVENT STRETCH */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* RIGHT CARD */
.project-card {
  flex: 0 0 45%;
  background: #f1f1f1;
  padding: 28px;
  border-radius: 16px;
  min-height: 260px; /* MATCH IMAGE HEIGHT */
  display: flex;
  flex-direction: column;
  justify-content: center; /* VERTICAL CENTER */
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* TEXT FIX */
.project-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.project-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* =========================
   MOBILE FIX
   ========================= */

@media (max-width: 768px) {
  .project-row {
    flex-direction: column;
  }

  .project-img,
  .project-card {
    flex: 100%;
  }

  .project-img img {
    height: 220px;
  }
}

.project-card {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}


