/* ============================================================
   RAR Innovation – Static Site Styles
   ============================================================
   TABLE OF CONTENTS
   1.  CSS Custom Properties (Design Tokens)
   2.  Reset & Base
   3.  Custom Scrollbar
   4.  Layout Utilities (.container)
   5.  Scroll Progress Bar
   6.  Animated Background
   7.  Header & Navigation
       7a. Desktop Nav & Services Dropdown
       7b. Mobile Menu
   8.  Buttons
   9.  Badges
   10. Hero Section
   11. Stats Section
   12. About Section
   13. Section Headings (shared)
   14. Industries Section
   15. Services Section
   16. Technology Stack Section
   17. Testimonials Section
   18. Process Section
   19. Portfolio Section
   20. Team Section
   21. CTA Section
   22. Video Modal
   23. Footer
   24. Back To Top
   25. WhatsApp Floating Button
   26. Keyframe Animations
   27. Scroll-Triggered Fade Utility
   28. Premium Cursor (desktop only)
   29. Responsive Utilities
   ============================================================ */


/* ============================================================
   1. CSS Custom Properties (Design Tokens)
   ============================================================ */
:root {
  /* ── Core ── */
  --background: #ffffff;
  --foreground: #0a0a0a;
  --radius: 0.5rem;
  --container-max: 1400px;

  /* ── Teal palette ── */
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;

  /* ── Cyan palette ── */
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;

  /* ── Blue palette ── */
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;

  /* ── Slate palette ── */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
}


/* ============================================================
   2. Reset & Base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* IMPORTANT: must be here, NOT on body */
}

/*
  WHY overflow-x is on html, not body:
  When body has overflow-x:hidden, CSS computes overflow-y as "auto",
  making body the scroll container instead of the viewport.
  position:sticky children then stick relative to body, causing a
  visible gap above the header at scrollY=0 that vanishes on scroll.
  Moving it to html avoids this entirely.
*/
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}


/* ============================================================
   3. Custom Scrollbar
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: var(--teal-500);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--teal-600);
}


/* ============================================================
   4. Layout Utilities
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }
}


/* ============================================================
   5. Scroll Progress Bar
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 72px;        /* sits flush at the bottom of the 72px header */
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--teal-500), var(--cyan-500), var(--blue-500));
  z-index: 49;      /* just below the header (z-index:50) */
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
  border-radius: 0 2px 2px 0;
}

@media (max-width: 767px) {
  #scroll-progress { top: 64px; }
}


/* ============================================================
   6. Animated Background
   ============================================================ */
.animated-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
}

.animated-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.animated-bg .orb--teal {
  top: -10rem;
  right: -10rem;
  width: 20rem;
  height: 20rem;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.3), rgba(34, 211, 238, 0.3));
  animation: orbFloat1 20s ease-in-out infinite;
}

.animated-bg .orb--purple {
  top: 50%;
  left: -10rem;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.2), rgba(244, 114, 182, 0.2));
  animation: orbFloat2 25s ease-in-out 5s infinite;
}

.animated-bg .orb--blue {
  bottom: 0;
  right: 33%;
  width: 18rem;
  height: 18rem;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.25), rgba(129, 140, 248, 0.25));
  animation: orbFloat3 18s ease-in-out 10s infinite;
}

.animated-bg .mesh {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(248, 250, 252, 0.5),
      rgba(255, 255, 255, 0.3),
      rgba(240, 253, 250, 0.5));
}

.animated-bg .grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2314b8a6' fill-opacity='.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}


/* ============================================================
   7. Header & Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  margin-top: -30;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--slate-200);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header .header-inner {
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.site-header .logo-link .logo-img {
  height: 150px;
  width: 150px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.site-header .logo-brand-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
}

.site-header .logo-brand-accent {
  color: var(--teal-600);
}

/* ── 7a. Desktop Nav & Services Dropdown ── */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.desktop-nav a,
.desktop-nav .services-trigger {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  position: relative;
}

.desktop-nav a:hover,
.desktop-nav .services-trigger:hover {
  background: var(--slate-100);
  color: var(--slate-900);
}

.services-dropdown-wrapper {
  position: relative;
}

.services-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  width: 500px;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  /* hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 60;
}

.services-dropdown-wrapper:hover .services-dropdown,
.services-dropdown-wrapper.open .services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.services-dropdown a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.75rem;
  border-radius: 8px;
  transition: background 0.2s;
  text-decoration: none;
}

.services-dropdown a:hover {
  background: var(--slate-100);
}

.services-dropdown .dd-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.625rem;
  color: var(--slate-700);
}

.services-dropdown .dd-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--slate-700);
}

.services-dropdown .dd-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-900);
}

.services-dropdown .dd-desc {
  font-size: 0.8125rem;
  color: var(--slate-500);
  line-height: 1.4;
  margin-top: 4px;
}

/* Desktop right actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header-actions {
    display: flex;
  }
}

/* ── 7b. Mobile Menu ── */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  color: var(--slate-700);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: white;
  z-index: 70;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-panel.open {
  transform: translateX(0);
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: auto;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  color: var(--slate-500);
  transition: background 0.2s;
}

.mobile-menu-close:hover {
  background: var(--slate-100);
}

.mobile-menu-panel nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-panel nav>a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--slate-900);
  padding: 0.5rem 0;
}

.mobile-menu-panel .mobile-services {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  border-left: 2px solid var(--slate-200);
}

.mobile-menu-panel .mobile-services h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.mobile-menu-panel .mobile-services a {
  padding: 0.5rem 0;
  color: var(--slate-600);
  transition: color 0.2s;
}

.mobile-menu-panel .mobile-services a:hover {
  color: var(--slate-900);
}


/* ============================================================
   8. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Size modifier */
.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-lg svg {
  width: 20px;
  height: 20px;
}

/* Icon-only */
.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
}

/* Variants */
.btn-primary {
  background: linear-gradient(to right, var(--teal-500), var(--cyan-500));
  color: white;
  box-shadow: 0 4px 14px 0 rgba(20, 184, 166, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(to right, var(--teal-600), var(--cyan-600));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.35);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  border: 1px solid var(--slate-300);
  color: var(--slate-700);
}

