/* Custom CSS for Student AI Website */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* CSS Variables for consistency */
:root {
  --primary-color: #6f42c1;
  --secondary-color: #e03bab;
  --accent-color: #8b5cf6;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif !important;
  top: 0px !important;
}

/* Performance optimizations */
img {
  loading: lazy;
  decoding: async;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Gradient Backgrounds */
.bg-primary-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.bg-secondary-gradient {
  background: linear-gradient(135deg, #a855f7, #ff4694);
}

.bg-accent-gradient {
  background: linear-gradient(135deg, #b721ff, #fbd786);
}

/* Custom styles for the new layout */
.header-section {
  background: white;
  min-height: 600px;
}

/* Mobile: 2x2 grid */
@media (max-width: 767px) {
  .stats-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .header-image {
    order: 1; /* Image comes first on mobile */
    margin-bottom: 2rem;
  }

  .header-content {
    text-align: center;
  }
}

.header-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.header-image img:hover {
  transform: scale(1.05);
}

/* Floating animation for image */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Mobile Feature Cards */
@media (max-width: 767px) {
  .mobile-hidden {
    display: none;
  }

  .mobile-hidden.show-all {
    display: block;
    animation: fadeInUp 0.5s ease-out;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes flipIn {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}

@keyframes flipOut {
  0% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}

/* Button Styles */
.see-more-btn {
  background: linear-gradient(135deg, var(--accent-color), #ec4899);
}

.see-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Feature Cards */
.feature-card {
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card .icon-container {
  transition: transform 0.3s ease;
}

.feature-card:hover .icon-container {
  transform: scale(1.1);
}

/* Mobile Menu Animation */
.mobile-menu-enter {
  animation: slideDown 0.3s ease-out;
}

.mobile-menu-exit {
  animation: slideUp 0.3s ease-out;
}

/* Card Flip Animation Styles - DESKTOP HOVER FIX */
.flip-card {
  perspective: 1000px;
  height: 450px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s ease-in-out;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
}

/* DESKTOP HOVER - This should work on desktop */
@media (min-width: 769px) {
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg) !important;
  }
}

.flip-card.flipped .flip-card-inner,
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg) !important;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 460px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .flip-card-front,
  .flip-card-back {
    height: 420px;
  }
}

.flip-card-front {
  transform: rotateY(0deg);
  z-index: 2;
}

.flip-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #6471ad 0%, #764ba2 100%);
  color: white;
  z-index: 1;
}

/* Fixed image container - uniform aspect ratio */
.flip-card .card-image-container {
  width: 100%;
  height: 160px; /* Fixed height for all images */
  overflow: hidden;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  flex-shrink: 0; /* Prevent shrinking */
}

.flip-card .card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Card title */
.flip-card .card-title {
  font-size: 1.1rem; /* Smaller title */
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-align: left; /* Always left aligned */
  color: #1f2937;
  line-height: 1.3;
  flex-shrink: 0;
}

/* Features list container */
.flip-card .features-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* Reduced gap */
  text-align: left;
  align-items: flex-start;
}

/* Individual feature item */
.flip-card .feature-item {
  display: flex;
  align-items: flex-start; /* Align to top for multiline */
  gap: 0.5rem; /* Reduced gap between icon and text */
  font-size: 0.875rem; /* Smaller text size */
  line-height: 1.4;
  color: #4b5563;
  width: 100%;
}

/* Feature icon container */
.flip-card .feature-icon {
  flex-shrink: 0;
  width: 16px; /* Smaller icons */
  height: 16px;
  margin-top: 2px; /* Slight top margin for better alignment */
}

.flip-card .feature-icon svg {
  width: 100%;
  height: 100%;
  color: #272d3b;
}

/* Feature text */
.flip-card .feature-text {
  flex: 1;
  text-align: left;
  word-wrap: break-word;
  hyphens: auto;
  font-size: 16px;
}

/* Back card specific styles */
.flip-card-back .card-title {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.flip-card-back .back-description {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
}

.flip-card-front,
.flip-card-back {
  padding: 1.25rem;
}

.flip-card .card-image-container {
  height: 140px; /* Smaller on mobile */
}

.flip-card .card-title {
  font-size: 1rem;
}

.flip-card .feature-item {
  font-size: 0.8rem;
}

.flip-card .feature-icon {
  width: 14px;
  height: 14px;
}

.flip-card.touch-active .flip-card-inner {
  transform: rotateY(180deg) !important;
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .flip-card {
    height: 420px;
  }

  .flip-card .feature-item {
    font-size: 0.85rem;
  }
}

/* Staggered animation for auto-flip */
.auto-flip .flip-card:nth-child(1) .flip-card-inner {
  animation: flipIn 0.8s ease-in-out 0s forwards;
}
.auto-flip .flip-card:nth-child(2) .flip-card-inner {
  animation: flipIn 0.8s ease-in-out 0.5s forwards;
}
.auto-flip .flip-card:nth-child(3) .flip-card-inner {
  animation: flipIn 0.8s ease-in-out 1s forwards;
}
.auto-flip .flip-card:nth-child(4) .flip-card-inner {
  animation: flipIn 0.8s ease-in-out 1.5s forwards;
}

/* Amazon Review Card Styles */
.amazon-review-card {
  position: relative;
  transition: all 0.3s ease;
}

.amazon-review-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff9900, #ff6600);
  border-radius: 24px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.amazon-review-card:hover::before {
  opacity: 0.1;
}

.amazon-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Amazon button hover effect */
.bg-orange-500:hover {
  background: linear-gradient(135deg, #ff6600, #ff9900);
}

/* Stats Grid Layout */
.stats-grid-2x2 {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
}

/* Mobile: 2x2 grid */
@media (max-width: 767px) {
  .stats-grid-2x2 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  .stats-grid-2x2 .bg-white\/10 {
    padding: 1rem !important;
  }

  .stats-grid-2x2 .text-2xl {
    font-size: 1.5rem !important;
  }

  .stats-grid-2x2 .text-sm {
    font-size: 0.75rem !important;
  }
}

/* Tablet: 2x2 grid */
@media (min-width: 768px) and (max-width: 1023px) {
  .stats-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Desktop: 4 columns */
@media (min-width: 1024px) {
  .stats-grid-2x2 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* Photo Gallery Grid */
.photo-gallery-grid {
  display: grid;
  gap: 0.75rem;
}

@media (max-width: 767px) {
  .photo-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .photo-gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
  }
}

@media (min-width: 1024px) {
  .photo-gallery-grid {
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 1rem !important;
  }
}

/* Trust indicators animation */
.grid > div {
  animation: fadeInUp 0.6s ease-out;
}

.grid > div:nth-child(1) {
  animation-delay: 0.1s;
}
.grid > div:nth-child(2) {
  animation-delay: 0.2s;
}
.grid > div:nth-child(3) {
  animation-delay: 0.3s;
}
.grid > div:nth-child(4) {
  animation-delay: 0.4s;
}

/* Remove FAQ separator line */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 2rem;
  background: rgba(255, 255, 255, 0.3);
  border-top: none !important; /* Remove separator line */
  border: none !important; /* Remove all borders */
}

.faq-content.active {
  max-height: 300px;
  padding: 1.5rem 2rem;
  border-top: none !important; /* Ensure no top border when active */
}

/* Also remove any pseudo-elements that might create lines */
.faq-content::before,
.faq-content::after,
.faq-item::before,
.faq-item::after {
  display: none !important;
}

/* Remove any box-shadow that might look like a line */
.faq-content {
  box-shadow: none !important;
}

/* Pricing Card Styles */
.pricing-card {
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
  border-color: var(--primary-color);
  position: relative;
}

.pricing-card.popular::before {
  content: "Popular";
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--warning-color);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Review Stars */
.star-rating {
  display: flex;
  gap: 2px;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  fill: #fbbf24;
}

/* Hover Effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Button Hover Effects */
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(111, 66, 193, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--primary-color);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Accessibility Improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus States */
button:focus,
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .text-4xl {
    font-size: 2.5rem;
  }

  .px-8 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .max-w-7xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .grid-cols-2 {
    grid-template-columns: repeat(1, 1fr);
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Print Styles */
@media print {
  .no-print {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .bg-gradient-to-br,
  .bg-gradient-to-r {
    background: white !important;
  }
}
.stage {
  position: relative;
}

.video-icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #8b5cf6;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  line-height: 60px;
  position: relative;
  z-index: 10;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(139, 92, 246, 0.2);
}

.video-icon:hover {
  transform: scale(1.1);
  background: #7c3aed;
}

.video-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 12px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 2px;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(139, 92, 246, 0.8);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.pulse-ring:nth-child(1) {
  width: 80px;
  height: 80px;
  animation-delay: 0s;
  border-color: rgba(139, 92, 246, 0.8);
}

.pulse-ring:nth-child(2) {
  width: 100px;
  height: 100px;
  animation-delay: 0.6s;
  border-color: rgba(139, 92, 246, 0.8);
}

.pulse-ring:nth-child(3) {
  width: 120px;
  height: 120px;
  animation-delay: 1.2s;
  border-color: rgba(139, 92, 246, 0.8);
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

.video-icon:hover + .pulse-ring,
.video-icon:hover ~ .pulse-ring {
  animation-play-state: paused;
}

/* --- Custom Footer Theme --- */

/* Contact Info Bar (address, phone, email) */
.footer-contact-bar {
  background: #0a2540; /* deep blue */
  color: #fff;
  border: none;
  box-shadow: 0 2px 16px rgba(10, 37, 64, 0.08);
}
.footer-contact-bar h4 {
  color: #fff;
}
.footer-contact-bar a,
.footer-contact-bar p {
  color: #e0e7ef !important;
}
.footer-contact-bar a:hover {
  color: #8b5cf6 !important; /* accent purple */
  text-decoration: underline;
}

/* Footer Links */
.footer-link {
  transition: color 0.2s;
}
.footer-link:hover {
  text-decoration: underline;
}

/* Social Icons in Footer */
.footer-social a {
  background: #0a2540 !important;
  border: none !important;
}
.footer-social i {
  color: #fff !important;
  transition: color 0.2s;
}
.footer-social a:hover i {
  color: #8b5cf6 !important;
}

/* Language Modal Styles */
#languageModal {
  display: none;
}
#languageModal.active {
  display: flex;
}
#languageModal .lang-card {
  background: #f3f4f6;
  border-radius: 1rem;
  padding: 1rem 0.5rem;
  margin: 0.25rem;
  font-weight: bold;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.1s, box-shadow 0.1s, background 0.2s;
  cursor: pointer;
  border: none;
  outline: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#languageModal .lang-card:hover,
#languageModal .lang-card:focus {
  background: #ede9fe;
  color: #6d28d9;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(109, 40, 217, 0.1);
}
#languageModal .lang-card.selected {
  background: #c7d2fe;
  color: #1e40af;
  border: 2px solid #6366f1;
}
#languageModal .lang-card span {
  display: block;
  text-align: center;
}
#languageModal .lang-card .icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}
#languageModal h2 {
  margin-bottom: 1rem;
}
#languageModal .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hide Google Translate top bar */
body .goog-te-banner-frame.skiptranslate {
  display: none !important;
}

