body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #f0f8ff, #e6f7ff);
}

header img {
  margin-bottom: 10px;
}

.card {
  border-radius: 15px;
  background-color: #ffffffcc;
}

footer {
  margin-top: 50px;
}

/* Loader styles */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #007bff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



.premium-btn {
  transition: all 0.3s ease-in-out;
  transform: scale(1);
}

.premium-btn:hover {
  background-color: #ffc107;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}



/* Gradient animated focus text */
.animated-highlight {
  background: linear-gradient(90deg, #f59e0b, #ec4899, #6366f1);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 5s ease infinite;
}

@keyframes gradientText {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Blinking text and icon */
.free-blink {
  animation: blinkText 1.2s step-start 0s infinite;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  color: #f59e0b;
}

@keyframes blinkText {
  50% { opacity: 0.5; }
}

/* Emoji bounce animation */
.emoji {
  animation: bounceEmoji 2s ease infinite;
  display: inline-block;
  margin-left: 8px;
  font-size: 1.3em;
}

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


.btn-get-started {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  border: none;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-get-started:hover {
  background: linear-gradient(135deg, #6366f1, #14b8a6);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6);
  transform: scale(1.05);
}

.btn-get-started:active {
  animation: clickPulse 0.3s ease;
}

@keyframes clickPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(59, 130, 246, 0.7);
  }
  50% {
    transform: scale(0.95);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(59, 130, 246, 0.7);
  }
}


.btn-get-started::after {
  content: '👉';
  margin-left: 10px;
  animation: pointWiggle 1s ease-in-out infinite;
}

@keyframes pointWiggle {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}





/* Feedback Card Animation */
.feedback-card {
  transition: transform 3s ease, box-shadow 2s ease;
}
.feedback-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.feedback-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 2.8s ease;
}

.feedback-card.animate {
  opacity: 1;
  transform: translateY(0);
}



/* Feedback Section Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.feedback-card {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

/* Staggered animation delays */
.feedback-card:nth-child(1) { animation-delay: 0.1s; }
.feedback-card:nth-child(2) { animation-delay: 0.2s; }
.feedback-card:nth-child(3) { animation-delay: 0.3s; }
.feedback-card:nth-child(4) { animation-delay: 0.4s; }
.feedback-card:nth-child(5) { animation-delay: 0.5s; }
.feedback-card:nth-child(6) { animation-delay: 0.6s; }
.feedback-card:nth-child(7) { animation-delay: 0.7s; }
.feedback-card:nth-child(8) { animation-delay: 0.8s; }
.feedback-card:nth-child(9) { animation-delay: 0.9s; }
.feedback-card:nth-child(10) { animation-delay: 1.0s; }