.btn-outline-dark:hover {
  border-color: var(--teal-300);
  background: var(--teal-50);
}

.btn-teal-solid {
  background: var(--teal-500);
  color: white;
}

.btn-teal-solid:hover {
  background: var(--teal-600);
}


/* ============================================================
   9. Badges
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
}

/* Size modifier */
.badge-lg {
  padding: 0.5rem 1rem;
  font-size: 1rem;
}

/* Variants */
.badge-teal {
  background: var(--teal-100);
  color: var(--teal-700);
}

.badge-teal-glass {
  background: rgba(20, 184, 166, 0.2);
  color: var(--teal-300);
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.badge-secondary {
  background: var(--slate-100);
  color: var(--slate-700);
}

.badge-outline {
  background: white;
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
}

.badge-outline:hover {
  border-color: var(--teal-300);
  background: var(--teal-50);
}

.badge-white {
  background: rgba(255, 255, 255, 0.9);
  color: var(--slate-900);
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/* ============================================================
   10. Hero Section
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800), var(--teal-900));
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.hero-bg-gradient .radial-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.1), transparent 50%);
}

.hero-bg-gradient .conic-bg {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg at 50% 50%,
      rgba(20, 184, 166, 0.1),
      transparent 60deg,
      rgba(20, 184, 166, 0.1) 120deg,
      transparent 180deg);
}

/* Floating Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(45, 212, 191, 0.2);
  border-radius: 50%;
  animation: particleFloat var(--dur, 15s) ease-in-out var(--delay, 0s) infinite;
}

/* Layout */
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
  min-height: 100vh;
}

@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.hero-content {
  width: 100%;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .hero-content {
    width: 50%;
    padding-right: 3rem;
    margin-bottom: 0;
  }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid rgba(20, 184, 166, 0.3);
  background: rgba(20, 184, 166, 0.1);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--teal-300);
  backdrop-filter: blur(16px);
  margin-bottom: 2rem;
  gap: 0.75rem;
  transition: all 0.3s;
}

.hero-badge:hover {
  transform: scale(1.05);
  border-color: rgba(20, 184, 166, 0.5);
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-400);
  animation: pulseScale 2s infinite;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

/* Title */
.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.1;
  animation: fadeInUp 0.8s 0.4s both;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.25rem;
  }
}

.hero-title .gradient-text {
  background: linear-gradient(to right, var(--teal-400), var(--cyan-400), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .typing-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: currentColor;
  margin-left: 4px;
  animation: cursorBlink 0.8s infinite;
  vertical-align: baseline;
}

/* Description & buttons */
.hero-desc {
  font-size: 1.125rem;
  color: var(--slate-300);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s 0.6s both;
}

@media (min-width: 640px) {
  .hero-desc {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  animation: fadeInUp 0.8s 0.8s both;
}

/* Image */
.hero-image-wrap {
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-image-wrap {
    width: 50%;
  }
}

.hero-glass-card {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  transition: transform 0.6s;
  animation: fadeInLeft 1s 1s both;
}

.hero-glass-card:hover {
  transform: translateY(-10px);
}

.hero-glass-card .glow-border {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: linear-gradient(to right,
      rgba(20, 184, 166, 0.2),
      rgba(6, 182, 212, 0.2),
      rgba(59, 130, 246, 0.2));
  filter: blur(16px);
  z-index: -1;
}

.hero-glass-card .image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.4s;
}

.hero-glass-card:hover .image-wrapper {
  transform: scale(1.02);
}

.hero-glass-card .image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 1rem;
}

.hero-glass-card .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent, transparent);
}

/* Success badge */
.hero-success-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(to right, var(--teal-500), var(--cyan-500));
  border-radius: 1rem;
  padding: 1rem 2rem;
  box-shadow: 0 25px 50px -12px rgba(20, 184, 166, 0.25);
  display: flex;
  align-items: center;
  color: white;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both;
  transition: transform 0.3s;
  z-index: 5;
}

.hero-success-badge:hover {
  transform: scale(1.05) rotate(2deg);
}

.hero-success-badge svg {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

.hero-success-badge .badge-number {
  font-weight: 700;
  font-size: 1.125rem;
}

.hero-success-badge .badge-sub {
  color: var(--teal-100);
  font-size: 0.875rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s infinite;
}

.scroll-indicator .scroll-pill {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}

.scroll-indicator .scroll-dot {
  width: 4px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  margin-top: 8px;
  animation: scrollDot 2s infinite;
}


/* ============================================================
   10b. Page Hero (Service / Interior Pages)
   ============================================================ */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 50%, var(--teal-900) 100%);
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(20,184,166,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(6,182,212,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.3s both;
}

@media (min-width: 640px) {
  .page-hero-title { font-size: 3.5rem; }
}

@media (min-width: 1024px) {
  .page-hero-title { font-size: 4rem; }
}

.page-hero-title .gradient-text {
  background: linear-gradient(to right, var(--teal-400), var(--cyan-400), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero-desc {
  font-size: 1.125rem;
  color: var(--slate-300);
  max-width: 650px;
  margin-inline: auto;
  line-height: 1.75;
  animation: fadeInUp 0.8s 0.5s both;
}

@media (min-width: 640px) {
  .page-hero-desc { font-size: 1.25rem; }
}

.page-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 110px;
  animation: fadeInUp 0.8s both;
}

.hero-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(20,184,166,0.15);
  border: 1px solid rgba(20,184,166,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
}

.hero-stat-icon svg {
  width: 22px;
  height: 22px;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* .service-icon – simple icon box used inside service cards on service pages */
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--teal-500), var(--cyan-500));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: white;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 20px -4px rgba(20,184,166,0.4);
}

.service-card:hover .service-icon {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 12px 28px -4px rgba(20,184,166,0.55);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

/* .process-number / .process-icon – used in service page process cards */
.process-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal-50);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.process-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--teal-600);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.process-card:hover .process-icon {
  background: var(--teal-500);
  color: white;
  transform: scale(1.1);
}

.process-icon svg {
  width: 26px;
  height: 26px;
}


/* ============================================================
   11. Stats Section
   ============================================================ */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(to right, var(--teal-600), var(--cyan-600), var(--blue-600));
  position: relative;
  overflow: hidden;
}

