/* Custom Theme Colors */
:root {
  --primary-indigo: #4b0082;
  --primary-coral: #ff6f61;
  --secondary-indigo: #6a0dad;
  --light-gray: #f8fafc;
  --dark-gray: #1f2937;
  --gradient-indigo: linear-gradient(135deg, #4b0082 0%, #6a0dad 100%);
}
/* body {
  font-size: calc(10px + 0.5vw); 
} */
.bg-primary-indigo {
  background-color: var(--primary-indigo);
}

.bg-gradient-indigo {
  background: var(--gradient-indigo);
}
.bg-primary-coral{
  background:var(--primary-coral);
}

.hover\:bg-primary-indigo:hover {
  background-color: var(--secondary-indigo);
}

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

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

.hover\:text-primary-coral:hover {
  color: var(--primary-coral);
}

.focus\:ring-primary-coral {
  --tw-ring-color: var(--primary-coral);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

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

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

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

  50% {
    transform: scale(1.05);
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }

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

@keyframes slideInFromRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }

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

.animate-fade-in {
  animation: fadeIn 1s ease-in-out;
}

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

.animate-pulse {
  animation: pulse 3s ease-in-out infinite;
}

.animate-slide-left {
  animation: slideInFromLeft 0.8s ease-out;
}

.animate-slide-right {
  animation: slideInFromRight 0.8s ease-out;
}

/* Custom Font Styling */
.font-heading {
  font-family: "Inter", sans-serif;
  font-weight: 800;
}

.font-body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

/* Glass Morphism Effect */
.glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-indigo);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-indigo);
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Floating Elements */
.floating-shape-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(75, 0, 130, 0.1);
  filter: blur(60px);
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.floating-shape-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: rgba(255, 111, 97, 0.1);
  filter: blur(60px);
  z-index: 0;
  animation: float 10s ease-in-out infinite reverse;
}

/* Feature Card Hover Effect */
.feature-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(75, 0, 130, 0.1) 0%,
    rgba(106, 13, 173, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.btn-glow:hover::before {
  opacity: 1;
  animation: shine 1.5s;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  /* Active bullet */
  background: var(--primary-indigo);
  /* primary indigo */
}

/* Alternative color scheme */
.testimonial-swiper.alternative .swiper-pagination-bullet {
  background: #fbcfe8;
  /* light pink */
}

.testimonial-swiper.alternative .swiper-pagination-bullet-active {
  background: #ec4899;
  /* primary pink */
}

@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* Testimonial Card */
.testimonial-card {
  transition: all 0.5s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  color: rgba(255, 111, 97, 0.1);
  font-family: serif;
  line-height: 1;
  z-index: 0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
 /* Animation styles (can also be in main.css) */
 @keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
[data-animate] {
  opacity: 0;
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}