/* Unique colors for each language card */
#languageModal .lang-card:nth-child(1) {
  background: #7c3aed;
  color: #fff;
} /* Hindi - purple */
#languageModal .lang-card:nth-child(2) {
  background: #2563eb;
  color: #fff;
} /* Telugu - blue */
#languageModal .lang-card:nth-child(3) {
  background: #059669;
  color: #fff;
} /* Tamil - green */
#languageModal .lang-card:nth-child(4) {
  background: #10b981;
  color: #fff;
} /* Marathi - teal */
#languageModal .lang-card:nth-child(5) {
  background: #f43f5e;
  color: #fff;
} /* Bengali - red */
#languageModal .lang-card:nth-child(6) {
  background: #f59e42;
  color: #fff;
} /* Kannada - orange */
#languageModal .lang-card:nth-child(7) {
  background: #06b6d4;
  color: #fff;
} /* Odia - cyan */
#languageModal .lang-card:nth-child(8) {
  background: #fbbf24;
  color: #fff;
} /* Gujarati - yellow */
#languageModal .lang-card:nth-child(9) {
  background: #f59e42;
  color: #fff;
} /* Punjabi - orange */
#languageModal .lang-card:nth-child(10) {
  background: #22d3ee;
  color: #fff;
} /* Malayalam - light blue */
#languageModal .lang-card:nth-child(11) {
  background: #e11d48;
  color: #fff;
} /* Assamese - pink */
#languageModal .lang-card:nth-child(12) {
  background: #6366f1;
  color: #fff;
} /* Urdu - indigo */
#languageModal .lang-card:nth-child(13) {
  background: #f59e42;
  color: #fff;
} /* Rajasthani - orange */
#languageModal .lang-card:nth-child(14) {
  background: #334155;
  color: #fff;
} /* English - slate */

