/* Schbang.com Replica - Glassmorphism Edition */
:root {
  /* Instagram Theme Colors */
  --instagram-purple: #833ab4;
  --instagram-pink: #c13584;
  --instagram-orange: #fd1d1d;
  --instagram-yellow: #f77737;
  --instagram-light-pink: #ffdc80;
  
  /* Instagram Gradient Background */
  --instagram-gradient: linear-gradient(135deg, #833ab4 0%, #c13584 25%, #fd1d1d 50%, #f77737 75%, #ffdc80 100%);
  --instagram-gradient-soft: linear-gradient(135deg, rgba(131, 58, 180, 0.1) 0%, rgba(193, 53, 132, 0.1) 25%, rgba(253, 29, 29, 0.1) 50%, rgba(247, 119, 55, 0.1) 75%, rgba(255, 220, 128, 0.1) 100%);
  
  /* Instagram Light Theme */
  --bg-primary: #fafafa;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f5f5f5;
  --text-primary: #000000;
  --text-secondary: #262626;
  --text-muted: #8e8e8e;
  
  /* Instagram Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-shadow: 0 8px 32px rgba(131, 58, 180, 0.15);
  --glass-blur: blur(12px);
  
  /* Instagram Brand Colors */
  --brand-primary: #833ab4;
  --brand-secondary: #c13584;
  --brand-accent: #fd1d1d;
  
  /* Instagram Gradients */
  --gradient-primary: linear-gradient(135deg, #833ab4, #c13584, #fd1d1d);
  --gradient-secondary: linear-gradient(135deg, #f77737, #ffdc80);
  --gradient-glass: var(--instagram-gradient-soft);
  
  /* Instagram Effects */
  --glow-primary: 0 0 20px rgba(131, 58, 180, 0.3);
  --glow-secondary: 0 0 20px rgba(193, 53, 132, 0.3);
  
  /* Instagram Spacing */
  --radius: 20px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: fit-content; /* Default to content-based height */
  padding: 80px 0; /* Add consistent padding */
}

section.full-height {
  min-height: 100vh;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Static Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(255, 51, 102, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(106, 44, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}

/* Particle System */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: floatParticle 10s infinite linear;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .container > * {
    text-align: center;
  }
  .container [class*="grid"] {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .container [class*="content"] {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Glassmorphism Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.05) 0%, rgba(193, 53, 132, 0.05) 25%, rgba(253, 29, 29, 0.05) 50%, rgba(247, 119, 55, 0.05) 75%, rgba(255, 220, 128, 0.05) 100%);
  opacity: 0.25;
}

.nav.nav--scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-bottom-color: rgba(0,0,0,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  height: 80px;
}
.white{
  color: white;
}

.brand {
  font-weight: 800;
  font-size: 28px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: var(--transition);
  margin-top: 0px;
}

.brand:hover {
  filter: drop-shadow(0 0 10px rgba(255, 51, 102, 0.5));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Mobile nav */
.nav__toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.6);
  align-items: center;
  justify-content: center;
}
.nav__toggle span { display:block; width:18px; height:2px; background:#111; position:relative; }
.nav__toggle span::before, .nav__toggle span::after { content:''; position:absolute; left:0; width:18px; height:2px; background:#111; }
.nav__toggle span::before { top:-6px; }
.nav__toggle span::after { top:6px; }

@media (max-width: 920px) {
  .nav__toggle { display:flex; }
  .nav__links { 
    position: absolute; 
    top: 80px; 
    right: 16px; 
    left: 16px; 
    flex-direction: column; 
    gap: 16px; 
    padding: 16px; 
    background: rgba(255,255,255,0.96); 
    border: 1px solid rgba(0,0,0,0.06); 
    border-radius: 14px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    display: none;
    align-items: center;
    text-align: center;
  }
  .nav__links.active { 
    display: flex;
  }
  .container {
    text-align: center;
  }
  section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .btn {
    justify-content: center;
    width: 100%;
    max-width: 300px;
  }
}

.nav__links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: var(--transition);
}

.nav__links a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav__links a:hover::before {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}



.btn--ghost {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--glass-shadow);
}

/* Hero Section - Glassmorphism */
.hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 40%, rgba(255, 51, 102, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(106, 44, 255, 0.1) 0%, transparent 50%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero__content {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__visual {
    order: 2;
    min-height: 500px;
  }
  .hero__cta {
    justify-content: center;
  }
  .hero__cta .btn {
    width: 100%;
    max-width: 300px;
  }
  .hero__title {
    text-align: center;
  }
  .hero__subtitle {
    text-align: center;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #0411ff, #ff7700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 10px;
}

.hero__subtitle {
  font-size: 24px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero__cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  z-index: 2;
}

.hero__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

/* Influence Network Styles */
.influence-network {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .influence-network {
        min-height: 500px;
        margin: 0;
        padding: 40px 0;
    }
    .network-node.square {
        width: 50px;
        height: 50px;
    }
    .network-node.portrait {
        width: 65px;
        height: 116px;
    }
    .center-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
  @keyframes rotateCircular {
    0% {
      transform: translate(-50%, -50%) rotate(0deg) translateX(80px) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg) translateX(80px) rotate(-360deg);
    }
  }
  
  .influence-network {
    min-height: 300px;
    transform: scale(1.45);
    margin: -40px 0;
  }
  
  .center-logo {
    width: 80px;
    height: 80px;
  }
  
  .network-node.square {
    width: 30px;
    height: 30px;
  }
  
  .network-node.portrait {
    width: 30px;
    height: 69px;
  }
}

/* Profile Bubbles */
.profile-bubble {
  position: absolute;
  z-index: 10;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 8px 16px;
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: grab;
  user-select: none;
  opacity: 0;
  transform: translateY(20px);
}

.profile-bubble.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.profile-bubble:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 40px rgba(131, 58, 180, 0.2);
}

.profile-bubble:active {
  cursor: grabbing;
}

.profile-1 {
  top: 60px;
  right: 15%;
  transform: translateX(50%);
}

.profile-2 {
  top: 200px;
  left: 10%;
  transform: translateX(-50%);
}

.profile-3 {
  bottom: 80px;
  right: 20%;
  transform: translateX(50%);
}

.profile-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(131, 58, 180, 0.2);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-username {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 13px;
}

/* Network Nodes */
/* Node Positioning */
/* Network Nodes - Circular Arrangement */
.network-node {
  position: absolute;
  cursor: default;
  transition: none;
  z-index: 5;
  user-select: none;
  opacity: 1;
  pointer-events: auto;
  will-change: transform;
}



/* Square nodes (1:1) */
.network-node.square {
  width: 120px;
  height: 120px;
}

/* Portrait nodes (9:16) */
.network-node.portrait {
  width: 110px;
  height: 180px;
}

.network-node.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Add after .network-node.portrait styles */

.network-node.portrait {
  pointer-events: none;
}

.network-node.square {
  pointer-events: auto;
  cursor: pointer;
}

.network-node.square a {
  cursor: pointer;
  z-index: 10;
}

.node-media {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(131, 58, 180, 0.3),
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  position: relative;
}

.node-media::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(131, 58, 180, 0.1), rgba(193, 53, 132, 0.1));
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.node-media img,
.node-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 0;
}

.network-node:hover .node-media {
  box-shadow: 
    0 20px 60px rgba(131, 58, 180, 0.4),
    0 8px 25px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(131, 58, 180, 0.5);
}

.network-node:hover .node-media::before {
  opacity: 1;
}

.network-node:hover .node-media img,
.network-node:hover .node-media video {
  transform: scale(1.05);
}

.interaction-overlay {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transition: var(--transition);
}

.network-node:hover .interaction-overlay {
  opacity: 1;
}

.interaction-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.interaction-btn:hover {
  transform: scale(1.2);
  background: rgba(131, 58, 180, 0.2);
}

/* Node Positioning */
/* Network Nodes - Circular Arrangement */
.network-node {
  position: absolute;
  cursor: default;
  transition: none;
  z-index: 5;
  user-select: none;
  opacity: 1;
  pointer-events: auto;
}


/* Add this new CSS for center logo */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  z-index: 20;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.network-node a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
/* After the .network-node styles, add: */

.network-node.square a,
.network-node.portrait a {
  pointer-events: auto;
  cursor: pointer;
}

.network-node .node-media {
  pointer-events: auto;
}

/* Circular positioning - 10 nodes around center */
.node-1 {
  top: 50%;
  left: 50%;
  transform-origin: center;
  animation: rotateCircular 20s linear infinite;
  animation-delay: 0s;
}

.node-2 {
  top: 50%;
  left: 50%;
  transform-origin: center;
  animation: rotateCircular 20s linear infinite;
  animation-delay: -2s;
}

.node-3 {
  top: 50%;
  left: 50%;
  transform-origin: center;
  animation: rotateCircular 20s linear infinite;
  animation-delay: -4s;
}

.node-4 {
  top: 50%;
  left: 50%;
  transform-origin: center;
  animation: rotateCircular 20s linear infinite;
  animation-delay: -6s;
}

.node-5 {
  top: 50%;
  left: 50%;
  transform-origin: center;
  animation: rotateCircular 20s linear infinite;
  animation-delay: -8s;
}

.node-6 {
  top: 50%;
  left: 50%;
  transform-origin: center;
  animation: rotateCircular 20s linear infinite;
  animation-delay: -10s;
}

.node-7 {
  top: 50%;
  left: 50%;
  transform-origin: center;
  animation: rotateCircular 20s linear infinite;
  animation-delay: -12s;
}

.node-8 {
  top: 50%;
  left: 50%;
  transform-origin: center;
  animation: rotateCircular 20s linear infinite;
  animation-delay: -14s;
}

.node-9 {
  top: 50%;
  left: 50%;
  transform-origin: center;
  animation: rotateCircular 20s linear infinite;
  animation-delay: -16s;
}

.node-10 {
  top: 50%;
  left: 50%;
  transform-origin: center;
  animation: rotateCircular 20s linear infinite;
  animation-delay: -18s;
}

/* Circular rotation animation */
/* Circular rotation animation */
/* Circular rotation animation */
@keyframes rotateCircular {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(200px) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(200px) rotate(-360deg);
  }
}

