/* 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: 78vh;
  display: flex;
  align-items: center;
  padding: 125px 24px 50px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  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: 16px;
}

.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(32px, 4.2vw, 48px);
  margin-bottom: 16px;
  color: var(--foreground);
  line-height: 1.15;
}

.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: 17px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

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

.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);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

@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;
  animation-play-state: paused;
}

.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) {
  .col-span-2 {
    grid-column: span 1;
  }

  .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 {
    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) {
  .services-grid,
  .saas-grid,
  .industries-grid,
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .feature-card,
  .saas-card,
  .industry-card {
    padding: 24px !important;
  }

  .hero-highlight-card {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .navbar .new-logo {
    font-size: 20px;
  }
  .navbar .new-logo .class-white {
    font-size: 20px;
  }
  .new-logo-image {
    width: 28px;
    height: 28px;
    margin-right: 8px;
  }
  .new-logo-border {
    padding-left: 8px;
  }
  .consult {
    font-size: 8px !important;
  }

  .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;
  }
}


/* Glowing Careers Button */
.nav-links a.nav-btn-glow {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white !important;
  padding: 8px 18px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
  animation: glowPulse 2s infinite;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-left: 10px;
}

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

.nav-links a.nav-btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.8);
  color: white !important;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
  }

  50% {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.8);
  }

  100% {
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
  }
}

@media (max-width: 768px) {
  .nav-links a.nav-btn-glow {
    text-align: center;
    margin-left: 0;
    margin-top: 10px;
  }
}

/* ==========================================================================
   New Layout Additions: Dropdowns, Subpages, SaaS grids, Industries, Pricing
   ========================================================================== */

/* Dropdown Navigation for Desktop */
.nav-item-dropdown {
  position: relative;
  perspective: 1000px;
}

.nav-item-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-item-dropdown > a::after {
  content: '\ea4a'; /* Boxicon down arrow icon */
  font-family: 'boxicons' !important;
  font-size: 12px;
  transition: transform 0.2s ease;
}

.nav-item-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) rotateX(-15deg);
  transform-origin: top center;
  width: 280px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1010;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) rotateX(0deg);
}

.dropdown-menu a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 500;
  color: var(--muted) !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a:hover {
  background: rgba(37, 99, 235, 0.08) !important;
  color: var(--primary) !important;
  transform: translateX(4px);
}

.dropdown-menu a i {
  font-size: 18px;
  color: var(--primary);
  opacity: 0.8;
}

/* Mobile Dropdown Adjustments */
@media (max-width: 768px) {
  .nav-item-dropdown > a::after {
    margin-left: auto;
  }
  
  .dropdown-menu {
    position: static;
    transform: none !important;
    width: 100%;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
  }
  
  .nav-item-dropdown.mobile-active .dropdown-menu {
    height: auto;
    opacity: 1;
    visibility: visible;
    padding: 8px 0 8px 16px;
  }
  
  .dropdown-menu a {
    font-size: 15px !important;
    padding: 10px 12px;
  }
}

/* Subpage Common Templates */
.subpage {
  padding-top: 100px;
}

.subpage-hero {
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fafbff 0%, #f1f5f9 100%);
  border-bottom: 1px solid var(--border);
}

.subpage-hero-dark {
  background: radial-gradient(circle at 50% -20%, #1e293b 0%, #0f172a 100%);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.subpage-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

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

.subpage-hero-dark .subpage-badge {
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent);
}

.subpage-title {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  line-height: 1.2;
}

.subpage-description {
  font-size: 18px;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 40px;
}

.subpage-hero-dark .subpage-description {
  color: rgba(255, 255, 255, 0.7);
}

/* Grid Sections */
.subpage-section {
  padding: 100px 24px;
}

.subpage-container {
  max-width: 1200px;
  margin: 0 auto;
}

.subpage-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .subpage-grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Feature Split Section */
.feature-split-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  background: white;
  padding: 12px;
}