.stats-section .bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fillRule="evenodd"%3E%3Cg fill="%23ffffff" fillOpacity="0.1"%3E%3Ccircle cx="30" cy="30" r="4"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  animation: bgScroll 20s linear infinite;
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  color: white;
  transition: transform 0.3s;
  cursor: default;
}

.stat-item:hover {
  transform: scale(1.1) translateY(-5px);
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: background 0.3s, transform 0.6s;
}

.stat-item:hover .stat-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(360deg);
}

.stat-icon svg {
  width: 32px;
  height: 32px;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}


/* ============================================================
   12. About Section
   ============================================================ */
.about-section {
  padding: 6rem 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about-highlight-card {
  text-align: center;
  padding: 1rem;
  background: var(--slate-50);
  border-radius: 0.75rem;
}

.about-highlight-card .value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-600);
  margin-bottom: 0.25rem;
}

.about-highlight-card .label {
  font-size: 0.875rem;
  color: var(--slate-600);
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-checklist .check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-checklist .check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.about-checklist .check-icon svg {
  width: 16px;
  height: 16px;
  color: var(--teal-600);
}

.about-checklist .check-text {
  color: var(--slate-600);
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap .accent-rect {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 16rem;
  height: 16rem;
  background: var(--teal-100);
  border-radius: 0.5rem;
  z-index: 0;
}

.about-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}


/* ============================================================
   13. Section Headings (shared)
   ============================================================ */
.section-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.section-heading h2 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--slate-900);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .section-heading h2 {
    font-size: 3rem;
  }
}

.section-heading .gradient-text {
  background: linear-gradient(to right, var(--teal-600), var(--cyan-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading p {
  font-size: 1.25rem;
  color: var(--slate-600);
  max-width: 48rem;
  margin: 0 auto;
}

/* Dark-section variant */
.section-heading-dark h2 {
  color: white;
}

.section-heading-dark .gradient-text {
  background: linear-gradient(to right, var(--teal-400), var(--cyan-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading-dark p {
  color: var(--slate-300);
}


/* ============================================================
   14. Industries Section
   ============================================================ */
.industries-section {
  padding: 6rem 0;
  background: var(--slate-50);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}

.industry-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.industry-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.industry-icon svg {
  width: 32px;
  height: 32px;
  color: var(--teal-600);
}

.industry-card h3 {
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.industry-card p {
  font-size: 0.875rem;
  color: var(--slate-600);
}


/* ============================================================
   15. Services Section
   ============================================================ */
.services-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--slate-50), white);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  transition: transform 0.4s, box-shadow 0.4s;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
}

.service-card .service-image-container {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.service-card .service-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.service-card:hover .service-image-container img {
  transform: scale(1.1);
}

.service-card .service-gradient-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.8;
}

.service-card .service-icon-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s;
}

.service-card:hover .service-icon-badge {
  transform: rotate(360deg) scale(1.1);
}

.service-icon-badge svg {
  width: 24px;
  height: 24px;
  color: white;
}

.service-card .service-body {
  padding: 2rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: var(--teal-600);
}

.service-card .service-desc {
  color: var(--slate-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.service-features .feature-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--slate-600);
  gap: 0.75rem;
}

.service-features .feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--teal-500);
  flex-shrink: 0;
}

.service-explore-link {
  display: inline-flex;
  align-items: center;
  color: var(--teal-600);
  font-weight: 600;
  transition: color 0.2s;
  gap: 0.25rem;
}

.service-explore-link:hover {
  color: var(--teal-700);
}

.service-explore-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.service-explore-link:hover svg {
  transform: translateX(4px);
}

.service-card .service-glow {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  pointer-events: none;
  transition: background 0.5s;
}

.service-card:hover .service-glow {
  background: linear-gradient(to right,
      rgba(20, 184, 166, 0.05),
      rgba(6, 182, 212, 0.05),
      rgba(59, 130, 246, 0.05));
}

/* Gradient overlay utilities */
.gradient-purple-pink {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.gradient-blue-cyan {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.gradient-green-teal {
  background: linear-gradient(135deg, #22c55e, #14b8a6);
}

.gradient-orange-red {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.gradient-indigo-purple {
  background: linear-gradient(135deg, #6366f1, #a855f7);
}

.gradient-red-pink {
  background: linear-gradient(135deg, #ef4444, #ec4899);
}


/* ============================================================
   16. Technology Stack Section
   ============================================================ */
.tech-section {
  padding: 6rem 0;
  background: white;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tech-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}

.tech-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tech-card .tech-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.tech-card .tech-icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal-600);
}

.tech-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}


/* ============================================================
   17. Testimonials Section
   ============================================================ */
.testimonials-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section .dark-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800), var(--teal-900));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.5s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
  display: flex;
  margin-bottom: 1.5rem;
  gap: 0.25rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: #facc15;
  fill: #facc15;
}

.testimonial-quote {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-result {
  margin-bottom: 1.5rem;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-client img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(45, 212, 191, 0.5);
}

.testimonial-client .client-name {
  font-weight: 700;
  color: white;
  font-size: 1.125rem;
}

.testimonial-client .client-pos {
  color: var(--slate-300);
}

.testimonial-client .client-company {
  color: var(--teal-400);
  font-weight: 500;
}


/* ============================================================
   18. Process Section
   ============================================================ */
.process-section {
  padding: 6rem 0;
  background: var(--slate-50);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  text-align: center;
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}

.process-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.process-icon-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.process-icon-wrap .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.process-icon-wrap .icon-circle svg {
  width: 32px;
  height: 32px;
  color: var(--teal-600);
}

.process-icon-wrap .step-number {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--teal-50);
  z-index: 0;
}

.process-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}

.process-card p {
  color: var(--slate-600);
  margin-bottom: 1rem;
}


/* ============================================================
   19. Portfolio Section
   ============================================================ */
.portfolio-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, white, var(--slate-50), white);
  position: relative;
  overflow: hidden;
}

.portfolio-section .bg-orb-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: var(--teal-100);
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(60px);
  transform: translate(-50%, -50%);
}

