:root {
  --primary-blue: #005cb9;
  --primary-blue-hover: #004a94;
  --primary-green: #69b32d;
  --primary-green-hover: #559424;
  --text-dark: #1f2937;
  --text-gray: #4b5563;
  --text-light: #9ca3af;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --transition: all 0.3s ease;
}

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

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

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

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.text-blue {
  color: var(--primary-blue);
}

.text-green {
  color: var(--primary-green);
}

.gradient-text {
  background: linear-gradient(
    90deg,
    var(--primary-blue) 0%,
    var(--primary-green) 50%,
    var(--primary-blue) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 92, 185, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 92, 185, 0.3);
}

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

.btn-success:hover {
  background-color: var(--primary-green-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

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

.btn-outline-white:hover {
  border-color: white;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  height: 80px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.logo-bar {
  background-color: var(--primary-blue);
  border-radius: 2px 2px 0 0;
}

.logo-bar-1 {
  width: 12px;
  height: 16px;
}

.logo-bar-2 {
  width: 12px;
  height: 24px;
}

.logo-bar-3 {
  width: 12px;
  height: 32px;
  position: relative;
}

.logo-arrow {
  position: absolute;
  top: -12px;
  right: -16px;
  color: var(--primary-green);
}

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

.logo-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-gray);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-gray);
}

.mobile-menu {
  display: none;
  background-color: white;
  border-top: 1px solid var(--border-color);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 16px 20px;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--bg-light);
}

.mobile-menu a:hover {
  color: var(--primary-blue);
  background-color: var(--bg-light);
}

