html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tahoma', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  background: #f7f9fc;
  color: #222;
}

header,
footer {
  background: linear-gradient(90deg, #0078d7, #00b4d8);
  color: #fff;
  text-align: center;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

header h1 {
  margin: 0;
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

header nav a,
footer a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

header nav a:hover,
footer a:hover {
  color: #ffe082;
}

section {
  padding: 50px 20px;
  text-align: center;
  /* transition: background-color 0.3s; */
}

section:nth-child(odd) {
  background: #f0f8fa;
}

section:nth-child(even) {
  background: #e1f6f9;
}

/* section:hover { background: #fdfdfd; } */
section h2 {
  color: #004c91;
  font-size: 2em;
  margin-bottom: 20px;
}

p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 30px auto;
  padding: 0 10px;
  direction: rtl;
}

.feature-card {
  background: white;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  font-size: 1.3em;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-right: 5px solid #00b4d8;
  text-align: right;
  color: #004c91;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-right: 5px solid #0078d7;
}

.image-box {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

iframe {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.buy-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 22px 50px;
  border: none;
  border-radius: 50px;
  font-size: 24px;
  text-decoration: none;
  display: inline-block;
  margin: 30px 0;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.4s ease;
  animation: pulse 2s infinite;
}

.buy-btn:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
  }

  100% {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  }
}

#buy {
  background: linear-gradient(to bottom, #e6f4ea, #ffffff);
  border-top: 5px solid #25D366;
  border-bottom: 5px solid #25D366;
  padding: 70px 20px;
}

#buy h2 {
  color: #075E54;
  font-size: 2.5em;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

#buy .highlight {
  background: rgba(37, 211, 102, 0.15);
  padding: 20px;
  border-radius: 15px;
  margin: 25px auto;
  max-width: 800px;
  font-size: 1.3em;
  line-height: 1.9;
  color: #075E54;
  font-weight: bold;
}

#buy .benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

#buy .benefit-item {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 280px;
  font-size: 1.1em;
}

#buy .benefit-item strong {
  color: #25D366;
  display: block;
  font-size: 1.4em;
  margin-bottom: 10px;
}

#buy .note {
  margin-top: 20px;
  font-size: 1.3em;
  color: #e74c3c;
  font-weight: bold;
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

#buy .whatsapp-icon {
  font-size: 3em;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

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

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

footer {
  font-size: 14px;
  margin-top: 40px;
}

footer nav {
  margin-top: 10px;
}

footer nav a {
  font-size: 14px;
}

/* Pricing & Scarcity Box Styling */
.pricing-box {
  background: linear-gradient(135deg, #fff9e6, #fff3cd);
  color: #856404;
  padding: 20px;
  border-radius: 12px;
  border: 2px dashed #ffc107;
  text-align: center;
  margin: 30px auto;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
  animation: slight-bounce 3s infinite ease-in-out;
}

.pricing-box .title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
}

.pricing-box .old-price {
  font-size: 1.2em;
  text-decoration: line-through;
  color: #d9534f;
  margin-left: 10px;
}

.pricing-box .new-price {
  font-size: 1.8em;
  font-weight: 900;
  color: #28a745;
  display: block;
  margin: 10px 0;
}

.pricing-box .scarcity {
  font-size: 1.1em;
  color: #dc3545;
  font-weight: bold;
  background: rgba(220, 53, 69, 0.1);
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}

@keyframes slight-bounce {

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

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

/* Sticky Buy Button */
#sticky-buy {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 90%;
  text-align: center;
  font-size: 20px;
  padding: 16px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.6);
  animation: pulse 2s infinite;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 1.5em;
    /* Smaller header for mobile */
  }

  section {
    padding: 30px 15px;
    /* Tighter padding to save space on mobile */
  }

  section h2 {
    font-size: 1.5em;
    /* Smaller section headers */
  }

  .feature-card {
    font-size: 1.1em;
    /* Smaller font for cards to prevent wrapping */
    padding: 15px 20px;
  }

  .pricing-box {
    width: 90%;
    padding: 15px;
    box-sizing: border-box;
  }

  .pricing-box .new-price {
    font-size: 1.4em;
    /* Ensure price fits cleanly on one line */
  }

  .pricing-box .scarcity {
    font-size: 0.9em;
  }

  #buy {
    padding: 40px 15px;
    /* Less padding in the buy section */
  }

  #buy h2 {
    font-size: 1.8em;
  }

  #buy .highlight {
    font-size: 1.1em;
  }

  #buy .benefits {
    flex-direction: column;
    align-items: center;
  }

  #buy .benefit-item {
    width: 90%;
  }

  .buy-btn {
    padding: 18px 20px;
    font-size: 18px;
    /* Make text fit on small screens */
    width: 95%;
    /* Make buttons full width on mobile */
    box-sizing: border-box;
  }

  #sticky-buy {
    font-size: 16px;
    padding: 12px;
  }
}

/* Twemoji Styling */
img.emoji {
  height: 1.2em;
  width: 1.2em;
  margin: 0 .05em 0 .1em;
  vertical-align: -0.1em;
  display: inline-block;
}

/* Add extra spacing for emojis inside feature cards (RTL layout) */
.feature-card img.emoji {
  margin-left: 12px;
}

/* SVG Icon Styling */
.icon {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  display: inline-block;
  margin: 0 5px;
}

.icon-large {
  width: 1.5em;
  height: 1.5em;
}

.icon-yellow {
  fill: #FFD700;
}

/* Lightning Yellow */
.icon-green {
  fill: #25D366;
}

/* WhatsApp Green */
.icon-blue {
  fill: #0078d7;
}

/* Primary Blue */
.icon-red {
  fill: #e74c3c;
}

/* Warning Red */
.icon-orange {
  fill: #FF8C00;
}

/* Solution Bulb Orange */