.portfolio-section .bg-orb-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: #dbeafe;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(60px);
  transform: translate(50%, 50%);
}

.portfolio-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(20, 184, 166, 0.3);
  background: rgba(20, 184, 166, 0.1);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--teal-700);
  backdrop-filter: blur(16px);
  margin-bottom: 1.5rem;
}

.portfolio-header-badge svg {
  width: 16px;
  height: 16px;
}

.portfolio-header-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-card {
  position: relative;
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}

.portfolio-card:hover {
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.portfolio-card .portfolio-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.portfolio-card .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-card .portfolio-image .img-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.portfolio-card:hover .portfolio-image .img-overlay {
  opacity: 0.8;
}

.portfolio-card .portfolio-image .category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
}

.portfolio-card .portfolio-image .hover-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s;
}

.portfolio-card:hover .portfolio-image .hover-btn {
  opacity: 1;
}

.hover-btn a {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  color: white;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s, transform 0.3s;
  transform: translateY(16px);
}

.portfolio-card:hover .hover-btn a {
  transform: translateY(0);
}

.hover-btn a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hover-btn a svg {
  width: 16px;
  height: 16px;
}

.portfolio-card .portfolio-body {
  padding: 2rem;
}

.portfolio-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.portfolio-card:hover h3 {
  color: var(--teal-600);
}

.portfolio-card .client-name {
  color: var(--slate-600);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.portfolio-card .project-desc {
  color: var(--slate-500);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portfolio-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--slate-50);
  border-radius: 0.75rem;
}

.portfolio-stats-row .stat-mini {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--slate-600);
  gap: 0.5rem;
}

.portfolio-stats-row svg {
  width: 16px;
  height: 16px;
  color: var(--teal-500);
}

.portfolio-results {
  margin-bottom: 1.5rem;
}

.portfolio-results h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.portfolio-results .result-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--slate-600);
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.portfolio-results .result-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--teal-500), var(--cyan-500));
  flex-shrink: 0;
  margin-right: 0.25rem;
}

.portfolio-results .result-item svg {
  width: 16px;
  height: 16px;
  color: var(--teal-500);
  flex-shrink: 0;
}

.portfolio-tech-tags {
  margin-bottom: 1.5rem;
}

.portfolio-tech-tags h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}

.portfolio-card .case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
  color: var(--teal-600);
  font-weight: 600;
  transition: color 0.2s;
}

.portfolio-card .case-study-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.portfolio-card .case-study-link:hover svg {
  transform: translateX(4px);
}

/* Portfolio CTA box */
.portfolio-cta-box {
  margin-top: 5rem;
  text-align: center;
}

.portfolio-cta-box .cta-box-inner {
  background: linear-gradient(to right, var(--slate-50), var(--teal-50));
  border-radius: 1.5rem;
  padding: 3rem;
  border: 1px solid var(--slate-200);
}

.portfolio-cta-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.portfolio-cta-box p {
  color: var(--slate-600);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-inline: auto;
}

.portfolio-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .portfolio-cta-buttons {
    flex-direction: row;
  }
}


/* ============================================================
   20. Team Section
   ============================================================ */
.team-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--slate-950), var(--slate-900), var(--slate-950));
  overflow: hidden;
}

.team-section .team-bg-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--slate-900) 1px, transparent 1px),
    linear-gradient(to bottom, var(--slate-900) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, #000, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, #000, transparent);
}

/* Background glows */
.team-section .glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
  animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.team-section .glow-orb--cyan {
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: var(--cyan-500);
}

.team-section .glow-orb--blue {
  bottom: 25%;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: var(--blue-500);
  animation-delay: 1s;
}

.team-section .glow-orb--purple {
  top: 50%;
  left: 50%;
  width: 24rem;
  height: 24rem;
  background: #a855f7;
  transform: translate(-50%, -50%);
  animation-delay: 2s;
}

.team-section .floating-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(34, 211, 238, 0.3);
  border-radius: 50%;
  animation: teamParticleFloat linear infinite;
  pointer-events: none;
}

/* Header badge */
.team-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.05);
  padding: 0.625rem 1.5rem;
  backdrop-filter: blur(16px);
}

.team-header-badge svg {
  width: 16px;
  height: 16px;
  color: var(--cyan-400);
  animation: pulse 2s infinite;
}

.team-header-badge .pulse-badge {
  position: relative;
  display: flex;
  width: 8px;
  height: 8px;
}

.team-header-badge .pulse-badge .ping {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--cyan-400);
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.team-header-badge .pulse-badge .dot {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--cyan-400);
}

.team-header-badge span:last-child {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--cyan-400);
  letter-spacing: 0.1em;
}

/* Stats bar */
.team-stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
}

.team-stats-bar .team-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  backdrop-filter: blur(8px);
}

.team-stats-bar .team-stat svg {
  width: 20px;
  height: 20px;
  color: var(--cyan-400);
}

.team-stats-bar .team-stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
}

.team-stats-bar .team-stat-label {
  font-size: 0.75rem;
  color: var(--slate-400);
}

/* Grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Member card */
.team-card {
  position: relative;
  height: 100%;
  animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.team-card .holo-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(to right, var(--cyan-500), var(--blue-500), #a855f7);
  border-radius: 1.5rem;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.7s;
  animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.team-card:hover .holo-glow {
  opacity: 1;
}

.team-card-inner {
  position: relative;
  height: 100%;
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800), var(--slate-900));
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.5);
  transition: border-color 0.5s;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.team-card:hover .team-card-inner {
  border-color: rgba(34, 211, 238, 0.5);
}

/* Scan line */
.team-card-inner .scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(34, 211, 238, 0.05), transparent);
  opacity: 0;
  transition: opacity 1s;
  animation: scanMove 3s linear infinite;
}

.team-card:hover .scan-line {
  opacity: 1;
}

.team-card-content {
  position: relative;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Avatar */
.team-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.team-avatar-outer {
  position: relative;
}

.team-avatar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(to right, var(--cyan-500), var(--blue-500), #a855f7);
  animation: spin 8s linear infinite;
  opacity: 0.75;
  filter: blur(4px);
  transform: scale(1.1);
}

.team-avatar-frame {
  position: relative;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(168, 85, 247, 0.2));
  padding: 4px;
  backdrop-filter: blur(8px);
}

