:root {
  --primary: #6c63ff;
  --secondary: #ff6584;
  --accent: #43cea2;
  --dark: #1a1a2e;
  --light: #f9f9f9;
}

@media (max-width: 767px) {
  .js-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  background-color: var(--light);
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  color: var(--dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

/* Hero section gradient background */
.hero-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

/* Feature card hover effect */
.feature-card {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.08);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Animated background */
.animated-bg {
  animation: gradient 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

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

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

/* Fade-in effect */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Testimonial card responsiveness */
.testimonial-card {
  min-width: 320px;
  transition: all 0.3s ease;
}

/* Scroll-triggered animations */
@media (prefers-reduced-motion: no-preference) {
  .js-scroll {
    opacity: 0;
    transition: opacity 0.6s, transform 0.6s;
  }

  .js-scroll.scrolled {
    opacity: 1;
    transform: translateY(0) !important;
  }

  .scrolled-from-left {
    transform: translateX(-20px);
  }

  .scrolled-from-right {
    transform: translateX(20px);
  }

  .scrolled-from-left.scrolled,
  .scrolled-from-right.scrolled {
    transform: translateX(0);
  }

  .scrolled-scale {
    transform: scale(0.8);
  }

  .scrolled-scale.scrolled {
    transform: scale(1);
  }
}

/* Lightbox fixes */
.lightbox .lb-close {
  display: block !important;
  opacity: 1 !important;
}

/* Footer styling */
footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

footer a {
  color: #00B4D8;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Mobile styles here */
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Small phone styles */
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Tablet styles */
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Small desktop styles */
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  /* Large desktop styles */
}
