/* CSS Variables */
:root {
  --primary: #2563eb;
  --primary-old: #7a96c0;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --background: #fafbff;
  --foreground: #0f172a;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --card: #ffffff;
  --border: #e2e8f0;
  --accent: #06b6d4;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* Utility Classes */
.perspective-1000 {
  perspective: 1000px;
}

.preserve-3d {
  transform-style: preserve-3d;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: var(--card);
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--background);
  border-color: var(--primary);
  color: var(--primary);
}

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

.btn-white:hover {
  background: var(--background);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

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

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--foreground);
}

.logo-icon {
  width: 40px;
  height: 40px;
  /* background: linear-gradient(135deg, var(--primary), var(--accent)); */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 40px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--foreground);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
}

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

@keyframes pulse {

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

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

.hero-title {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 24px;
  color: var(--foreground);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: white;
  border: 2px solid white;
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-more {
  background: var(--foreground);
  font-size: 10px;
}

.hero-stat span {
  font-size: 14px;
  color: var(--muted);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.floating-modal-container {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.floating-modal {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
  transform: rotateX(5deg) rotateY(-5deg);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotateX(5deg) rotateY(-5deg);
  }

  50% {
    transform: translateY(-20px) rotateX(8deg) rotateY(-8deg);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(248, 250, 252, 0.8);
  border-bottom: 1px solid var(--border);
}

.modal-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red {
  background: #ef4444;
}

.dot.yellow {
  background: #f59e0b;
}

.dot.green {
  background: #22c55e;
}

.modal-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.modal-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.candidate-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.candidate-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
  transform: translateX(4px);
}

.candidate-avatar {
  position: relative;
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-dot.online {
  background: #22c55e;
}

.status-dot.away {
  background: #f59e0b;
}

.candidate-info {
  flex: 1;
  min-width: 0;
}

.candidate-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.candidate-info p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.candidate-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.skill-tag {
  padding: 2px 8px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
}

.candidate-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.stars {
  color: #f59e0b;
  font-size: 12px;
}

.rating-text {
  font-size: 10px;
  font-weight: 600;
  color: #22c55e;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  color: var(--primary);
}

.element-1 {
  top: -20px;
  right: -20px;
  animation: floatElement 4s ease-in-out infinite;
}

.element-2 {
  bottom: 60px;
  left: -30px;
  animation: floatElement 5s ease-in-out infinite 0.5s;
}

.element-3 {
  bottom: -10px;
  right: 40px;
  animation: floatElement 4.5s ease-in-out infinite 1s;
  color: #f59e0b;
}

@keyframes floatElement {

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

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

.hero-bg-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center right, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

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

/* Partners Section */
.partners {
  padding: 60px 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.partners-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.partners-label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}

.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.marquee {
  overflow: hidden;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--card), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--card), transparent);
}

.marquee-content {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
}

.marquee-reverse .marquee-content {
  animation: marquee-reverse 30s linear infinite;
}

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

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

@keyframes marquee-reverse {
  0% {
    transform: translateX(-50%);
  }

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

.partner-logo {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--muted-light);
  padding: 16px 32px;
  background: rgba(248, 250, 252, 0.5);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
  transform: scale(1.05);
}

/* Stats Section */
.stats {
  padding: 80px 24px;
  /* background: linear-gradient(135deg, var(--primary), var(--primary-dark)); */
  background: #06b6d4;

}

.stats-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.stat-suffix {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.stat-label {
  font-size: 16px;
  opacity: 0.8;
  margin-top: 8px;
}

/* About Section */
.about {
  background: #0f172a;
  color: white;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
}

.about-highlight-text {
  padding: 120px 24px;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.highlight-paragraph {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.4;
}

.word {
  display: inline;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.5s ease;
}

.word.highlight {
  color: rgba(6, 182, 212, 0.25);
}

.word.active {
  color: white;
}

.word.highlight.active {
  color: #06b6d4;
}

.about-content {
  padding: 80px 24px 180px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(36px, 4vw, 48px);
  /* color: #06b6d4; */
  margin-bottom: 20px;
}

.about-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.about-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  line-height: 1.7;
}

.text-accent {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.badge-number {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

.badge-text {
  font-size: 12px;
  color: var(--muted);
}

/* Why Us Section */
.why-us {
  padding: 120px 24px;
  background: var(--background);
}

.why-us-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s ease;
}

.feature-link:hover {
  gap: 10px;
}

/* Services Section */
.services {
  padding: 120px 24px;
  background: var(--card);
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--background);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
  overflow: hidden;
  height: 200px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-content {
  padding: 24px;
}

.service-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s ease;
}

.service-link:hover {
  gap: 12px;
}

/* How It Works Section */
.how-it-works {
  padding: 120px 0;
  background-color: var(--background);
  position: relative;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.walkthrough-wrapper {
  position: relative;
  margin-top: 80px;
  padding: 40px 0;
}

.progress-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--border);
  transform: translateX(-50%);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  /* Animated via JS */
  background: linear-gradient(to bottom, var(--primary-light), var(--primary));
  transition: height 0.1s linear;
}

.steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.step-v-item {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.step-v-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: 4px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--muted);
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-v-item.active .step-v-marker {
  background: var(--primary);
  border-color: #f1f5f9;
  color: white;
  transform: translateX(-50%) scale(1.2);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.step-v-content {
  width: 42%;
  background: white;
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  cursor: default;
}

.step-v-content:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-light);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.step-v-content:hover .step-v-icon {
  transform: scale(1.1) rotate(3deg);
  background: var(--primary);
  color: white;
}

.step-v-item.active .step-v-content {
  border-color: var(--primary-light);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08);
  transform: translateY(-5px);
}

/* Alternating Layout */
.step-v-item:nth-child(odd) .step-v-content {
  margin-right: auto;
}

.step-v-item:nth-child(even) .step-v-content {
  margin-left: auto;
  flex-direction: row-reverse;
  text-align: right;
}

.step-v-icon {
  width: 60px;
  height: 60px;
  background: #f8faff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.step-v-item.active .step-v-icon {
  background: var(--primary);
  color: white;
  transform: rotate(5deg);
}

.step-v-text h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.step-v-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .progress-line {
    left: 20px;
    transform: none;
  }

  .step-v-marker {
    left: 20px;
    transform: none;
  }

  .step-v-item.active .step-v-marker {
    transform: scale(1.1);
  }

  .step-v-content {
    width: calc(100% - 60px);
    margin-left: auto !important;
    padding: 30px;
    flex-direction: row !important;
    text-align: left !important;
  }
}