.team-avatar-frame .inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--slate-800);
  padding: 4px;
}

.team-avatar-frame .img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  outline: 2px solid rgba(34, 211, 238, 0.5);
  outline-offset: -2px;
}

.team-avatar-frame .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.team-card:hover .team-avatar-frame .img-wrap img {
  transform: scale(1.1);
}

.team-avatar-frame .holo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(168, 85, 247, 0.2));
  mix-blend-mode: overlay;
}

/* Corner accents */
.team-avatar-outer .corner-accent {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity 0.5s;
}

.team-card:hover .corner-accent {
  opacity: 1;
}

.corner-accent--tr {
  top: -8px;
  right: -8px;
  border-top: 2px solid var(--cyan-400);
  border-right: 2px solid var(--cyan-400);
}

.corner-accent--bl {
  bottom: -8px;
  left: -8px;
  border-bottom: 2px solid var(--cyan-400);
  border-left: 2px solid var(--cyan-400);
}

/* Status badge */
.team-status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: linear-gradient(to right, rgba(34, 211, 238, 0.1), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(34, 211, 238, 0.3);
  backdrop-filter: blur(8px);
  margin-top: 1rem;
}

.team-status-badge .status-dot-wrap {
  position: relative;
  width: 8px;
  height: 8px;
}

.team-status-badge .status-dot-wrap .ping {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--cyan-400);
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.team-status-badge .status-dot-wrap .dot {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--cyan-400);
}

.team-status-badge span:last-child {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan-400);
  letter-spacing: 0.05em;
}

/* Info */
.team-info {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.team-info .member-name {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(to right, white, #cffafe);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s;
}

.team-card:hover .member-name {
  background: linear-gradient(to right, var(--cyan-400), white);
  -webkit-background-clip: text;
  background-clip: text;
}

.team-position-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 0.5rem;
  background: linear-gradient(to right,
      rgba(34, 211, 238, 0.1),
      rgba(59, 130, 246, 0.1),
      rgba(168, 85, 247, 0.1));
  border: 1px solid rgba(34, 211, 238, 0.2);
  backdrop-filter: blur(8px);
}

.team-position-badge svg {
  width: 14px;
  height: 14px;
  color: var(--cyan-400);
}

.team-position-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #cffafe;
}

.team-expertise {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--slate-400);
  font-weight: 500;
}

.team-expertise svg {
  width: 12px;
  height: 12px;
  color: var(--cyan-500);
}

/* Bio frame */
.team-bio-frame {
  position: relative;
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  backdrop-filter: blur(8px);
}

.team-bio-frame .corner {
  position: absolute;
  width: 12px;
  height: 12px;
}

.team-bio-frame .corner--tl {
  top: 0;
  left: 0;
  border-top: 1px solid rgba(34, 211, 238, 0.5);
  border-left: 1px solid rgba(34, 211, 238, 0.5);
}

.team-bio-frame .corner--tr {
  top: 0;
  right: 0;
  border-top: 1px solid rgba(34, 211, 238, 0.5);
  border-right: 1px solid rgba(34, 211, 238, 0.5);
}

.team-bio-frame .corner--bl {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid rgba(34, 211, 238, 0.5);
  border-left: 1px solid rgba(34, 211, 238, 0.5);
}

.team-bio-frame .corner--br {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid rgba(34, 211, 238, 0.5);
  border-right: 1px solid rgba(34, 211, 238, 0.5);
}

.team-bio-frame p {
  font-size: 0.75rem;
  color: var(--slate-300);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Tech divider */
.team-divider {
  margin: 1rem 0;
  position: relative;
}

.team-divider .line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(34, 211, 238, 0.5), transparent);
}

.team-divider .center-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: var(--cyan-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Social links */
.team-social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.team-social-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  border-radius: 0.5rem;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(51, 65, 85, 0.5);
  overflow: hidden;
  transition: all 0.3s;
}

.team-social-link:hover {
  border-color: rgba(34, 211, 238, 0.5);
  transform: scale(1.1);
}

.team-social-link svg {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  color: var(--slate-400);
  transition: color 0.3s;
}

.team-social-link:hover svg {
  color: var(--cyan-400);
}

.team-social-link .social-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.team-social-link:hover .social-glow {
  opacity: 0.2;
}

.team-social-link .scan-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s;
}

.team-social-link:hover .scan-sweep {
  transform: translateX(100%);
}

.social-glow-blue {
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-500));
}

.social-glow-cyan {
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-400));
}

.social-glow-pink {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

/* Card corner tech elements */
.team-card-inner .corner-tech {
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s;
}

.team-card:hover .corner-tech {
  opacity: 1;
}

.corner-tech--tr {
  top: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  border-top: 2px solid rgba(34, 211, 238, 0.2);
  border-right: 2px solid rgba(34, 211, 238, 0.2);
  border-top-right-radius: 1.5rem;
}

.corner-tech--bl {
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 5rem;
  border-bottom: 2px solid rgba(34, 211, 238, 0.2);
  border-left: 2px solid rgba(34, 211, 238, 0.2);
  border-bottom-left-radius: 1.5rem;
}

.team-card-inner .particle-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.team-card:hover .particle-dot {
  opacity: 1;
}

.particle-dot--tr {
  top: 1rem;
  right: 1rem;
  background: var(--cyan-400);
  animation-delay: 0.2s;
}

.particle-dot--bl {
  bottom: 1rem;
  left: 1rem;
  background: #c084fc;
  animation-delay: 0.4s;
}

/* Team CTA */
.team-cta {
  margin-top: 5rem;
  text-align: center;
}

.team-cta .cta-divider {
  position: relative;
  width: 8rem;
  height: 4px;
  margin: 0 auto 2rem;
  background: linear-gradient(to right, transparent, var(--cyan-500), transparent);
}

.team-cta .cta-divider .dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--cyan-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.team-cta p {
  font-size: 0.875rem;
  color: var(--slate-400);
  margin-top: 1rem;
}

.team-cta p a {
  margin-left: 0.25rem;
  color: var(--cyan-400);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.team-cta p a:hover {
  color: #67e8f9;
}


/* ============================================================
   21. CTA Section
   ============================================================ */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-section .cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--slate-900), var(--teal-900), #164e63);
}