/* Adjust radius for mobile */
/* Adjust radius for mobile */
@media (max-width: 768px) {
  @keyframes rotateCircular {
    0% {
      transform: translate(-50%, -50%) rotate(0deg) translateX(130px) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg) translateX(130px) rotate(-360deg);
    }
  }
  
  .influence-network {
    min-height: 400px;
    padding: 20px 0;
  }
  
  .network-node.square {
    width: 60px;
    height: 60px;
  }
  
  .network-node.portrait {
    width: 55px;
    height: 98px;
  }
  
  .center-logo {
    width: 90px;
    height: 90px;
  }
  
  .center-logo img {
    width: 75%;
    height: 75%;
  }
}

/* Smaller phones */
@media (max-width: 480px) {
  @keyframes rotateCircular {
    0% {
      transform: translate(-50%, -50%) rotate(0deg) translateX(120px) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg) translateX(120px) rotate(-360deg);
    }
  }
  
  .network-node.square {
    width: 55px;
    height: 55px;
  }
  
  .network-node.portrait {
    width: 50px;
    height: 89px;
  }
  
  .center-logo {
    width: 80px;
    height: 80px;
  }

  
  .center-logo img {
    width: 70%;
    height: 70%;
  }
}
@media (max-width: 480px) {
  @keyframes rotateCircular {
    0% {
      transform: translate(-50%, -50%) rotate(0deg) translateX(60px) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg) translateX(60px) rotate(-360deg);
    }
  }
  
  .influence-network {
    min-height: 300px;
    transform: scale(1.45);
    margin: -40px 0;
  }
  
  .center-logo {
    width: 80px;
    height: 80px;
  }
  
  .network-node.square {
    width: 30px;
    height: 30px;
  }
  
  .network-node.portrait {
    width: 30px;
    height: 69px;
  }
}
@media (max-width: 360px) {
  @keyframes rotateCircular {
    0% {
      transform: translate(-50%, -50%) rotate(0deg) translateX(85px) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg) translateX(85px) rotate(-360deg);
    }
  }
  
  .influence-network {
    min-height: 320px;
  }
  
  .center-logo {
    width: 60px;
    height: 60px;
  }
  
  .network-node.square {
    width: 38px;
    height: 38px;
  }
  
  .network-node.portrait {
    width: 35px;
    height: 62px;
  }
}
/* Flying Elements */
.flying-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.flying-emoji {
  position: absolute;
  font-size: 16px;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transform: translateY(0) scale(0.5);
  animation: flyUp 3s ease-out forwards;
}

@keyframes flyUp {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5) rotate(0deg);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px) scale(1) rotate(45deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-150px) scale(0.3) rotate(180deg);
  }
}