/* Small CTA Section */
.small-cta {
  padding: 40px 0;
  background-color: var(--background);
}

.small-cta-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

.small-cta-card {
  background: linear-gradient(135deg, var(--foreground) 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.small-cta-card::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.small-cta-card::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.small-cta-content {
  position: relative;
  z-index: 1;
}

.small-cta-content h2 {
  font-size: 30px;
  margin-bottom: 12px;
  color: white;
  line-height: 1.3;
}

.small-cta-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
}

.small-cta-actions {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.small-cta-actions .btn-primary {
  background: white;
  color: var(--foreground);
  padding: 14px 28px;
}

.small-cta-actions .btn-primary:hover {
  background: #f1f5f9;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.small-cta-actions .btn-outline-primary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  background: transparent;
}

.small-cta-actions .btn-outline-primary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: white;
}

@media (max-width: 992px) {
  .small-cta {
    padding: 20px 0;
  }

  .small-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 40px;
    gap: 30px;
  }

  .small-cta-content h2 {
    font-size: 26px;
  }

  .small-cta-actions {
    width: 100%;
    flex-direction: column;
  }
}

/* Testimonials Section */
.testimonials {
  position: relative;
}

.testimonials-container {
  position: relative;
}

.testimonial-card {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  position: sticky;
  top: 0;
}

.testimonial-card:nth-child(1) {
  z-index: 1;
}

.testimonial-card:nth-child(2) {
  z-index: 2;
}

.testimonial-card:nth-child(3) {
  z-index: 3;
}

.testimonial-card:nth-child(4) {
  z-index: 4;
}

.testimonial-dark {
  background: #0f172a;
  color: white;
}

.testimonial-blue {
  background: var(--primary);
  color: white;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.testimonial-rose {
  background: #e11d48;
  color: white;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.testimonial-emerald {
  background: #059669;
  color: white;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.logo-squares {
  display: grid;
  grid-template-columns: repeat(2, 12px);
  gap: 2px;
}

.logo-squares span {
  width: 12px;
  height: 12px;
}

.logo-bar {
  width: 8px;
  height: 32px;
  border-radius: 4px;
}

.logo-icon-airbnb {
  color: white;
}

.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.testimonial-content blockquote {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 40px;
}

.testimonial-author {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-name {
  display: block;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
}

.author-role {
  font-size: 14px;
  opacity: 0.7;
}

/* CTA Section */
.cta {
  padding: 120px 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.cta h2 {
  font-size: clamp(36px, 4vw, 52px);
  color: white;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.orb-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -100px;
  animation: orbFloat 10s ease-in-out infinite 1s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 6s ease-in-out infinite 0.5s;
}

@keyframes orbFloat {

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

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* Footer */
.footer {
  background: #0f172a;
  color: white;
  padding: 80px 24px 40px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: white;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Scroll Reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 40px;
  }

  .floating-modal-container {
    max-width: 360px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 100px 32px 40px;
    gap: 8px;
    margin: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 17px;
    font-weight: 500;
    color: var(--foreground);
    padding: 14px 16px;
    border-radius: var(--radius);
    transition: all 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a:active {
    background: rgba(37, 99, 235, 0.15);
    color: var(--primary);
  }

  .nav-links a::after {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    position: relative;
    z-index: 1002;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s ease;
  }

  .mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  .mobile-menu-btn span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-menu-btn span:nth-child(1) {
    transform: translateY(-7px);
  }

  .mobile-menu-btn span:nth-child(2) {
    transform: translateY(0);
  }

  .mobile-menu-btn span:nth-child(3) {
    transform: translateY(7px);
  }

  /* Hamburger to X animation */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding: 100px 16px 60px;
  }

  .hero-title {
    font-size: 32px;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .stat-number {
    font-size: 40px;
  }

  .about-highlight-text {
    padding: 80px 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Logo Styles */
.main-container {
  display: flex;
  align-items: center;
}

.new-logo-image {
  width: 48px;
  height: 48px;
  margin-right: 12px;
}

.new-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-main {
  display: flex;
  flex-direction: column;
}

.new-logo-border {
  border-left: 1px solid #000;
  padding-left: 12px;
}

.navbar .new-logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}

.navbar .new-logo a {
  color: var(--primary-old);
  /* Using primary color for NeoGen */
}

/* .navbar .new-logo a:hover {
  color: var(--primary);
} */

.navbar .new-logo .class-white {
  color: #000;
  /* Using dark color for Code if on light bg, or white if appropriate */
  font-size: 24px;
  /* Unifying size */
}

.consult {
  font-size: 10px !important;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .new-logo-image {
    width: 32px;
    height: 32px;
  }

  .navbar .new-logo {
    font-size: 18px;
  }

  .new-logo-border {
    padding-left: 10px;
  }

  .new-logo {
    font-size: 18px;
  }

  .consult {
    font-size: 8px !important;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  background-color: #128c7e;
  box-shadow: 2px 10px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }
}