/* ============================================================
   TheExperts – Main Stylesheet
   Color Palette: Dark Purple + Gold Accent
   ============================================================ */

/* ─── Google Fonts & Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple-950: #0d0715;
  --purple-900: #130a1f;
  --purple-800: #1e0f35;
  --purple-700: #2d1550;
  --purple-600: #3d1d6b;
  --purple-500: #5b2d9e;
  --purple-400: #7c3aed;
  --purple-300: #a855f7;
  --purple-200: #c084fc;
  --purple-100: #e9d5ff;
  --gold-500: #f5a623;
  --gold-400: #fbbf24;
  --gold-300: #fde68a;
  --pink-500: #ec4899;
  --cyan-400: #22d3ee;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --text-primary: rgba(255, 255, 255, 0.95);
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.45);
  --border: rgba(255, 255, 255, 0.08);
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(160, 100, 255, 0.2);
  --glass: rgba(255, 255, 255, 0.05);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-purple: 0 8px 40px rgba(124, 58, 237, 0.35);
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Outfit", "Inter", sans-serif;
  background-color: var(--purple-950);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* ─── Gradient Text ─── */
.gradient-text {
  background: linear-gradient(
    120deg,
    var(--purple-300),
    var(--gold-400),
    var(--pink-500)
  );
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ─── Section Header ─── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: var(--purple-300);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple-400), var(--purple-500));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.45);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.65);
  background: linear-gradient(135deg, var(--purple-300), var(--purple-400));
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--purple-300);
  color: var(--purple-300);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.55);
}
.btn-icon {
  font-size: 1.1em;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13, 7, 21, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--purple-400), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text {
  color: var(--text-primary);
}
.logo-text strong {
  color: var(--purple-300);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--text-primary);
  background: var(--glass);
}
.nav-cta-link {
  background: linear-gradient(135deg, var(--purple-400), var(--purple-500));
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}
.nav-cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(124, 58, 237, 0.6);
  background: linear-gradient(135deg, var(--purple-300), var(--purple-400));
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mega Menu & Dropdowns ─── */
.nav-item {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  display: inline-block;
}
.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* ── Mega dropdown (Services) ── */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 800px;
  background: rgba(19, 10, 31, 0.98);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-lg);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(124, 58, 237, 0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
  z-index: 2000;
  overflow: hidden;
}
.nav-item:hover .mega-dropdown,
.nav-item:focus-within .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-col {
  padding: 28px 24px;
  border-right: 1px solid rgba(124, 58, 237, 0.12);
}
.mega-col:last-child {
  border-right: none;
}
.mega-col-saas {
  background: rgba(124, 58, 237, 0.05);
}
.mega-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-300);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}
.mega-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-bottom: 4px;
  color: var(--text-secondary);
}
.mega-link:hover {
  background: rgba(124, 58, 237, 0.12);
  color: var(--white);
  transform: translateX(4px);
}
.mega-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.mega-link strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}
.mega-link small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Simple dropdown (Industries) ── */
.simple-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  width: 220px;
  background: rgba(19, 10, 31, 0.98);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
  z-index: 2000;
}
.nav-item:hover .simple-dropdown,
.nav-item:focus-within .simple-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.simple-dd-link {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.simple-dd-link:hover {
  background: rgba(124, 58, 237, 0.15);
  color: var(--white);
  padding-left: 18px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 80% 60% at 60% 30%,
      rgba(91, 45, 158, 0.45) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 40% at 20% 80%,
      rgba(236, 72, 153, 0.2) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 50% at 85% 75%,
      rgba(34, 211, 238, 0.12) 0%,
      transparent 60%
    ),
    var(--purple-950);
  padding-top: 100px;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("hero_bg.jpg") center/cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  pointer-events: none;
}
@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(720deg);
    opacity: 0;
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  padding: 32px 24px 20px;
  max-width: 860px;
  margin-right: auto;
  margin-left: 150px;
  flex: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.5);
  backdrop-filter: blur(10px);
  color: var(--purple-200);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.8s ease both;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulseDot 2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(251, 191, 36, 0);
  }
}