.subpage-hero-dark .feature-split-image {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.feature-split-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.feature-split-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-split-icon {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.subpage-hero-dark .feature-split-icon {
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent);
}

.feature-split-text h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.feature-split-text p {
  font-size: 14px;
  color: var(--muted);
}

.subpage-hero-dark .feature-split-text p {
  color: rgba(255, 255, 255, 0.6);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 50px auto 0;
  }
}

.pricing-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--primary-light);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.08);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.pricing-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--foreground);
}

.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: #22c55e;
  font-size: 18px;
}

/* FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.subpage-hero-dark .faq-item {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
}

.faq-question::after {
  content: '\ea4a'; /* Down arrow */
  font-family: 'boxicons' !important;
  font-size: 18px;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 24px 24px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.subpage-hero-dark .faq-answer p {
  color: rgba(255, 255, 255, 0.6);
}

/* Industries We Serve Section styles */
.industries-section {
  padding: 100px 24px;
  background: #0f172a;
  color: white;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

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

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

.industry-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.industry-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.1);
}

.industry-icon {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-block;
}

.industry-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* SaaS Grid homepage section */
.saas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

@media (max-width: 1024px) {
  .saas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.saas-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.saas-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.saas-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.saas-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.saas-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.saas-card:hover .saas-card-link {
  gap: 8px;
}

/* Back Link for subpages */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 24px;
  transition: transform 0.2s ease;
}

.back-link:hover {
  transform: translateX(-4px);
}

.subpage-hero-dark .back-link {
  color: var(--accent);
}

/* Technical Specification Panel */
.tech-spec-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-top: 50px;
}

.subpage-hero-dark .tech-spec-panel {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

.tech-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .tech-spec-grid {
    grid-template-columns: 1fr;
  }
}

.tech-spec-item h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--foreground);
}

.subpage-hero-dark .tech-spec-item h4 {
  color: white;
}

.tech-spec-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.subpage-hero-dark .tech-spec-item p {
  color: rgba(255, 255, 255, 0.6);
}

/* Code rendered interactive mockup for SaaS product pages */
.mockup-window {
  background: #1e293b;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.mockup-header {
  background: #0f172a;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.mockup-title {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.mockup-body {
  padding: 24px;
  font-size: 13px;
  min-height: 300px;
}

/* Futuristic Particle Background Canvas & Glare Interactions */
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-highlight-card {
  border-radius: var(--radius-xl);
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 24px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.hero-highlight-card.style-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-highlight-card.style-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero-highlight-card.style-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.col-span-2 {
  grid-column: span 2;
}

/* Partner Marquee Image Styling */
.partner-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(248, 250, 252, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--muted-light);
  white-space: nowrap;
}

.partner-logo img {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  object-fit: contain;
}

/* Highlight style for key client (Care Health Insurance) - matches standard partner-logo style, only adjusts logo image size for visibility */
.partner-logo.highlight-client img {
  width: 36px !important;
  height: 22px !important;
  border-radius: 2px;
}

/* Floating Brand Badges (AWS, Microsoft, SAP, Odoo, Salesforce) */
.partnerships-logos-container {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.partner-badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  animation: floatBadge 4s ease-in-out infinite alternate;
  animation-delay: var(--d);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-badge:hover {
  transform: scale(1.2) translateY(-6px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
  border-color: var(--primary);
}

.partner-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes floatBadge {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}

/* Netflix-Style Loader Overlay */
.netflix-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #030712; /* Very dark rich blue-black */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.netflix-loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.netflix-loader-container {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform-origin: 58% 68%;
  transition: transform 0.9s cubic-bezier(0.85, 0, 0.15, 1), filter 0.8s ease, opacity 0.8s ease;
}

/* Netflix cinematic zoom out */
.netflix-loader.zoom-out .loader-logo-wrapper {
  transform: scale(140) translateZ(0);
  filter: blur(2px);
  opacity: 0;
}

.loader-logo-gif {
  width: 90px;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 15px rgba(37, 99, 235, 0.5));
  animation: logoPulse 1.8s ease-in-out infinite alternate;
}