.cta-section .cta-bg-anim {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(20, 184, 166, 0.1), rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1));
  animation: ctaGradient 10s linear infinite;
}

/* Floating circles */
.floating-el {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(20, 184, 166, 0.2);
  animation: floatEl 15s ease-in-out infinite;
}

.floating-el--1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-el--2 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  right: 10%;
  animation-delay: -5s;
}

.floating-el--3 {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 60%;
  animation-delay: -10s;
}

/* Inner content */
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .cta-inner h2 {
    font-size: 3rem;
  }
}

.cta-inner .cta-desc {
  font-size: 1.25rem;
  color: var(--slate-300);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-inline: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cta-contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  text-decoration: none;
}

.cta-contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px) scale(1.02);
}

.cta-contact-card .contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s, transform 0.6s;
}

.cta-contact-card:hover .contact-icon {
  background: rgba(20, 184, 166, 0.3);
  transform: rotate(360deg);
}

.cta-contact-card .contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal-400);
}

.cta-contact-card .contact-label {
  font-size: 0.875rem;
  color: var(--slate-300);
  margin-bottom: 0.25rem;
}

.cta-contact-card .contact-value {
  font-weight: 600;
  color: white;
  transition: color 0.3s;
}

.cta-contact-card:hover .contact-value {
  color: var(--teal-400);
}


/* ============================================================
   22. Video Modal
   ============================================================ */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.video-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 1rem;
}

.video-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  color: white;
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
}

.video-modal-close:hover {
  color: var(--teal-400);
}

.video-modal-close svg {
  width: 32px;
  height: 32px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 */
  background: black;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* ============================================================
   23. Footer
   ============================================================ */
.site-footer {
  background: var(--slate-900);
  color: var(--slate-300);
}

.footer-inner {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand-logo .logo-box {
  width: 32px;
  height: 32px;
  background: var(--teal-500);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

.footer-brand-logo span {
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}

.footer-desc {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.footer-social a {
  color: var(--slate-300);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--teal-400);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-col h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--teal-400);
}

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

.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
}

.footer-contact-list svg {
  width: 20px;
  height: 20px;
  color: var(--teal-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-800);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--teal-400);
}


/* ============================================================
   24. Back To Top
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--teal-500), var(--cyan-500));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.25);
  border: none;
  cursor: pointer;
  /* hidden by default */
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s ease;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  background: linear-gradient(to right, var(--teal-600), var(--cyan-600));
  transform: translateY(0) scale(1.1);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}


/* ============================================================
   25. WhatsApp Floating Button
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
}

.whatsapp-float button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(to right, #22c55e, #16a34a);
  color: white;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  animation: pulse-glow-green 2s infinite;
}

.whatsapp-float button:hover {
  background: linear-gradient(to right, #16a34a, #15803d);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-float .notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}

.whatsapp-float .ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #4ade80;
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  pointer-events: none;
}

.whatsapp-float .tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--slate-900);
  color: white;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
}

.whatsapp-float .tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--slate-900);
}


/* ============================================================
   26. Keyframe Animations
   ============================================================ */

/* ── Orbs ── */
@keyframes orbFloat1 {

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

  50% {
    transform: translate(100px, -50px) scale(1.2);
  }
}

@keyframes orbFloat2 {

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

  50% {
    transform: translate(-50px, 100px) scale(0.8);
  }
}

@keyframes orbFloat3 {

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

  50% {
    transform: translate(-80px, -60px) scale(1.1);
  }
}

/* ── Hero ── */
@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    transform: translateY(-100px) translateX(var(--dx, 30px));
    opacity: 1;
  }

  75% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
}

@keyframes pulseScale {

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

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

@keyframes cursorBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes scrollBounce {

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

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

@keyframes scrollDot {

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

  50% {
    transform: translateY(12px);
  }
}

/* ── Stats ── */
@keyframes bgScroll {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

/* ── Team ── */
@keyframes teamParticleFloat {

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

  10% {
    opacity: 0.3;
  }

  50% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0.6;
  }

  90% {
    opacity: 0.3;
  }
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes spin {
  from {
    transform: scale(1.1) rotate(0deg);
  }

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

@keyframes scanMove {
  0% {
    transform: translateY(-100%);
  }

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

/* ── CTA ── */
@keyframes ctaGradient {
  0% {
    background: linear-gradient(45deg, rgba(20, 184, 166, .1), rgba(6, 182, 212, .1), rgba(59, 130, 246, .1));
  }

  33% {
    background: linear-gradient(45deg, rgba(59, 130, 246, .1), rgba(20, 184, 166, .1), rgba(6, 182, 212, .1));
  }

  66% {
    background: linear-gradient(45deg, rgba(6, 182, 212, .1), rgba(59, 130, 246, .1), rgba(20, 184, 166, .1));
  }

  100% {
    background: linear-gradient(45deg, rgba(20, 184, 166, .1), rgba(6, 182, 212, .1), rgba(59, 130, 246, .1));
  }
}

@keyframes floatEl {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-40px) rotate(180deg);
    opacity: 0.6;
  }
}

/* ── WhatsApp ── */
@keyframes pulse-glow-green {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }

  50% {
    box-shadow: 0 0 20px 10px rgba(34, 197, 94, 0.1);
  }
}

/* ── Entrance ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0) rotate(-10deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }

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

/* ── Generic reusables ── */
@keyframes float {

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

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

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(20, 184, 166, 0.6);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}


/* ============================================================
   27. Scroll-Triggered Fade Utility
   ============================================================ */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   28. Premium Cursor (desktop only)
   ============================================================ */
@media (pointer: fine) {
  .cursor-dot {
    position: fixed;
    width: 16px;
    height: 16px;
    background: linear-gradient(to right, var(--teal-500), var(--cyan-500));
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.15s ease-out, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
  }

  .cursor-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(20, 184, 166, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.25s ease-out, width 0.2s, height 0.2s, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
  }

  .cursor-ring.hovering {
    width: 64px;
    height: 64px;
  }

  .cursor-dot.hovering {
    transform: translate(-50%, -50%) scale(1.5);
  }
}

/* Hide on touch devices */
@media (pointer: coarse) {

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}


/* ============================================================
   29. Responsive Utilities
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.counter-animated {
  display: inline;
}


/* ============================================================
   30. Contact Page
   ============================================================ */

/* ── Hero background with photo overlay ── */
.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-hero-bg .overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.6) 100%);
}

