/* Bakaya Kitab - Custom Styles */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #DC2626;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #B91C1C;
}

/* Image slider */
.slider-container {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slide {
  min-width: 100%;
}

/* Floating WhatsApp button animation */
.whatsapp-float {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Navbar transition */
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Card hover effects */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #DC2626 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shimmer animation for Hindi heading */
.shimmer-text {
  background: linear-gradient(90deg, #DC2626, #2563EB, #7C3AED, #DC2626);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* Hero background pattern */
.hero-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(220,38,38,0.1) 1px, transparent 0);
  background-size: 20px 20px;
}

/* Pricing card highlight */
.pricing-highlight {
  border: 2px solid #DC2626;
  position: relative;
}
.pricing-highlight::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #DC2626;
  color: white;
  padding: 2px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
}

/* Testimonial quote mark */
.quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: #DC2626;
  opacity: 0.3;
}

/* Mobile menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.mobile-menu.open {
  max-height: 500px;
}

/* Trust bar icon pulse */
.trust-icon {
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Step connector line */
.step-connector {
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #DC2626, #2563EB);
  z-index: 0;
}
@media (max-width: 768px) {
  .step-connector::after {
    display: none;
  }
}