@keyframes logoPulse {
  0% {
    transform: scale(0.95);
    filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.4));
  }
  100% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(6, 182, 212, 0.7));
  }
}

.loader-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin: 0;
  letter-spacing: 4px;
  display: flex;
  justify-content: center;
  gap: 1px;
}

/* Individual letter spacing / slide up animation */
.loader-logo-text .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) scale(0.5);
  filter: blur(4px);
  animation: letterReveal 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  background: linear-gradient(135deg, white 40%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Red letter styling for "Code" or key letters to mimic Netflix red styling but in our corporate colors */
.loader-logo-text .letter:nth-child(n+7) {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.4));
}

/* Alternate animation delays for letters */
.loader-logo-text .letter:nth-child(1) { animation-delay: 0.05s; }
.loader-logo-text .letter:nth-child(2) { animation-delay: 0.1s; }
.loader-logo-text .letter:nth-child(3) { animation-delay: 0.15s; }
.loader-logo-text .letter:nth-child(4) { animation-delay: 0.2s; }
.loader-logo-text .letter:nth-child(5) { animation-delay: 0.25s; }
.loader-logo-text .letter:nth-child(6) { animation-delay: 0.3s; }
.loader-logo-text .letter:nth-child(7) { animation-delay: 0.35s; }
.loader-logo-text .letter:nth-child(8) { animation-delay: 0.4s; }
.loader-logo-text .letter:nth-child(9) { animation-delay: 0.45s; }
.loader-logo-text .letter:nth-child(10) { animation-delay: 0.5s; }

.loader-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 14px;
  margin-left: 6px; /* offset letter-spacing on last char */
  opacity: 0;
  transform: translateY(10px);
  animation: taglineReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.65s;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

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

@keyframes letterReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.loader-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  opacity: 0.5;
  animation: scanLine 2s linear infinite;
  pointer-events: none;
}

@keyframes scanLine {
  0% {
    top: -10%;
  }
  100% {
    top: 110%;
  }
}

/* Giant Parallax Background text */
.parallax-bg-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16vw;
  font-weight: 900;
  color: rgba(37, 99, 235, 0.015);
  -webkit-text-stroke: 1px rgba(37, 99, 235, 0.035);
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  position: absolute;
  z-index: 0;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  user-select: none;
  transition: transform 0.1s ease-out;
}

/* Mobile Extra-Small Breakpoints Override */
@media (max-width: 480px) {
  .loader-logo-text {
    font-size: 28px;
    letter-spacing: 2px;
  }
  .loader-tagline {
    font-size: 10px;
    letter-spacing: 4px;
    margin-top: 10px;
  }
  .floating-modal-container {
    max-width: 100%;
    padding: 0 10px;
  }
  .hero {
    padding-top: 110px;
  }
}

/* Isolated Mobile Grid & Card Responsiveness Overrides */
@media (max-width: 768px) {
  .services-grid,
  .saas-grid,
  .industries-grid,
  .features-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .feature-card,
  .saas-card,
  .industry-card {
    padding: 24px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-highlight-card {
    padding: 24px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }
}

/* 3D Flipping Card Transition Styles */
#flippingCard {
  will-change: transform, left, top, width, height, opacity;
}

.flipping-card-inner {
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
}

.flipping-card-front, .flipping-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.flipping-card-front {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  padding: 16px;
  color: var(--foreground);
}

.flipping-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  padding: 40px 50px;
  color: white;
}