/* Connection Lines */
.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.connection-line {
  stroke-dasharray: 6, 6;
  animation: dashMove 3s linear infinite;
  filter: url(#glow);
  stroke-width: 2;
}

@keyframes dashMove {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 24; }
}

/* Background Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(131, 58, 180, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatParticle 8s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.particle:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
  animation-duration: 8s;
}

.particle:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
  animation-duration: 7s;
}

.particle:nth-child(4) {
  top: 40%;
  right: 30%;
  animation-delay: 1s;
  animation-duration: 9s;
}

.particle:nth-child(5) {
  bottom: 20%;
  right: 10%;
  animation-delay: 3s;
  animation-duration: 5s;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) translateX(10px) scale(1.2);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px) translateX(-15px) scale(0.8);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-30px) translateX(5px) scale(1.1);
    opacity: 0.9;
  }
}




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

/* FAQ Bot Styles */
.faq-bot {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  font-family: 'Inter', sans-serif;
}

.faq-bot-toggle {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  border: none;
  font-weight: 600;
  font-size: 14px;
}

.faq-bot-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.faq-bot-icon {
  font-size: 20px;
  animation: bounce 2s infinite;
}

.faq-bot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  max-height: 500px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.faq-bot-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-bot-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.faq-bot-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.faq-bot-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.faq-bot-content {
  padding: 20px;
  max-height: 400px;
  overflow-y: auto;
}

.faq-bot-welcome p {
  margin: 0 0 20px 0;
  color: #6b7280;
  line-height: 1.5;
}

.faq-bot-questions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-question-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  color: #374151;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.faq-question-btn:hover {
  background: #e0e7ff;
  border-color: #667eea;
  color: #667eea;
  transform: translateX(4px);
}

.faq-question-btn.contact-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  font-weight: 600;
}

.faq-question-btn.contact-btn:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  transform: translateX(4px);
}

.faq-bot-answer {
  animation: slideIn 0.3s ease;
}

.faq-answer-content {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  border-left: 4px solid #667eea;
  line-height: 1.6;
  color: #374151;
}

.faq-back-btn {
  background: #6b7280;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s ease;
}

.faq-back-btn:hover {
  background: #4b5563;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-2px);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive FAQ Bot */
@media (max-width: 480px) {
  .faq-bot {
    bottom: 20px;
    right: 20px;
  }
  
  .faq-bot-window {
    width: 300px;
    right: -10px;
  }
  
  .faq-bot-toggle {
    padding: 12px 16px;
    font-size: 13px;
  }
  
  .faq-bot-text {
    display: none;
  }
}

/* Glass Cards */
.glass-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  min-height: 340px;
  margin: 32px auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(131,58,180,0.12);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.glass-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.7);
  z-index: 1;
}
.glass-content {
  position: relative;
  z-index: 2;
  padding: 32px 24px 24px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.glass-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.glass-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(131,58,180,0.12);
}
.glass-name {
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(131,58,180,0.18);
}
.glass-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(131,58,180,0.18);
}
.glass-metrics {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.glass-metric {
  font-size: 1.1rem;
  font-weight: 600;
  background: rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 8px 16px;
  color: #fff;
  box-shadow: 0 2px 8px rgba(131,58,180,0.10);
}
.glass-btn {
  display: inline-block;
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(131,58,180,0.12);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  border: none;
  margin-top: 8px;
}
.glass-btn:hover {
  background: linear-gradient(45deg, #fd1d1d, #e1306c, #c13584, #833ab4, #405de6);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(131,58,180,0.18);
}

/* Stats Section - Instagram Profile Style */
.stats-section {
min-height: fit-content;
  padding: 60px 0;
    position: relative;
  background: #fafafa;
}

.stats-grid {
  display: flex;
  justify-content: space-around; /* Adjusted for spacing */
  align-items: center;
  gap: 20px; /* Added gap for better spacing */
  max-width: 800px; /* Increased max width */
  margin: 0 auto;
  margin-bottom: 50px;
}

.stat-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
  transition: none;
  position: relative;
  overflow: visible;
  box-shadow: none;
  flex: 1;
  min-width: 120px;
}

.stat-card::before,
.stat-card::after {
  display: none;
}

.stat-card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.stat-card:not(:last-child) {
  border-right: 1px solid #dbdbdb;
}

.stat-number {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 3rem; /* Increased font size */
  font-weight: 700; /* Increased font weight */
  color: #262626;
  display: block;
  margin-bottom: 8px; /* Increased margin */
  line-height: 1.2;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #262626;
  background-clip: initial;
  animation: none;
}

.stat-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #8e8e8e;
  letter-spacing: normal;
  text-transform: none;
}

/* Individual card colors - reset to Instagram style */
.stat-card:nth-child(1),
.stat-card:nth-child(2),
.stat-card:nth-child(3) {
  background: transparent;
  color: #262626;
}

.stat-card:nth-child(1) .stat-number,
.stat-card:nth-child(1) .stat-label,
.stat-card:nth-child(2) .stat-number,
.stat-card:nth-child(2) .stat-label,
.stat-card:nth-child(3) .stat-number,
.stat-card:nth-child(3) .stat-label {
  color: #262626;
  -webkit-text-fill-color: #262626;
}

/* Responsive Instagram profile style */
@media (max-width: 768px) {
  .stats-grid {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .stat-number {
    font-size: 1rem;
  }
  
  .stat-label {
    font-size: 0.8125rem;
  }
  
  .stat-card {
    min-width: 100px;
    padding: 0 8px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    gap: 0;
  }
  
  .stat-number {
    font-size: 0.9375rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}

/* Instagram-style Services Section */
.features {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.features h2 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #262626;
  text-align: center;
  margin-bottom: 16px;
}

.features p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #8e8e8e;
  text-align: center;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }
  .features h2 {
    font-size: 32px;
    padding: 0 16px;
  }
  .features p {
    font-size: 16px;
    padding: 0 16px;
    margin-bottom: 40px;
  }
  .feature-card {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* Instagram-style Service Cards */
.feature-card {
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 12px;
  padding: 0;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: #e0e0e0;
}

/* Instagram gradient border effect */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  transform: scaleX(0);
  transition: transform 0.1s ease;
}

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

/* Instagram Stories-style icon container */
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 40px auto 24px;
  background: linear-gradient(45deg, rgba(64,93,230,0.5), 
  rgba(88,81,219,0.5), 
  rgba(131,58,180,0.5), 
  rgba(193,53,132,0.5), 
  rgba(225,48,108,0.5), 
  rgba(253,29,29,0.5) );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.1s ease;
}