.contact-hero-bg .overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.7) 0%, transparent 60%);
}

/* ── Content + form section ── */
.contact-content-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--slate-50), white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
  }
}

/* ── Info card (left column) ── */
.contact-info-card {
  position: relative;
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 60%, var(--teal-900) 100%);
  border-radius: 1.5rem;
  overflow: hidden;
  color: white;
  padding: 0;
}

.contact-info-card .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(20,184,166,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info-card .inner {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-info-item .title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-400);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-item .detail {
  color: rgba(255,255,255,0.85);
  font-size: 0.925rem;
  line-height: 1.6;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  background: rgba(20,184,166,0.15);
  border: 1px solid rgba(20,184,166,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal-400);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

/* ── Trust card (below info card) ── */
.trust-card {
  background: white;
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--slate-100);
}

.trust-card h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 1rem;
}

.trust-card h4 svg {
  width: 18px;
  height: 18px;
  color: var(--teal-500);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--slate-600);
  padding: 0.45rem 0;
}

.trust-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
  flex-shrink: 0;
}

/* ── Form card (right column) ── */
.form-card {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.1);
  overflow: hidden;
  border: 1px solid var(--slate-100);
}

.form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(90deg, var(--slate-900), var(--teal-900));
  color: white;
}

.form-header h3 {
  font-size: 1.375rem;
  font-weight: 700;
}

.form-header p {
  color: var(--slate-400);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.form-header .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  background: rgba(20,184,166,0.2);
  border: 1px solid rgba(20,184,166,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  flex-shrink: 0;
}

.form-header .icon-box svg {
  width: 24px;
  height: 24px;
}

.form-body {
  padding: 2rem;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-600);
  margin-bottom: 1rem;
}

.form-section-title .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
  flex-shrink: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--slate-200);
  border-radius: 0.625rem;
  font-size: 0.925rem;
  font-family: inherit;
  color: var(--slate-800);
  background: var(--slate-50);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  background: white;
  box-shadow: 0 0 0 3px rgba(20,184,166,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* ── Submit button ── */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--teal-500), var(--cyan-500), var(--blue-500));
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  margin-top: 1.5rem;
  box-shadow: 0 8px 24px -4px rgba(20,184,166,0.4);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(20,184,166,0.55);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-submit svg {
  width: 20px;
  height: 20px;
}

/* ── Form success state ── */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.form-success .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--teal-600);
}

.form-success .icon-wrap svg {
  width: 36px;
  height: 36px;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--slate-600);
  max-width: 400px;
  margin: 0 auto;
}

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: #ef4444;
  background: #fef2f2;
}

.form-error {
  font-size: 0.8rem;
  color: #dc2626;
  margin-top: 0.25rem;
  display: block;
}

/* ── Map section ── */
.map-section {
  padding: 5rem 0;
  background: var(--slate-50);
}

.map-container {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.12);
  border: 1px solid var(--slate-200);
}

.map-container iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

@media (max-width: 767px) {
  .map-container iframe {
    height: 320px;
  }
}

/* ============================================================
   About Page – Mission / Vision / Values (MVV)
   ============================================================ */
.mvv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .mvv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mvv-card {
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.mvv-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.mvv-icon svg,
.mvv-icon i {
  width: 28px;
  height: 28px;
  color: white;
}

.mvv-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.mvv-card p {
  font-size: 1rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ============================================================
   About Page – CEO Spotlight (Premium Redesign)
   ============================================================ */

/* Section wrapper */
.ceo-section {
  padding: 7rem 0;
  background: linear-gradient(135deg, #0b1120 0%, #0f172a 40%, #0d2b2b 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative background orbs */
.ceo-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.ceo-orb--1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(20,184,166,0.18) 0%, transparent 70%);
}
.ceo-orb--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
}
.ceo-orb--3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
}

/* Subtle grid texture */
.ceo-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Card */
.ceo-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2.5rem;
  padding: 3.5rem;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(20,184,166,0.08),
    0 40px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

@media (min-width: 1024px) {
  .ceo-card {
    grid-template-columns: 460px 1fr;
    gap: 5rem;
    align-items: start;
  }
}

/* ── Image column ── */
.ceo-image-col {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Glow halo */
.ceo-glow-ring {
  position: absolute;
  inset: -24px;
  border-radius: 2.25rem;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(20,184,166,0.55) 20%,
    transparent 45%,
    rgba(99,102,241,0.4) 70%,
    rgba(6,182,212,0.35) 85%,
    transparent 100%
  );
  animation: ceoGlowSpin 7s linear infinite;
  filter: blur(3px);
  z-index: 0;
}

@keyframes ceoGlowSpin {
  to { transform: rotate(360deg); }
}

/* Corner accent bracket */
.ceo-corner-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 70px;
  height: 70px;
  border-top: 3px solid var(--teal-400);
  border-left: 3px solid var(--teal-400);
  border-radius: 6px 0 0 0;
  z-index: 3;
  box-shadow: -4px -4px 16px rgba(20,184,166,0.2);
}
.ceo-corner-accent::after {
  content: '';
  position: absolute;
  bottom: -54px;
  right: -54px;
  width: 70px;
  height: 70px;
  border-bottom: 3px solid rgba(99,102,241,0.7);
  border-right: 3px solid rgba(99,102,241,0.7);
  border-radius: 0 0 6px 0;
  box-shadow: 4px 4px 16px rgba(99,102,241,0.15);
}

/* Image frame */
.ceo-image {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  box-shadow:
    0 0 0 2px rgba(20,184,166,0.3),
    0 0 40px rgba(20,184,166,0.12),
    0 40px 80px rgba(0,0,0,0.6),
    0 80px 120px rgba(0,0,0,0.3);
}

.ceo-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.ceo-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.25) 35%,
    rgba(0,0,0,0.05) 55%,
    transparent 70%
  );
}