/* Hero Section - EYE-CATCHY PREMIUM DESIGN */
.hero {
  padding: 160px 0 0px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Subtle Dot Background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
  z-index: 0;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* Giant Glowing Orbs for deep visual impact */
.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(
    circle,
    rgba(0, 92, 185, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(
    circle,
    rgba(105, 179, 45, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* Left Content Styling */
.hero-content {
  text-align: left;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background-color: #ffffff;
  color: var(--primary-blue);
  border: 1px solid rgba(0, 92, 185, 0.15);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0, 92, 185, 0.08);
}

.ping {
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
}

.ping-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary-green);
  border-radius: 50%;
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ping-dot {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: var(--primary-green);
  border-radius: 50%;
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.hero h1 {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  color: #0f172a;
}

.hero p.subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-note {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Right Visual UI Styling (The Hook) */
.hero-visual {
  position: relative;
  height: 550px;
  width: 100%;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-ui-container {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: complexFloat 12s ease-in-out infinite;
}

/* Glassmorphism Base Settings */
.glass-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 30px 60px -12px rgba(0, 92, 185, 0.15),
    0 18px 36px -18px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  position: absolute;
}

/* Center Main Dashboard */
.main-dash {
  width: 340px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(248, 250, 252, 0.85) 100%
  );
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dash-title h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.dash-title p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.dash-metric {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
}

.dash-metric-label {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-bottom: 4px;
  font-weight: 600;
}

.dash-metric-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-metric-trend {
  font-size: 0.8rem;
  color: var(--primary-green);
  background: rgba(105, 179, 45, 0.1);
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 700;
}

.dash-chart {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding-top: 20px;
}

.dash-bar {
  width: 100%;
  background: linear-gradient(to top, var(--primary-blue), #60a5fa);
  border-radius: 6px 6px 0 0;
  animation: growBar 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: bottom;
  opacity: 0;
}

/* Floating Elements */
.float-card {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 1);
  z-index: 3;
}

.float-card-1 {
  top: 10%;
  left: -15%;
  width: 240px;
  animation: floatAlt 8s ease-in-out infinite;
}

.float-card-2 {
  bottom: 15%;
  right: -10%;
  width: 260px;
  animation: floatAlt 9s ease-in-out infinite reverse;
}

.fc-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.fc-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.fc-info p {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-top: 2px;
}

.float-badge {
  position: absolute;
  top: 25%;
  right: -5%;
  background: var(--primary-green);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(105, 179, 45, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 4;
  animation: pulseBadge 4s infinite;
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-green)
  );
  filter: blur(80px);
  opacity: 0.3;
  z-index: 1;
  border-radius: 50%;
  animation: rotateGlow 10s linear infinite;
}

/* Hero Specific Animations */
@keyframes heroPopIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

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

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

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

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

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

@keyframes rotateGlow {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes pulseBadge {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(105, 179, 45, 0.4);
  }
}

@keyframes growBar {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }

  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.hero-pop {
  opacity: 0;
  animation: heroPopIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Services Section (Untouched) */
.services {
  padding: 100px 0;
  background-color: var(--bg-light);
}

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

.section-label {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  background-color: white;
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Top highlight border effect on hover */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
  opacity: 0;
  transition: var(--transition);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover.card-blue {
  border-color: rgba(0, 92, 185, 0.2);
}

.service-card:hover.card-green {
  border-color: rgba(105, 179, 45, 0.2);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.icon-blue {
  background-color: rgba(0, 92, 185, 0.08);
  color: var(--primary-blue);
}

.icon-green {
  background-color: rgba(105, 179, 45, 0.08);
  color: var(--primary-green);
}

.service-card:hover .icon-blue {
  background-color: var(--primary-blue);
  color: white;
  box-shadow: 0 10px 20px -5px rgba(0, 92, 185, 0.4);
}

.service-card:hover .icon-green {
  background-color: var(--primary-green);
  color: white;
  box-shadow: 0 10px 20px -5px rgba(105, 179, 45, 0.4);
}

.service-card h4 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  /* Pushes the link to the bottom */
  margin-bottom: 0;
}

/* Interactive Learn More Link */
.service-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.card-blue .service-link {
  color: var(--primary-blue);
}

.card-green .service-link {
  color: var(--primary-green);
}

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

.service-card-large {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

/* Why Choose Us Section (Untouched) */
.why-us {
  padding: 100px 0;
  background-color: white;
}

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

.image-wrapper {
  position: relative;
}

.image-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 92, 185, 0.1),
    rgba(105, 179, 45, 0.1)
  );
  border-radius: 30px;
  transform: rotate(3deg) scale(1.05);
  z-index: 1;
}

.main-image {
  position: relative;
  width: 100%;
  border-radius: 30px;
  z-index: 2;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.floating-stat {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(105, 179, 45, 0.1);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-icon {
  color: var(--primary-green);
  flex-shrink: 0;
  margin-top: 4px;
}

.feature-text h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-text p {
  color: var(--text-gray);
}

/* CTA Section (Untouched) */
.cta {
  padding: 100px 0;
  background-color: var(--primary-blue);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
}

.cta-bg-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(50px);
}

.cta-bg-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background-color: rgba(105, 179, 45, 0.3);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

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

/* Footer (Untouched) */
.footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 80px 0 40px;
}

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

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

.footer-logo .logo-title {
  color: white;
}

.footer-desc {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 24px;
  max-width: 300px;
}

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

.social-links a {
  color: #9ca3af;
  transition: var(--transition);
}

.social-links a:hover {
  color: white;
}

.footer-col h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  color: #9ca3af;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #374151;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Responsive Design */
/* CORRECTED MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-visual {
    transform: scale(0.9);
  }

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

@media (max-width: 768px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 130px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p.subtitle {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    height: 450px;
    margin-top: 40px;
    transform: scale(0.85);
  }

  .float-card-1 {
    left: -5%;
  }

  .float-card-2 {
    right: -5%;
  }

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

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .floating-stat {
    bottom: -10px;
    right: 10px;
    padding: 12px;
  }

  .cta h2 {
    font-size: 2rem;
  }

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

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

  /* Hide decorative shapes on mobile for better performance */
  .shape {
    display: none;
  }
}

/* General Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

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

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

@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }

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

@keyframes scaleUpBar {
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

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

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

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

.delay-500 {
  animation-delay: 0.5s;
}

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

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

.floating {
  animation: float 6s ease-in-out infinite;
}

.service-icon {
  transform: scale(1);
}

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

.mockup-chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  height: 120px;
  margin-top: 24px;
  width: 100%;
}

.mockup-bar {
  width: 36px;
  background: linear-gradient(
    to top,
    var(--primary-blue),
    var(--primary-green)
  );
  border-radius: 6px 6px 0 0;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  animation: scaleUpBar 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