.feature-card:hover .feature-icon::before {
  opacity: 1;
}

.feature-icon img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
  transition: transform 0.1s ease;
}

.feature-card:hover .feature-icon img {
  transform: scale(1.1);
}

/* Instagram-style content */
.feature-content {
  padding: 0 32px 40px;
}

.feature-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #262626;
  margin-bottom: 2px;
  line-height: 1.3;
}

.feature-description {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #8e8e8e;
  line-height: 1.5;
  margin-bottom: 24px;
  transition: color 0.5s ease;
}

/* Instagram-style stats */
.feature-stats {
  display: flex;
  justify-content: space-around;
  padding: 20px 0;
  border-top: 1px solid #efefef;
  margin-top: 24px;
}

.feature-stat {
  text-align: center;
}

.feature-stat-number {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #262626;
  display: block;
}

.feature-stat-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #8e8e8e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Instagram-style button */
.feature-button {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(45deg, rgba(64,93,230,0.5), 
  rgba(88,81,219,0.5), 
  rgba(131,58,180,0.5), 
  rgba(193,53,132,0.5), 
  rgba(225,48,108,0.5), 
  rgba(253,29,29,0.5));
  color: white;
  border: none;
  border-radius: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size:18px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.feature-button {
  transition: all 0.3s ease;
}

.feature-card:hover .feature-button {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

/* Responsive Instagram-style */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }
  
  .features h2 {
    font-size: 32px;
  }
  
  .features p {
    font-size: 16px;
  }
  
  .feature-icon {
    width: 100px;
    height: 100px;
    margin: 32px auto 20px;
  }
  
  .feature-icon img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .feature-content {
    padding: 0 24px 32px;
  }
}

/* Process Section - Enhanced Horizontal Scroll */
.process {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.process h2 { text-align: center; font-size: clamp(32px, 6vw, 56px); font-weight: 800; margin-bottom: 12px; }

.process-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 60px;
}

.process-horizontal {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.process-track {
  position: relative;
  height: 4px;
  background: rgba(131, 58, 180, 0.2);
  margin: 40px 0;
  border-radius: 2px;
}

.process-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--gradient-primary);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.process-indicators {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.process-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(131, 58, 180, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  margin-top: -8px;
}

.process-indicator span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.process-indicator.active {
  background: var(--gradient-primary);
  transform: scale(1.2);
}

.process-indicator.active span {
  color: white;
}

.process-horizontal-container {
  display: flex;
  gap: 24px;
  overflow-x: hidden;
  padding: 12px 0;
  /* scroll-snap-type: x mandatory; */
  -webkit-overflow-scrolling: touch;
}

/* .process-horizontal-container::-webkit-scrollbar { height: 8px; }
.process-horizontal-container::-webkit-scrollbar-track { background: rgba(0,0,0,0.04); border-radius: 4px; }
.process-horizontal-container::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 4px; }

.process-horizontal-container::-webkit-scrollbar {
  height: 8px;
}

.process-horizontal-container::-webkit-scrollbar-track {
  background: rgba(131, 58, 180, 0.1);
  border-radius: 4px;
}

.process-horizontal-container::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
} */

.process-step-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  min-width: clamp(280px, 38vw, 360px);
  scroll-snap-align: start;
  opacity: 1; /* CHANGE: from opacity: 0 */
  transform: translateY(0); /* CHANGE: from translateY(24px) */
  flex-shrink: 0;
}

.process-step-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.process-step-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--glass-shadow);
}

.step-content {
  display: flex;
  flex-direction: column;
  padding: 28px;
  text-align: left;
}

.step-visual {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: #fff;
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.step-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.process-step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
}

.step-details {
  position: relative;
}