/* Ensure the cloned cards fill their parent faces perfectly */
.flipping-card-front > div,
.flipping-card-back > div {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.flipping-card-front > div {
  animation: none !important;
  transform: none !important;
}

/* Adjust paddings for cloned IT Staff Augmentation content to prevent overflow in smaller width states */
.flipping-card-back > div {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 30px !important;
  padding: 30px 40px !important;
}

/* Transition for placeholder card */
#servicesCardPlaceholder {
  transition: opacity 0.4s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: opacity, transform;
}


/* Additional styles for new updates (Form, Social mini icons, and Testimonials) */
.testimonial-card:nth-child(5) {
  z-index: 5;
}

.testimonial-yellow {
  background: #fbbf24; /* vibrant amber yellow */
  color: #0f172a !important; /* dark high-contrast text */
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.testimonial-yellow blockquote {
  color: #0f172a !important;
}

.testimonial-yellow .author-name {
  color: #0f172a !important;
}

.testimonial-yellow .author-role {
  color: rgba(15, 23, 42, 0.75) !important;
}

.testimonial-yellow .testimonial-author {
  border-top: 1px solid rgba(15, 23, 42, 0.15) !important;
}

/* Digital Marketing Mini Social Icons */
.social-icons-wrapper {
  display: flex;
  gap: 10px;
  margin: 16px 0;
}

.social-mini-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 50%;
  color: var(--primary);
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-sizing: border-box;
}

.social-mini-icon:hover {
  transform: scale(1.2) translateY(-2px);
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

/* Enquiry Form Styling */
.cta-form-container {
  max-width: 650px;
  margin: 40px auto 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 35px;
  text-align: left;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

.cta-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cta-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: white;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.cta-form select option {
  background: #0f172a;
  color: white;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-color: white;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

@media (max-width: 576px) {
  .cta-form {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  .cta-form-container {
    padding: 20px !important;
  }
}

/* Footer Address Styling */
.footer-address-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-address-item:last-child {
  margin-bottom: 0;
}

.footer-address-item i {
  color: var(--primary-light);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-address-item p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

/* Floating Chatbot Widget Styling */
.chatbot-widget {
  position: fixed;
  bottom: 42px;
  right: 115px;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}

.chatbot-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.chatbot-toggle:hover {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-light);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.6);
}

.chatbot-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: chatbotPulse 2s infinite;
  pointer-events: none;
  box-sizing: border-box;
}

@keyframes chatbotPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.chatbot-window {
  position: fixed;
  bottom: 100px;
  right: 40px;
  width: 360px;
  height: 400px;
  max-height: calc(100vh - 120px);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.chatbot-window.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0f172a 100%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.chatbot-avatar img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.chatbot-info h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: white;
}

.chatbot-status {
  font-size: 11px;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 4px;
}

.chatbot-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
}

.chatbot-close {
  margin-left: auto;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.chatbot-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.chatbot-messages {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-message {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  box-sizing: border-box;
  word-wrap: break-word;
}

.chat-message.bot {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-message.user {
  background: var(--primary);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.chatbot-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chat-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 12px;
  border-radius: 50px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

.chat-chip:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.chatbot-input-area {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 10px;
  background: #0f172a;
}

.chatbot-input-area input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 10px 18px;
  color: white;
  font-size: 13.5px;
  outline: none;
  transition: all 0.3s;
  box-sizing: border-box;
}

.chatbot-input-area input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.chatbot-input-area button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.chatbot-input-area button:hover {
  background: var(--primary-light);
  transform: scale(1.05);
}

/* Typing Indicator Animation */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 4px 8px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
.typing-dot:nth-child(3) { animation-delay: -0.08s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}
@media (max-width: 768px) {
  .chatbot-widget {
    bottom: 20px;
    right: 80px;
  }
  .chatbot-toggle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .chatbot-window {
    bottom: 80px;
    right: 20px;
    width: 340px;
    max-height: calc(100vh - 100px);
  }
}
@media (max-width: 480px) {
  .chatbot-window {
   
    bottom: 80px;
    right: 16px;
    width: calc(100vw - 32px);
    height: 360px;
  }
}