#languageModal .lang-card {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1.2rem 0.5rem;
  font-size: 1.1rem;
}
#languageModal .lang-card .icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

#languageModal .bg-white {
  max-height: 90vh;
  overflow-y: auto;
}
#languageModal .bg-white::-webkit-scrollbar {
  width: 8px;
}
#languageModal .bg-white::-webkit-scrollbar-thumb {
  background: #e0e7ff;
  border-radius: 8px;
}
#languageModal .bg-white::-webkit-scrollbar-track {
  background: transparent;
}

/* Hide Google Translate top bar iframe and overlay completely */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
body {
  top: 0px !important;
}
body > .skiptranslate {
  display: none !important;
}

/* touch/tap functionality */
/* @media (max-width: 768px) {
  .flip-card:hover .flip-card-inner {
    transform: rotateY(0deg) !important;
  }

  .flip-card.touch-active .flip-card-inner {
    transform: rotateY(180deg) !important;
  }
} */

/* Add this to enable touch hover on mobile */
@media (max-width: 768px) {
  .flip-card {
    -webkit-tap-highlight-color: transparent;
  }

  /* Enable hover on touch devices */
  .flip-card:hover .flip-card-inner,
  .flip-card:active .flip-card-inner {
    transform: rotateY(180deg) !important;
  }
}

/* Pricing cards with consistent dimensions like flip cards */
.pricing-card {
  width: 100% !important;

  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

.pricing-card .mb-8.flex-grow {
  flex: 1 !important;
  overflow-y: auto !important;
  padding-right: 0.5rem !important;
}

.pricing-card .mb-8.flex-grow::-webkit-scrollbar {
  width: 4px;
}

.pricing-card .mb-8.flex-grow::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 2px;
}

/* Text wrapping like flip cards */
.pricing-card li span,
.pricing-card .space-y-3 span,
.pricing-card .space-y-3 p {
  word-wrap: break-word !important;
  hyphens: auto !important;
  line-height: 1.4 !important;
  font-size: 1rem !important;
}

.amazon-trusted-badge {
  font-size: 1rem; /* instead of text-sm */
  font-weight: 900; /* instead of font-bold */
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
  animation: text-pulse 2s ease-in-out infinite;
  background: linear-gradient(
      45deg,
      transparent 25%,
      rgba(255, 255, 255, 0.1) 25%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 50%
    ),
    #fbbf24;
  background-size: 10px 10px;
}

@keyframes text-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
