:root {
  --primary-color: #3f654d;
  --primary-hover: #488b61;
  --text-color: #333;
  --bg-color: #f2f2f2;
  --white: #fff;
  --border-color: #ccc;
  --shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  --spacing-sm: 0.5em;
  --spacing-md: 1em;
  --border-radius: 15px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  padding: var(--spacing-md);
  line-height: 1.6;
  min-height: 100vh;
  /* background: linear-gradient(
    135deg,
    rgba(158, 216, 109, 0.4) 0%,
    rgba(76, 175, 80, 0.3) 50%,
    rgba(34, 76, 58, 0.4) 100%
  ) !important; */
}

/* Header styles */
header {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: var(--spacing-md);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

header h1 {
  font-size: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-icon {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.main-nav {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: white;
  z-index: 1000;
  transition: transform 0.3s ease;
  -webkit-transform: translateX(-300px);
  transform: translateX(-300px);
}

.main-nav.active {
  -webkit-transform: translateX(300px);
  transform: translateX(300px);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(74 138 106 / 50%) !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-content {
  padding: 2rem 1rem;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.close-nav {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.close-icon {
  width: 24px;
  height: 24px;
}

.nav-content ul {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.nav-content ul li {
  margin-bottom: 1rem;
}

.nav-content ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-content ul li a:hover {
  color: var(--primary-color);
}

/* Main container */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 180px var(--spacing-md) 0; 
  padding-bottom: 120px; 
}

/* Search Section */
.search-section {
  position: fixed;
  top: 80px; 
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 20px 10px;
  background: var(--bg-color);
  z-index: 99;

}

.input-group {
  display: flex;
  align-items: center;
  flex: 1 1 300px;
  max-width: 600px;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.input-group input {
  flex: 1;
  padding: 10px;
  padding-right: 80px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: box-shadow 0.3s ease;
}

.input-group input:focus {
  outline: none;
}

/* Button styles */
.input-group button,
#voiceBtn {
  position: absolute;
  background: transparent;
  border: none;
  padding: var(--spacing-sm);
  cursor: pointer;
  color: var(--primary-color);
  transition: color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; 
}

.input-group #searchBtn {
  right: 0;
}

.input-group #voiceBtn {
  right: 40px; 
  border-right: 1px solid var(--border-color); 
}

.input-group button:hover,
#voiceBtn:hover {
  color: var(--primary-hover);
  transform: translateY(-1px);
}

.input-group button:active,
#voiceBtn:active {
  transform: translateY(0);
}

.input-group img {
  width: 20px;
  height: 20px;
  opacity: 0.7; 
  transition: opacity 0.3s ease;
}

.input-group button:hover img {
  opacity: 1;
}

.result-section:hover {
  transform: translateY(-2px);
}

#duaDisplay {
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
}

/* Audio Player */
audio {
  width: 100%;
  margin-top: var(--spacing-sm);
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Update the dua list styles */
#dua-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 20px auto;
  width: 100%;
  max-width: 800px;
}

.dua-card {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 90%;
  border: 2px solid #45a049;
  max-width: 500px;
  transition: transform 0.3s ease;
  margin: 0;
}

.dua-card .transliteration {
  color: #e67e22; 
}

.dua-card .translation {
  color: #16a085; 
}

.arabic-text {
  font-size: 1.3rem;
  font-family: "Amiri", serif;
  line-height: 1.9;
}

audio {
  width: 100%;
  margin-top: 10px;
}


.toggle-section {
  margin: 20px;
  text-align: center;
}

.toggle-card {
  background: linear-gradient(
    90deg,
    rgb(158 216 109 / 50%) 0%,
    rgba(34, 76, 58, 0.5) 100%
  ) !important;
  border-radius: 30px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 180px;
  position: relative;
  cursor: default;
  transform: translateY(-5px) scale(1.02);
  box-shadow: rgba(50, 50, 93, 0.35) 0px 20px 30px -10px,
    rgba(0, 0, 0, 0.4) 0px 12px 20px -12px,
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.toggle-card .card-title {
  position: absolute;
  font-size: 1.5rem;
  color: #000;
  margin: 0;
  text-align: left;
  font-weight: bold;
}

.toggle-card .card-description {
  position: absolute;
  top: 5rem;
  left: 1rem;
  right: 1rem;
  color: #676565;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}

.toggle-card .read-more-btn {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: white;
  border: none;
  padding: 0.7rem 3.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.toggle-card .read-more-btn:hover {
  transform: translateY(-50%, -2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.result-section {
  margin-top: 20px;
}

/* Bookmark icon styles */
.dua-actions {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 4rem;
    padding: 0.5rem;
    margin-top: 1rem;
    border-top: 1px solid #eee;
    width: 100%;
    position: relative;
    flex-wrap: nowrap; /* Prevent wrapping */
}

.action-btn {
    flex: 0 0 40px; /* Fixed width, no growing or shrinking */
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: all 0.2s ease;
    position: relative;
}

.action-btn img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: all 0.2s ease;
}

/* Specific button styles */
.bookmark-btn .action-icon {
  filter: none;
}

.bookmark-btn.bookmarked .action-icon {
  filter: invert(32%) sepia(15%) saturate(1425%) hue-rotate(101deg) brightness(94%) contrast(89%);
}

.copy-btn.copied .action-icon {
  filter: invert(32%) sepia(15%) saturate(1425%) hue-rotate(101deg) brightness(94%) contrast(89%);
}

.action-btn:hover {
  transform: scale(1.1);
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
}

.action-btn:hover .action-icon {
  opacity: 1;
}

.bookmark-btn, .copy-btn {
    transition: transform 0.2s ease;
}

.bookmark-btn:active, .copy-btn:active {
    transform: scale(0.95);
}

.bookmark-icon, .copy-icon {
    transition: all 0.2s ease;
}

.bookmarked .bookmark-icon {
    filter: invert(32%) sepia(15%) saturate(1425%) hue-rotate(101deg) brightness(94%) contrast(89%);
}

.copied .copy-icon {
    filter: invert(32%) sepia(15%) saturate(1425%) hue-rotate(101deg) brightness(94%) contrast(89%);
}

/* Ensure all action buttons have consistent sizing */
.dua-actions button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  margin: 0;
}

.dua-actions button img {
  width: 24px;
  height: 24px;
}

.audio-btn,
.share-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audio-btn:hover,
.share-btn:hover {
  background-color: rgba(76, 175, 80, 0.1);
  transform: scale(1.1);
}

.speaker-icon,
.share-icon {
  width: 24px;
  height: 24px;
  opacity: 0.8;
}

.audio-btn:hover .speaker-icon,
.share-btn:hover .share-icon {
  opacity: 1;
}

audio {
  display: none;
}

.share-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.share-panel {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 90%;
  width: 300px;
}

.share-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 20px;
}

.share-buttons button {
  background: none;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.share-buttons button:hover {
  transform: scale(1.1);
  background-color: rgba(0, 0, 0, 0.1);
}

.share-buttons .share-icon {
  width: 24px;
  height: 24px;
  color: #4caf50;
}

.share-twitter .share-icon {
  color: #1da1f2;
}
.share-whatsapp .share-icon {
  color: #25d366;
}
.share-facebook .share-icon {
  color: #1877f2;
}
.share-email .share-icon {
  color: #ea4335;
}
.share-copy .share-icon {
  color: #6c757d;
}
.share-cancel .share-icon {
  color: #dc3545;
}

.toggle-section {
  margin-top: 20px;
}

.main-footer {
  background-color: var(--bg-color);
  padding: 1rem;
  border-top: 1px solid #e0e0e0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-text {
  color: #929090;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.social-links a {
  color: var(--text-color);
  transition: transform 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
}

.social-icon {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

.social-icon:hover {
  opacity: 1;
}

.back-section {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  background: var(--bg-color);
  z-index: 98;
  display: flex;
  justify-content: flex-start;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  color: var(--text-color);
  font-size: 1rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.back-btn:hover {
  background-color: rgba(76, 175, 80, 0.1);
  transform: translateX(-3px);
}

.back-icon {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

/* About Section styles */
.about-section {
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  margin: 1rem auto;
  max-width: 800px;
  box-shadow: var(--shadow);
  display: none; 
}

.about-content {
  line-height: 1.6;
}

.about-content span {
  color: #007bff;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  margin: 20px 61px;
  font-size: 1rem;
}

.app-features {
  margin-top: 1.5rem;
}

.app-features ul {
  list-style: disc;
  padding-left: 1.5rem;
}

/* Feedback Section styles */
.feedback-section {
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: var(--shadow);
  display: none;
}

.feedback-form {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
}

.submit-feedback {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-feedback:hover {
  background: var(--primary-hover);
}

.feedback-list {
  margin-top: 30px;
  max-height: 500px;
  overflow-y: auto;
  padding: 10px;
  display: none; 
}

.feedback-section[style*="display: block"] .feedback-list {
  display: block;
}

.feedback-item {
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.feedback-item h4 {
  margin: 0;
  color: var(--primary-color);
}

.feedback-item p {
  margin: 0.5rem 0;
}

.feedback-meta {
  font-size: 0.9rem;
  color: #666;
}

.feedback-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 15px 25px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.3s ease-out;
  z-index: 1000;
}

.feedback-notification.error {
  background-color: #dc3545;
}

.feedback-item {
  background: white;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  animation: fadeIn 0.5s ease-out;
}

.feedback-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.feedback-date {
  color: #666;
  font-size: 0.9em;
}

.feedback-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4081;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8em;
  animation: pulse 2s infinite;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.feedback-list {
  margin-top: 30px;
  max-height: 500px;
  overflow-y: auto;
  padding: 10px;
}

.feedback-section.active .feedback-list {
  display: block;
}

.nav-link {
  display: block;
  padding: 12px 16px;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--primary-color);
  background-color: rgba(76, 175, 80, 0.1);
}

.main-nav ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.nav-btn {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem;
  margin: 10px;
  background: none;
  border: 1px solid #000;
  border-radius: 8px;
  color: var(--text-color);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent; 
  touch-action: manipulation; 
}

.nav-btn:hover {
  background-color: rgba(76, 175, 80, 0.1);
  color: var(--primary-color);
}

.nav-icon {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.nav-btn:hover .nav-icon {
  opacity: 1;
}

.section-active {
  display: block !important;
}

.nav-btn:active,
.nav-btn:focus {
  background-color: rgba(76, 175, 80, 0.1);
  color: var(--primary-color);
}

.nav-feedback-list {
  padding: 10px;
  margin: 10px 0;
  max-height: 300px;
  overflow-y: auto;
  border-top: 1px solid var(--border-color);
}

.nav-feedback-list h3 {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-bottom: 10px;
  padding-left: 10px;
}

#menuFeedbackList .feedback-item {
  padding: 8px;
  margin-bottom: 8px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 6px;
  font-size: 0.9rem;
}

#menuFeedbackList .feedback-header {
  margin-bottom: 5px;
}

#menuFeedbackList .feedback-header h4 {
  font-size: 0.85rem;
}

#menuFeedbackList .feedback-date {
  font-size: 0.75rem;
}

.loading {
  text-align: center;
  padding: 20px;
  color: var(--text-color);
}

.no-results {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  margin: 1rem;
}

.no-results p {
  color: var(--text-color);
  margin: 0;
}

mark {
  background-color: #fff3cd;
  padding: 0 2px;
  border-radius: 2px;
}

.retry-btn {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.retry-btn:hover {
  background: #0056b3;
}

/* Add these styles after your existing CSS */

.download-section {
  padding: 1.5rem;
  background: white;
  border-radius: var(--border-radius);
  margin: 1rem auto;
  max-width: 800px;
  box-shadow: var(--shadow);
}

.download-section h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-align: center;
  margin-bottom: 0.5rem;
}

.download-section h3 {
  font-size: clamp(1rem, 3vw, 1.2rem);
  text-align: center;
  margin-bottom: 1.5rem;
}

.download-steps {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding: 1rem 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}

.download-steps::-webkit-scrollbar {
  display: none;
}

.download-step {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: center;
  padding: 1rem;
  background: rgba(76, 175, 80, 0.05);
  border-radius: var(--border-radius);
  text-align: center;
}

.step-icon {
  width: 100%;
  height: 200px;
  object-fit: fill;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

.download-step p {
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  padding: 0.5rem;
  font-weight: 600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-section {
  margin: 20px;
  padding: 1rem;
}

.feature-card {
  background: rgba(76, 175, 80, 0.05);
  border-radius: 30px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.feature-timer {
  font-size: 1rem;
  color: var(--text-color);
  background: rgba(76, 175, 80, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.feature-content {
  text-align: center;
}

.feature-content .arabic-text {
  font-size: 1.8rem;
  margin: 1rem 0;
  line-height: 2;
}

.feature-content .transliteration {
  color: #e67e22;
  margin: 1rem 0;
}

.feature-content .translation {
  color: #16a085;
  margin: 1rem 0;
}

.feature-day {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.copy-btn {
  border: none;
  position: relative;
  left: 30%;
  background: none;
  margin-top: 5px;
  cursor: pointer;
  transition: transform 0.1s ease;
}

.copy-btn.copied {
  transform: scale(1.2);
}

.bookmark-btn {
  border: none;
  background: none;
  cursor: pointer;
  position: absolute;
  margin-top: 3px;
  left: 58%;
  transition: transform 0.1s ease;
}




/* EID Mubarak Section */
/* 
.eid-banner {
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
  background: linear-gradient(
      120deg,
      rgba(158, 216, 109, 0.1) 0%,
      rgba(76, 175, 80, 0.15) 50%,
      rgba(34, 76, 58, 0.1) 100%
  );
  border-radius: 15px;
  margin: 2rem 0;
}

.eid-text-wrapper {
  width: fit-content;
  animation: scrollText 20s linear infinite;
}


.eid-text {
  font-size: 2rem;
  color: var(--primary-color);
  white-space: nowrap;
  text-align: center;
  font-weight: bold;
  text-shadow: 
      2px 2px 4px rgba(0, 0, 0, 0.1),
      0 0 10px rgba(76, 175, 80, 0.2);
  background: linear-gradient(
      45deg,
      var(--primary-color),
      #488b61,
      var(--primary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


@keyframes scrollText {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
} */

/* Add hover pause effect */
/* .eid-banner:hover .eid-text-wrapper {
  animation-play-state: paused;
} */