.hero-h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  animation: fadeSlideUp 0.9s ease 0.1s both;
}
.hero-h2 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--gold-400);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.9s ease 0.2s both;
}
.hero-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.9s ease 0.3s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeSlideUp 0.9s ease 0.4s both;
}
.hero-stats-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 24px 48px;
}
.hero-stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 0;
  animation: fadeSlideUp 0.9s ease 0.5s both;
  width: 100%;
  max-width: 760px;
}
.stat-item {
  text-align: center;
  padding: 12px 20px;
  flex: 1;
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-300), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-arrow {
  width: 22px;
  height: 22px;
  border-right: 2px solid var(--purple-400);
  border-bottom: 2px solid var(--purple-400);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 1;
  }
  50% {
    transform: rotate(45deg) translateY(6px);
    opacity: 0.5;
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--purple-900);
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.about-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    ellipse,
    rgba(124, 58, 237, 0.3),
    transparent 70%
  );
  border-radius: var(--radius-xl);
  z-index: 0;
}
.about-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card), var(--shadow-purple);
}
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 10;
  background: rgba(13, 7, 21, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
}
.float-icon {
  font-size: 2rem;
}
.about-badge-float strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
}
.about-badge-float small {
  color: var(--purple-300);
  font-size: 0.8rem;
}

.about-content .section-tag {
  margin-bottom: 14px;
}
.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}
.about-text {
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.8;
}
.about-text strong {
  color: var(--purple-200);
}
.about-mission-vision {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 32px;
}
.mv-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: var(--transition);
}
.mv-card:hover {
  border-color: rgba(124, 58, 237, 0.5);
  background: rgba(124, 58, 237, 0.08);
  transform: translateX(5px);
}
.mv-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.mv-card strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}
.mv-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background:
    radial-gradient(
      ellipse 60% 50% at 80% 20%,
      rgba(124, 58, 237, 0.15) 0%,
      transparent 60%
    ),
    var(--purple-950);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 28px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c1, #7c3aed), var(--c2, #a855f7));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.25);
}
.service-card:hover::before {
  opacity: 0.07;
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.service-card-wide .service-icon-wrap {
  margin-bottom: 0;
}
.service-icon {
  font-size: 1.8rem;
}
.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-300);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link span {
  transition: transform 0.3s ease;
}
.service-link:hover span {
  transform: translateX(4px);
}
.service-link:hover {
  color: var(--gold-400);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  background: var(--purple-900);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-400), var(--gold-400));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
}
.why-card:hover::after {
  transform: scaleX(1);
}
.why-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.5));
}
.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries {
  background:
    radial-gradient(
      ellipse 50% 60% at 20% 50%,
      rgba(91, 45, 158, 0.2) 0%,
      transparent 60%
    ),
    var(--purple-950);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.industry-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--purple-400);
  background: rgba(124, 58, 237, 0.1);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.25);
}
.industry-emoji {
  font-size: 3rem;
  margin-bottom: 18px;
  display: block;
  transition: transform 0.3s ease;
}
.industry-card:hover .industry-emoji {
  transform: scale(1.2) rotate(-5deg);
}
.industry-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.industry-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background: var(--purple-900);
}
.process-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 0%,
    rgba(124, 58, 237, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-timeline::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--purple-600),
    var(--purple-400),
    var(--purple-600),
    transparent
  );
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  border: 3px solid var(--purple-400);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
  transition: var(--transition);
}
.process-step:hover .step-num {
  background: linear-gradient(135deg, var(--purple-400), var(--gold-400));
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}
.step-content {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: var(--transition);
}
.process-step:hover .step-content {
  border-color: rgba(124, 58, 237, 0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.step-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}
.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background:
    radial-gradient(
      ellipse 70% 50% at 50% 100%,
      rgba(91, 45, 158, 0.2) 0%,
      transparent 60%
    ),
    var(--purple-950);
}
.testimonials-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  flex-shrink: 0;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: var(--shadow-purple);
  transform: translateY(-4px);
}
.testi-stars {
  color: var(--gold-400);
  font-size: 1.2rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}