.step-number {
  font-size: 14px;
  font-weight: 700;
  color: #8e8e8e;
  margin-bottom: 8px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.step-description {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 16px;
}

.step-progress-message {
  display: flex;
  align-items: center;
  gap: 12px;
}

.progress-text {
  font-size: 13px;
  font-weight: 600;
  color: #111;
}

.progress-dots {
  display: flex;
  gap: 4px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e5e5e5;
  transition: all 0.3s ease;
}

.dot.active {
  background: #111;
}

/* Instagram-style card composition inside process cards */
.ig-header { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.ig-avatar { width:32px; height:32px; border-radius:50%; object-fit:cover; border:1px solid rgba(0,0,0,0.08); }
.ig-username { font-weight:700; color:#111; font-size:14px; }
.ig-media { position:relative; width:100%; padding-top:125%; border-radius:16px; overflow:hidden; background:#f2f2f2; }
.ig-media img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.ig-media video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.ig-footer { margin-top:12px; }
.ig-metrics { display:flex; align-items:center; gap:16px; color:#111; font-weight:600; margin-bottom:10px; }
.ig-lines { display:grid; gap:8px; }
.ig-line { height:8px; background:#eee; border-radius:6px; }
.ig-line.sm { width:60%; }
.ig-line.md { width:80%; }
.ig-line.lg { width:92%; }

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.process-summary {
  margin-top: 80px;
  text-align: center;
}

.summary-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(20px);
  max-width: 600px;
  margin: 0 auto;
}

.summary-card h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.summary-card p {
  font-size: 18px;
  color: var(--text-secondary);
}

/* Responsive Process Section */
@media (max-width: 768px) {
  .process-horizontal-container { grid-template-columns: 1fr; gap: 16px; }
  .process-step-card { min-width: 0; max-width: none; }
  .step-content { padding: 20px; }
  
  .step-icon {
    width: 60px;
    height: 60px;
  }
  
  .step-icon img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .process {
    padding: 80px 0;
  }
  
  .process-step-card {
    min-width: 280px;
    max-width: 300px;
  }
  
  .step-content {
    padding: 20px;
  }
}

.infinite-scroll-wrapper {
  display: flex;
  animation: infiniteScroll 30s linear infinite;
  gap: 24px;
}

@keyframes infiniteScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.process-horizontal-container:hover .infinite-scroll-wrapper {
  animation-play-state: paused;
}

/* Latest Success Stories - Premium GSAP Section */
:root {
  --bg:#0c0d10;
  --card:#0f1116;
  --text:#e9edf1;
  --muted:#aab3bd;
  --accent:#5cf0d1;
  --accent-2:#6ea8ff;
  --glass: rgba(255,255,255,0.08);
  --glass-strong: rgba(255,255,255,0.16);
  --blur: 16px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --easing: cubic-bezier(.22,.61,.36,1);
}

/* Section: Header with kinetic type */
.section {
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding: 64px 0;
}

@media (max-width: 768px) {
  .section {
    width: 95vw;
    padding: 40px 0;
  }
  .section > * {
    text-align: center;
  }
  .section [class*="grid"] {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .section [class*="content"] {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

.header {
  position:relative;
  margin-top:24px;
  margin-bottom:24px;
}

.eyebrow {
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:700;
  font-size:12px;
  color:var(--muted);
  opacity:.9;
}

.title {
  font-size: clamp(28px, 5vw, 56px);
  line-height:1.05;
  font-weight:800;
  display:inline-block;
  background: linear-gradient(90deg, #e9edf1 0%, #a4b4ff 40%, #5cf0d1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title .word {
  display:inline-block;
  transform-origin: 50% 80%;
}

.subtitle {
  margin-top:12px;
  color:var(--muted);
  max-width: 720px;
  font-weight:500;
}

/* Filter bar */
.filters {
  margin: 24px 0 12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.chip {
  position:relative;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
  cursor:pointer;
  transition: transform .18s var(--easing), background .18s var(--easing), border-color .18s var(--easing);
  user-select:none;
  font-weight:600;
  font-size:14px;
}

.chip:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.06);
}

.chip.active {
  border-color: var(--accent);
}

.chip .underline {
  position:absolute;
  left:12px;
  right:12px;
  bottom:7px;
  height:2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s var(--easing);
}

.chip.active .underline {
  transform: scaleX(1);
}

/* Grid */
.grid {
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}

@media (max-width: 1200px) {
  .grid { grid-template-columns: repeat(8, 1fr) }
}

@media (max-width: 800px) {
  .grid { grid-template-columns: repeat(4, 1fr) }
}

/* Card */
.card {
  grid-column: span 6;
  display:flex;
  position:relative;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  min-height: 280px;
  isolation:isolate;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform .25s var(--easing), border-color .25s var(--easing);
}

.card.tall {
  min-height: 420px;
}

@media (max-width: 800px) {
  .card { grid-column: span 4 }
}

.media {
  position:absolute;
  inset:0;
  z-index:0;
}

.media img,
.media video {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
  transition: opacity .16s var(--easing);
}

.glass {
  position:absolute;
  inset:0;
  z-index:1;
  background: radial-gradient(60% 60% at 30% 10%, rgba(255,255,255,0.14), rgba(255,255,255,0.04) 50%, rgba(255,255,255,0) 80%);
  pointer-events:none;
  mix-blend-mode: screen;
}

.overlay {
  position:absolute;
  inset:0;
  z-index:2;
  background: linear-gradient(180deg, rgba(5,8,12,0.15) 0%, rgba(5,8,12,0.55) 55%, rgba(5,8,12,0.85) 100%);
  backdrop-filter: blur(6px);
  transition: background .25s var(--easing), backdrop-filter .25s var(--easing);
}

.card:hover .overlay {
  background: linear-gradient(180deg, rgba(5,8,12,0.05), rgba(5,8,12,0.65));
  backdrop-filter: blur(10px);
}

.badge {
  position:absolute;
  top:14px;
  left:14px;
  z-index:3;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(0,0,0,0.55);
  color:#fff;
  border:1px solid rgba(255,255,255,0.12);
  font-weight:700;
  font-size:13px;
  letter-spacing:.02em;
  display:flex;
  align-items:center;
  gap:8px;
}

.badge img {
  width:18px;
  height:18px;
  object-fit:contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.4));
}

.content {
  position:absolute;
  inset:auto 18px 18px 18px;
  z-index:4;
  color: var(--text);
  display:flex;
  flex-direction:column;
  gap:8px;
  transform: translateY(8px);
  transition: transform .25s var(--easing);
}

.card:hover .content {
  transform: translateY(0);
}

.title-sm {
  font-size: clamp(16px, 2.6vw, 22px);
  font-weight:800;
  line-height:1.2;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.kpi {
  display:flex;
  align-items:baseline;
  gap:8px;
  color:#dffaf5;
  font-weight:800;
  letter-spacing:.02em;
}

.kpi .num {
  font-size: clamp(18px, 3vw, 24px);
}

.kpi .label {
  color: var(--muted);
  font-weight:700;
  font-size:12px;
}

.cta {
  /* margin-top:6px; */
  align-self:flex-start;
  padding:10px 14px;
  border-radius:12px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color:#081016;
  font-weight:800;
  letter-spacing:.02em;
  box-shadow: 0 8px 24px rgba(94,207,210,0.35);
  transform: translateY(6px);
  opacity:.0;
  transition: transform .22s var(--easing), opacity .22s var(--easing);
  will-change: transform, opacity;
  border: none;
  cursor: pointer;
}

.card:hover .cta {
  transform: translateY(0);
  opacity:1;
}

/* Testimonial marquee */
.marquee {
  margin-top: 36px;
  position:relative;
  overflow:hidden;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
}

.marquee-track {
  display:flex;
  gap:24px;
  padding:12px 16px;
  white-space:nowrap;
  will-change: transform;
}

.quote {
  color: var(--muted);
  font-weight:600;
  background: rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.08);
  padding:10px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .card, .cta, .content, .title .word {
    transition: none !important;
    animation: none !important;
  }
}

/* Background for Latest Success Stories section */
.section {
  background: radial-gradient(1200px 800px at 20% -10%, #111524 0%, #0b0c10 60%, #06070a 100%), var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 120px 0;
}

/* Remove old examples section styles */
.examples,
.examples-grid,
.example-card,
.example-content,
.example-title,
.example-description {
  display: none;
}

/* CTA Section */
.cta {
  padding: 120px 0;
  position: relative;
  background: #fff;
}
/* .cta { scroll-margin-top: 20px; } */

/* Fix conflict with button `.cta` styles earlier in file */
#cta {
  opacity: 1 !important;
  transform: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  align-self: auto !important;
  cursor: auto !important;
  position: relative !important;
  z-index: 2 !important;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Ensure CTA is visible and not overlapped */
.cta .container { position: relative; z-index: 1; }

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

.cta-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #0411ff, #ff7700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-benefits {
  list-style: none;
  margin-bottom: 40px;
}

.cta-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.cta-benefits li::before {
  content: '✓';
  color: var(--brand-primary);
  font-weight: bold;
}

/* Form - Glassmorphism */
.form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 48px;
  backdrop-filter: blur(20px);
  box-shadow: var(--glass-shadow);
  max-width: 560px;
}

.form-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.form-description {
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 16px;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
}

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

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

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

.footer-tagline {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

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

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--brand-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-bottom nav {
    flex-direction: column;
    gap: 16px;
  }

  .footer h3 {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .footer address {
    text-align: center;
  }

  .footer address p {
    margin-bottom: 12px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero__grid,
  .process-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .features-grid,
  .examples-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer-link {
    font-size: 16px;
    padding: 8px;
  }
  
  .hero {
    padding: 140px 0 80px;
  }
  
  .hero__title {
    font-size: 36px;
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1001;
}

.scroll-progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  width: 0%;
  transition: width 0.1s ease;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure CTA reveal never stays invisible */
#cta .reveal,
#cta .reveal.active {
  opacity: 1 !important;
  transform: none !important;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.hero__title {
position: relative;
white-space: nowrap;
color: black;
}
.typewriter-caret {
display: inline-block;
width: 2px;
height: 1em;
background: currentColor;
margin-left: 4px;
vertical-align: -2px;
animation: blink 1s step-end infinite;
}
@keyframes blink {
50% { opacity: 0; }
}

/* Brands Section */

.brands-section {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
  min-height: fit-content;
}

.brands-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.brands-section h3 {
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 50px;
}

.brand-marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.brand-row-wrapper {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 30px;
}

.brand-row {
  display: inline-flex;
  gap: 50px;
  animation: scrollLeft 60s linear infinite;
}

.brand-row-wrapper:nth-child(2) .brand-row {
  animation: scrollRight 60s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.brand-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.brand-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(131, 58, 180, 0.2);
  border-color: rgba(131, 58, 180, 0.3);
}

.brand-circle img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter 0.3s ease;
  display: block;
}

.brand-circle:hover img {
  filter: grayscale(0);
}

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

.brand-marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, #fafafa, rgba(250, 250, 250, 0));
}

.brand-marquee-container::after {
  right: 0;
  background: linear-gradient(270deg, #fafafa, rgba(250, 250, 250, 0));
}

.brand-row-wrapper:hover .brand-row {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .brand-circle {
    width: 70px;
    height: 70px;
    padding: 12px;
  }
  .brand-row {
    gap: 30px;
  }
}

/* Footer social icon sizing */
.footer .footer-social .social-icon img {
  width: 22px; height: 22px; display: block;
  filter: grayscale(0.1);
  transition: transform .2s ease, filter .2s ease, opacity .2s ease;
}
.footer .footer-social .social-icon:hover img { transform: scale(1.08); filter: none; opacity: 1; }
.footer {
  min-height: fit-content;
  padding: 80px 0 40px;
  scroll-snap-align: end; /* Snap to end of footer */
}
/* Recent Work mobile fixes */
@media (max-width: 900px) {
  .split-container { grid-template-columns: 1fr; gap: 16px; }
  .split-pane { min-height: 70vw; }
  #split-float { display: none; }
}

/* Split-screen Showcase */
.split-showcase { padding: 50px; background: #fff; }
.split-container { width: 100%; margin: 0 auto; display: grid; grid-template-columns: 1fr 6px 1fr; gap: 0; align-items: center; position: relative; margin-top: 50px;}
.split-container.split-single { background-image: var(--split-bg); background-size: cover; background-position: center; }
.split-pane { position: relative; min-height: 46vw; }
.split-pane.right { 
  /* Right pane styling handled by other rules */
  position: relative;
}
.split-media { position: relative; width: 100%; height: 100%; }
.split-media img, .split-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.split-divider { width: 6px; background: #fff; }
.split-divider { position: relative; z-index: 3; }
.split-caption { position: absolute; left: 24px; bottom: 24px; color: #fff; text-shadow: 0 6px 18px rgba(0,0,0,0.4); }
.split-caption h3 { font-size: clamp(20px, 3vw, 32px); font-weight: 800; margin-bottom: 8px; }
.split-cta { display: inline-block; padding: 10px 14px; border-radius: 12px; background: rgba(0,0,0,0.55); color: #fff; text-decoration: none; font-weight: 700; }
@media (max-width: 900px) {
  .split-container { grid-template-columns: 1fr; gap: 16px; }
  .split-divider { display: none; }
}

/* Split layers for animated transitions */
.split-layer { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.split-layer .half { position: absolute; top: 0; width: 50%; height: 100%; background-repeat: no-repeat; background-size: 200% 100%; will-change: transform, opacity; backface-visibility: hidden; transform: translateZ(0); }
.split-layer .half.left { left: 0; background-position: left center; }
.split-layer .half.right { right: 0; background-position: right center; }

/* Floating CTA following the cursor */
.split-cta-float {
  position: absolute;
  left: 0; top: 0;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  z-index: 4;
}

.toggle-switch {
    display: flex;
    margin-bottom: 1em;
  border-radius: 32px;


  background: rgba(255,255,255,0.7);
  box-shadow: 0 4px 16px rgba(131,58,180,0.08);
  overflow: hidden;
  }
  .toggle-btn {
    flex: 1;
    padding: 12px 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: #833ab4;
    border-radius: 0;
    transition: background 0.5s cubic-bezier(0.4,0,0.2,1), color 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1);
    outline: none;
  }
  .toggle-btn.active {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: #fff;
    box-shadow: 0 4px 16px rgba(131,58,180,0.18);
    transform: scale(1.04);
    border-radius: 32px;
  }

.split-container img, .split-container .split-pane img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  max-height: 480px;
}

/* Improved styles for the 'View Case Study' button */
.view-case-study-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(131,58,180,0.12);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  border: none;
}
.view-case-study-btn:hover {
  background: linear-gradient(45deg, #fd1d1d, #e1306c, #c13584, #833ab4, #405de6);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(131,58,180,0.18);
}
.view-case-study-btn .arrow-icon {
  stroke: #fff;
  width: 24px;
  height: 24px;
}

#our-services {
      min-height: 700px;
      padding: 60px 0 50px 0;
      font-family: 'Montserrat', sans-serif;
    }
    .header.text-center { margin-bottom: 35px; }
    .section-title.gradient-text {
      background: linear-gradient(90deg, #AE67FA 0%, #F49867 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
             background-clip: text;
      text-fill-color: transparent;
    }
    .tinder-card-stack {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      min-height: 410px;
      max-width: 750px;
      margin: auto;
      margin-top: 40px;
    }
    .tinder-card {
      width: 340px;
      height: 410px;
      position: absolute;
      left: 50%;
      top: 0;
      transform: translate(-50%, 0) scale(0.93);
      opacity: 0;
      z-index: 1;
      box-shadow: 0 8px 25px rgba(40,42,55,0.22);
      border-radius: 22px;
      overflow: hidden;
      transition: 
        opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1),
        filter 0.6s cubic-bezier(0.4, 0.0, 0.2, 1),
        z-index 0s 0.3s;
      background: linear-gradient(135deg, rgba(255,255,255,0.25) 70%, rgba(200,215,254,0.04) 100%);
      border: 1.5px solid rgba(170,175,210,0.16);
      backdrop-filter: blur(9px) brightness(1.07);
    }
   .tinder-card.active {
      z-index: 10;
      opacity: 1;
      filter: blur(0px) grayscale(0);
      transform: translate(-50%, 0) scale(1.06);
      box-shadow: 0 16px 40px 0 rgba(142,77,238,0.21),0 1.5px 7px 0 rgba(87,71,117,0.08);
      border-color: #AE67FA45;
    }
   .tinder-card.prev, .tinder-card.next {
      opacity: 0.78;
      z-index: 3;
      filter: blur(2.5px) grayscale(0.3);
      transform: translate(-150%, 24px) scale(0.91);
      pointer-events: none;
    }
    .tinder-card.next {
      transform: translate(55%, 24px) scale(0.91);
    }
    .tinder-card .service-img {
      width: 100%;
      height: 170px;
      object-fit: cover;
      filter: brightness(0.91) saturate(1.1);
      border-bottom: 1.2px solid rgba(170,175,210,0.19);
      transition: filter 0.2s;
    }
    .glass-content-service {
      padding: 36px 30px 34px 30px;
      display: flex; flex-direction: column; align-items: center;
      height: 240px; justify-content: center;
    }
    .tinder-card-title {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 16px;
      margin-top: 5px;
      text-align: center;
    }
    .tinder-card-desc {
      font-size: 1.04rem;
      color: #44465a;
      font-weight: 500;
      text-align: center;
      line-height: 1.45;
      letter-spacing: 0.01em;
    }
    .arrow-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2.2rem;
      color: #ae67fa;
      background: rgba(30,28,58,0.19);
      border: none;
      border-radius: 50%;
      width: 48px; height: 48px;
      box-shadow: 0 2px 10px 0 rgba(142,77,238,0.11);
      cursor: pointer;
      z-index: 15;
      transition: background 0.2s, color 0.2s, transform 0.18s;
      outline: none;
    }
    .arrow-btn:active { transform: translateY(-50%) scale(0.9);}
    .left-arrow { left: -63px;}
    .right-arrow { right: -63px;}
    @media (max-width:640px) {
      /* Mobile: contain cards inside container to prevent horizontal overflow */
      .tinder-card-stack {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .tinder-card, .tinder-card.active, .tinder-card.prev, .tinder-card.next {
        position: relative;
        /* use container width minus small gutters so cards never exceed visible area */
        width: calc(100% - 32px);
        max-width: 340px;
        margin: 0 auto 18px auto;
        left: unset;
        right: unset;
        box-sizing: border-box;
        height: 370px;
  transform: none !important; /* remove translate(-50%) that caused clipping */
  -webkit-transform: none !important;
  opacity: 1 !important;
  filter: none !important;
  z-index: 1;
      }
      /* override large inline H2 on very small screens */
      .tinder-services-section .section-title {
        font-size: 1.9rem !important;
        line-height: 1.05;
        text-align: left;
      }
      .tinder-services-section .section-subtitle { font-size: 1rem; }
      .glass-content-service { padding:27px 14px 33px 14px; }
  /* hide arrow controls on small screens to avoid overflow and visual clutter */
  .arrow-btn { display: none !important; }
  .left-arrow { left: auto; margin-left: 0; }
  .right-arrow { right: auto; margin-right: 0; }
  /* ensure images scale a bit smaller on narrow devices */
  .tinder-card .service-img { height: 150px; }
  /* allow stack to clip gracefully inside container */
  .tinder-card-stack { overflow: visible; }
    }
    



.service-section{
  margin: 10%;
  height: 20%;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .service-section {
    margin: 2%;
  }
}

#typewriter {
    display: inline-block;
    min-width: 1ch;
    vertical-align: bottom;
}

.typewriter-caret {
    display: inline-block;
    width: 2px;
    margin-left: 2px;
    background-color: currentColor;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.btn--primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--glow-primary);
  align-items: center;
  gap: 8px;
  padding: 18px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 51, 102, 0.6);
}

/* Testimonials Section - Swiper Style */
.testimonials-section {
  min-height: fit-content;
  padding: 120px 0;
  position: relative;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  overflow: hidden;
}

.testimonials-section .container {
  max-width: 900px;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 30%, rgba(131, 58, 180, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 70%, rgba(253, 29, 29, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--instagram-pink);
  margin-bottom: 12px;
  opacity: 0.9;
}

.testimonials-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #833ab4, #c13584, #fd1d1d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Testimonial Card Stack */
.testimonial-card-stack {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 480px;
  max-width: 100%;
  width: 100%;
  margin: 60px auto 0;
  padding: 0 80px;
  box-sizing: border-box;
}

.testimonial-swiper-card {
  width: 420px;
  height: 480px;
  min-height: 480px;
  max-height: 480px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0) scale(0.93);
  opacity: 0;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(40, 42, 55, 0.22);
  border-radius: 24px;
  overflow: hidden;
  transition: 
    opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1),
    filter 0.6s cubic-bezier(0.4, 0.0, 0.2, 1),
    z-index 0s 0.3s;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.testimonial-swiper-card.active {
  z-index: 10;
  opacity: 1;
  filter: blur(0px) grayscale(0);
  transform: translate(-50%, 0) scale(1.02);
  box-shadow: 0 16px 40px 0 rgba(131, 58, 180, 0.2), 0 1.5px 7px 0 rgba(87, 71, 117, 0.08);
  border-color: rgba(131, 58, 180, 0.2);
}

.testimonial-swiper-card.prev,
.testimonial-swiper-card.next {
  opacity: 0.78;
  z-index: 3;
  filter: blur(2.5px) grayscale(0.3);
  transform: translate(-120%, 24px) scale(0.88);
  pointer-events: none;
}

.testimonial-swiper-card.next {
  transform: translate(20%, 24px) scale(0.88);
}

.testimonial-swiper-content {
  padding: 35px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  overflow: hidden;
}
/* Large Avatar */
.testimonial-avatar-large {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 4px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #833ab4, #c13584, #fd1d1d) border-box;
  box-shadow: 0 8px 24px rgba(131, 58, 180, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-avatar-mid {
  width: 70px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  /* margin-bottom: 20px; */
  border: 4px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #833ab4, #c13584, #fd1d1d) border-box;
  box-shadow: 0 8px 24px rgba(131, 58, 180, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-profile-link {
  display: block;
  text-decoration: none;
}

.testimonial-profile-link:hover .testimonial-avatar-large {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(131, 58, 180, 0.3);
}

.testimonial-avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #833ab4, #c13584);
  color: white;
  font-size: 48px;
  font-weight: 700;
}
.avatar-placeholder-small {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #833ab4, #c13584);
  color: white;
  font-size: 48px;
  font-weight: 700;
}
/* Person Info */
.testimonial-person-info {
  margin-bottom: 16px;
}

.testimonial-name-link {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.testimonial-name-link:hover {
  opacity: 0.7;
}

.testimonial-person-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.testimonial-name-link:hover .testimonial-person-name {
  color: var(--instagram-pink);
}

.testimonial-person-role {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

/* Rating */
.testimonial-rating {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  justify-content: center;
}

.testimonial-rating .star {
  color: #ffd700;
  font-size: 20px;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
}

/* Navigation Arrows */
.testimonial-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  color: #833ab4;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(131, 58, 180, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 16px rgba(131, 58, 180, 0.15);
  cursor: pointer;
  z-index: 15;
  transition: background 0.2s, color 0.2s, transform 0.18s, box-shadow 0.2s;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-arrow-btn:hover {
  background: linear-gradient(135deg, #833ab4, #c13584);
  color: white;
  box-shadow: 0 6px 20px rgba(131, 58, 180, 0.3);
}

.testimonial-arrow-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.testimonial-left-arrow {
  left: 10px;
}

.testimonial-right-arrow {
  right: 10px;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-section .container {
    max-width: 100%;
    padding: 0 16px;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-title {
    font-size: clamp(28px, 5vw, 40px);
  }

  .testimonials-subtitle {
    font-size: 16px;
  }
  
  .testimonial-card-stack {
    width: 100%;
    max-width: 100%;
    padding: 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .testimonial-swiper-card {
    position: relative !important;
    width: 100%;
    max-width: 320px;
    height: auto;
    min-height: auto;
    max-height: none;
    margin: 0 auto;
    left: unset !important;
    top: unset !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(40, 42, 55, 0.15);
    border-radius: 16px;
  }

  .testimonial-swiper-card.active,
  .testimonial-swiper-card.prev,
  .testimonial-swiper-card.next {
    position: relative !important;
    width: 100%;
    max-width: 320px;
    height: auto;
    min-height: auto;
    left: unset !important;
    top: unset !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    z-index: 1;
  }

  .testimonial-swiper-content {
    padding: 24px 20px;
    min-height: auto;
    height: auto;
    max-height: none;
  }

  .testimonial-avatar-large {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }

  .testimonial-person-name {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .testimonial-person-role {
    font-size: 13px;
  }

  .testimonial-rating {
    margin-bottom: 12px;
  }

  .testimonial-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .testimonial-arrow-btn {
    display: flex !important;
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none !important;
    margin-top: 16px;
  }

  .testimonial-left-arrow {
    left: auto;
    position: relative;
    margin-right: 12px;
  }

  .testimonial-right-arrow {
    right: auto;
    position: relative;
    margin-left: 12px;
  }

  #testimonialArrowLeft,
  #testimonialArrowRight {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    margin: 0 8px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-section .container {
    max-width: 100%;
    padding: 0 16px;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-title {
    font-size: clamp(28px, 5vw, 40px);
  }

  .testimonials-subtitle {
    font-size: 16px;
  }
  
  .testimonial-card-stack {
    width: 100%;
    max-width: 100%;
    padding: 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .testimonial-swiper-card {
    position: relative !important;
    width: 100%;
    max-width: 340px;
    height: auto;
    min-height: auto;
    max-height: none;
    margin: 0 auto;
    left: unset !important;
    top: unset !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(40, 42, 55, 0.15);
    border-radius: 16px;
  }

  .testimonial-swiper-card.active,
  .testimonial-swiper-card.prev,
  .testimonial-swiper-card.next {
    position: relative !important;
    width: 100%;
    max-width: 340px;
    height: auto;
    min-height: auto;
    left: unset !important;
    top: unset !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    z-index: 1;
  }

  .testimonial-swiper-content {
    padding: 24px 20px;
    min-height: auto;
    height: auto;
    max-height: none;
  }

  .testimonial-avatar-large {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }

  .testimonial-person-name {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .testimonial-person-role {
    font-size: 13px;
  }

  .testimonial-rating {
    margin-bottom: 12px;
  }

  .testimonial-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .testimonial-arrow-btn {
    display: none !important;
  }

  .testimonial-left-arrow {
    display: none !important;
  }

  .testimonial-right-arrow {
    display: none !important;
  }

  #testimonialArrowLeft,
  #testimonialArrowRight {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-section .container {
    padding: 0 12px;
  }

  .testimonials-header {
    margin-bottom: 24px;
  }

  .testimonials-title {
    font-size: 22px;
  }

  .testimonials-subtitle {
    font-size: 13px;
  }

  .testimonial-card-stack {
    gap: 12px;
  }

  .testimonial-swiper-card {
    width: 100%;
    max-width: 280px;
  }

  .testimonial-swiper-card.active,
  .testimonial-swiper-card.prev,
  .testimonial-swiper-card.next {
    width: 100%;
    max-width: 280px;
  }

  .testimonial-swiper-content {
    padding: 18px 14px;
  }

  .testimonial-avatar-large {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }

  .testimonial-person-name {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .testimonial-person-role {
    font-size: 11px;
  }

  .testimonial-rating {
    margin-bottom: 8px;
  }

  .testimonial-rating .star {
    font-size: 14px;
  }

  .testimonial-text {
    font-size: 11px;
    line-height: 1.3;
  }

  .testimonial-arrow-btn {
    display: none !important;
  }

  .testimonial-left-arrow {
    display: none !important;
  }

  .testimonial-right-arrow {
    display: none !important;
  }

  #testimonialArrowLeft,
  #testimonialArrowRight {
    display: none !important;
  }
}
    /* Animation */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