/* Subtle inner border shine */
.ceo-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.75rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -1px 0 rgba(0,0,0,0.3);
  pointer-events: none;
  z-index: 3;
}

/* Experience badge inside image */
.ceo-exp-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(10,20,35,0.65);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-top-color: rgba(255,255,255,0.25);
  border-radius: 1.125rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 4;
}

.ceo-exp-icon {
  width: 42px;
  height: 42px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--teal-500), var(--cyan-500));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(20,184,166,0.4);
}

/* Floating stat chips */
.ceo-stat-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.875rem;
  padding: 0.625rem 0.875rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 4;
  animation: chipFloat 3s ease-in-out infinite;
}

.ceo-stat-chip--projects {
  top: 2.5rem;
  right: -1.75rem;
  animation-delay: 0s;
}

.ceo-stat-chip--award {
  top: 50%;
  right: -1.75rem;
  transform: translateY(-50%);
  animation-delay: 1.5s;
}

.ceo-stat-chip--award:hover {
  transform: translateY(calc(-50% - 3px));
}

@media (max-width: 1023px) {
  .ceo-stat-chip--projects { right: 0.75rem; top: 0.75rem; }
  .ceo-stat-chip--award    { right: 0.75rem; top: auto; bottom: 6.5rem; transform: none; }
  .ceo-stat-chip--award:hover { transform: translateY(-3px); }
}

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.ceo-stat-chip-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ceo-stat-chip-num {
  font-size: 1rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}

.ceo-stat-chip-label {
  font-size: 0.7rem;
  color: var(--slate-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Info column ── */
.ceo-info {
  display: flex;
  flex-direction: column;
}

/* Name block */
.ceo-name-block {
  position: relative;
  margin-bottom: 0.75rem;
}

.ceo-name {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 30%, var(--teal-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 1024px) {
  .ceo-name { font-size: 3rem; }
}

.ceo-name-shimmer {
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 60%;
  background: linear-gradient(90deg, var(--teal-400), var(--cyan-400), transparent);
  border-radius: 1px;
}

/* Role row */
.ceo-role-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.ceo-title {
  font-size: 1rem;
  color: var(--teal-400);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ceo-dot-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--slate-500);
}

.ceo-expertise {
  font-size: 0.9rem;
  color: var(--slate-400);
}

/* Shimmer divider */
.ceo-divider {
  margin: 2rem 0;
}

.ceo-divider-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--teal-500),
    rgba(99,102,241,0.6),
    transparent
  );
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.ceo-divider-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: ceoShimmer 2.5s ease-in-out infinite;
}

@keyframes ceoShimmer {
  to { left: 160%; }
}

/* Bio */
.ceo-bio {
  font-size: 1.05rem;
  color: var(--slate-300);
  line-height: 1.8;
  margin: 0 0 2rem;
}

/* Achievements list */
.ceo-achievements {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ceo-achievements li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--slate-300);
}

.ceo-ach-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--teal-400);
  margin-top: 1px;
}

.ceo-ach-icon svg,
.ceo-ach-icon i {
  width: 20px;
  height: 20px;
}

/* Tags */
.ceo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.ceo-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-300);
  background: rgba(20,184,166,0.1);
  border: 1px solid rgba(20,184,166,0.25);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  letter-spacing: 0.03em;
  transition: background 0.2s, border-color 0.2s;
}

.ceo-tag:hover {
  background: rgba(20,184,166,0.2);
  border-color: rgba(20,184,166,0.5);
}

/* Social action buttons */
.ceo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ceo-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.ceo-social-btn:hover {
  background: var(--teal-500);
  border-color: var(--teal-400);
  transform: translateY(-2px);
  color: white;
}

.ceo-social-btn svg,
.ceo-social-btn i {
  width: 18px;
  height: 18px;
}

/* Legacy aliases kept for other pages */
.dot-teal {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-400);
  flex-shrink: 0;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.social-btn:hover {
  background: var(--teal-500);
  transform: translateY(-2px);
}

.social-btn svg,
.social-btn i {
  width: 20px;
  height: 20px;
}

/* ============================================================
   About Page – Timeline
   ============================================================ */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal-300), var(--cyan-300));
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .timeline::before {
    left: 1.25rem;
  }
}

.timeline-item {
  position: relative;
  width: 45%;
  margin-bottom: 3rem;
}

.timeline-item.left {
  left: 0;
  text-align: right;
  padding-right: 3rem;
}

.timeline-item.right {
  left: 55%;
  text-align: left;
  padding-left: 3rem;
}

@media (max-width: 767px) {
  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 3.5rem;
    padding-right: 0;
  }
}

.timeline-item.left::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 1.5rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal-400);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--teal-200);
}

.timeline-item.right::after {
  content: '';
  position: absolute;
  left: -8px;
  top: 1.5rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal-400);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--teal-200);
}

@media (max-width: 767px) {
  .timeline-item.left::after,
  .timeline-item.right::after {
    left: 0.5rem;
    right: auto;
  }
}

.timeline-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--slate-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.timeline-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.timeline-item.left .timeline-header {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .timeline-item.left .timeline-header {
    flex-direction: row;
  }
}

.timeline-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-icon svg,
.timeline-icon i {
  width: 22px;
  height: 22px;
  color: white;
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   About Page – Core Values Grid
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--slate-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.value-icon svg,
.value-icon i {
  width: 24px;
  height: 24px;
  color: white;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   About Page – Culture Section
   ============================================================ */
.culture-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.culture-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.culture-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--teal-500), var(--cyan-500));
  display: flex;
  align-items: center;
  justify-content: center;
}

.culture-icon svg,
.culture-icon i {
  width: 22px;
  height: 22px;
  color: white;
}

.culture-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}

.culture-item p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   About Page – Office Stats Grid
   ============================================================ */
.office-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .office-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.office-stat {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--slate-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.office-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, var(--teal-500), var(--cyan-500));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.office-stat-icon svg,
.office-stat-icon i {
  width: 24px;
  height: 24px;
  color: white;
}

.office-stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.375rem;
}

.office-stat-label {
  font-size: 0.85rem;
  color: var(--slate-500);
  font-weight: 500;
}