.testi-author small {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-btn:hover {
  background: var(--purple-500);
  border-color: var(--purple-400);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}
.testi-dots {
  display: flex;
  gap: 8px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--card-border);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.testi-dot.active {
  width: 24px;
  background: linear-gradient(90deg, var(--purple-400), var(--gold-400));
}

/* ============================================================
   BLOG
   ============================================================ */
.blog {
  background: var(--purple-900);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
}
.blog-img-wrap {
  position: relative;
  overflow: hidden;
}
.blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img {
  transform: scale(1.05);
}
.blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(124, 58, 237, 0.9);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
}
.blog-body {
  padding: 24px;
}
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.blog-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.blog-card:hover .blog-title {
  color: var(--purple-300);
}
.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}
.blog-read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-300);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-read-more:hover {
  color: var(--gold-400);
  gap: 8px;
}
.blog-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 100px 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 50%,
      rgba(91, 45, 158, 0.6) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, var(--purple-800) 0%, var(--purple-950) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(124, 58, 237, 0.3);
  top: -200px;
  left: -100px;
}
.cta-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(236, 72, 153, 0.2);
  bottom: -150px;
  right: -50px;
}
.cta-container {
  position: relative;
  z-index: 2;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--purple-900);
  border-top: 1px solid var(--border);
}
.footer-top {
  padding: 80px 0 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo {
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--purple-500);
  border-color: var(--purple-400);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.4);
}
.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: "›";
  color: var(--purple-400);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.footer-links a:hover {
  color: var(--purple-300);
}
.footer-links a:hover::before {
  transform: translateX(3px);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.footer-contact-list a {
  color: var(--text-secondary);
  transition: color 0.3s;
}
.footer-contact-list a:hover {
  color: var(--purple-300);
}
.contact-icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 2px;
}
.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 100px;
  margin-top: 16px;
  transition: var(--transition);
}
.footer-whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-inner p {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-bottom-links a:hover {
  color: var(--purple-300);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.floating-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
}
.floating-wa:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}
.floating-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: pulseFw 2s ease infinite;
}
@keyframes pulseFw {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* ============================================================
   RESPONSIVE – TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image-wrap {
    max-width: 600px;
    margin: 0 auto;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card-wide {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-col.footer-brand {
    grid-column: 1 / -1;
  }
  /* Mega menu narrower */
  .mega-dropdown {
    width: 640px;
  }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  /* Navbar Mobile */
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(13, 7, 21, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 90px 24px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-link {
    padding: 12px 18px;
    font-size: 1rem;
    width: 100%;
    border-radius: 10px;
  }
  .nav-cta-link {
    width: calc(100% - 0px);
    text-align: center;
    justify-content: center;
    margin-top: 8px;
  }

  /* Hero */
  .hero-container {
    margin-left: 0;
    margin-right: 0;
    padding: 32px 16px 20px;
  }
  .hero-h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stats {
    flex-wrap: wrap;
    padding: 16px 8px;
    width: 100%;
    max-width: 100%;
  }
  .stat-divider {
    display: none;
  }
  .stat-item {
    padding: 12px 8px;
    flex: 1 1 45%;
    border-bottom: 1px solid var(--border);
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .stat-item:last-child,
  .stat-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

  /* Mobile mega/dropdown – disable hover, show as accordion */
  .nav-item .mega-dropdown,
  .nav-item .simple-dropdown {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: rgba(124, 58, 237, 0.07) !important;
    grid-template-columns: 1fr !important;
    display: none;
  }
  .nav-item {
    width: 100%;
  }
  .mega-col {
    border-right: none;
    padding: 0px 8px;
  }
  .nav-item.mobile-open .mega-dropdown,
  .nav-item.mobile-open .simple-dropdown {
    display: block !important;
  }
  .nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
  }

  /* Hide icons & descriptions in mobile mega menu — show only link text */
  .mega-dropdown .mega-icon { display: none !important; }
  .mega-dropdown small      { display: none !important; }
  .mega-dropdown .mega-col-title { display: none !important; }
  .mega-dropdown .mega-link {
    padding: 8px 12px;
    margin-bottom: 0;
    gap: 0;
  }
  .mega-dropdown .mega-link strong {
    font-size: 0.92rem;
    font-weight: 500;
  }

  /* Sections */
  .about-container {
    grid-template-columns: 1fr;
  }
  .about-content .section-title {
    font-size: 1.8rem;
  }
  .about-badge-float {
    right: 0;
    bottom: -15px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card-wide {
    flex-direction: column;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .process-timeline {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    min-width: calc(100% - 0px);
  }

  /* Testimonials - show one at a time on mobile */
  .testimonials-track {
    gap: 0;
  }
  .testimonial-card {
    min-width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  /* CTA */
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-btns .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Floating WA */
  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
  }
  .hero-h1 {
    font-size: 1.8rem;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }
  .btn {
    padding: 13px 24px;
    font-size: 0.95rem;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .service-card {
    padding: 28px 20px;
  }
  .why-card {
    padding: 28px 20px;
  }
  .industry-card {
    padding: 28px 20px;
  }
  .testimonial-card {
    padding: 24px 20px;
  }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.stagger.visible > *:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}
.stagger.visible > *:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.stagger.visible > *:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}
.stagger.visible > *:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.stagger.visible > *:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}
.stagger.visible > *:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.stagger.visible > *:nth-child(7) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
