body,
html {
  height: 100%;
  margin: 0;
  font-family: "Syne", sans-serif;
  color: white;
}

.hero-section {
  background: url("../1.webp") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
}
/*
.overlay {
  background: rgba(0, 47, 108, 0.6);
   blue gradient overlay 
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
   background-image: linear-gradient(90deg, #0016b0, transparent);
  background-image: linear-gradient(90deg, #0016b0, #0016b054, transparent);
}*/

.overlay {
  background: rgb(0 57 190 / 68%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  /* background-image: linear-gradient(90deg, #0016b0, transparent); */
  /* background-image: linear-gradient(90deg, #0016b0, #0020ff, transparent); */
}

.content {
  padding: 40px;
}

.content h1 {
  font-weight: bold;
  font-size: 3rem;
}

.content h2 {
  font-size: 2rem;
  font-weight: 400;
}

.highlight {
  color: #ff6b1a;
  font-weight: bold;
}

.feature-list {
  margin-top: 20px;
  margin-bottom: 30px;
}

.feature-list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.btn-custom {
  background: #ff6b1a;
  color: white;
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.btn-custom:hover {
  background: #000000; /* darker orange */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* subtle hover shadow */
  color: #fff;
}

.disclaimer {
  font-size: 0.75rem;
  color: #ddd;
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-section {
    height: auto; /* allow content to grow */
    min-height: 100vh; /* still keeps full screen feel */
    display: block; /* stack content naturally */
  }

  .overlay {
    flex-direction: column; /* stack overlay content vertically */
    padding: 20px;
  }

  .content {
    padding: 20px;
  }

  .content h1 {
    font-size: 2rem; /* smaller for mobile */
  }

  .content h2 {
    font-size: 1.5rem;
  }

  .feature-list li {
    font-size: 1rem;
  }

  .btn-custom {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .disclaimer {
    text-align: justify;
  }
}

/* Call to Action */
.whatsapp-button .cc-whatsapp-action-ripple {
  z-index: 99999;
  position: fixed;
  right: 2rem;
  bottom: 8rem;
  background: #27de63;
  width: 2rem;
  height: 2rem;
  padding: 6px;
  border-radius: 100%;
  box-sizing: border-box;
  color: #ffffff;
  -webkit-animation: cc-whatsapp-action-ripple 0.6s linear infinite;
  animation: cc-whatsapp-action-ripple 0.6s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.whatsapp-button .cc-whatsapp-action-ripple i {
  transition: 0.3s ease;
  font-size: 22px;
}

.whatsapp-button .cc-whatsapp-action-ripple:hover i {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
}

@-webkit-keyframes cc-whatsapp-action-ripple {
  0% {
    box-shadow: 0 4px 10px #27de63, 0 0 0 0 #27de63, 0 0 0 5px #27de63,
      0 0 0 10px #27de63;
  }
  100% {
    box-shadow: 0 4px 10px #27de63, 0 0 0 5px #27de63, 0 0 0 10px #27de63,
      0 0 0 20px rgba(0, 123, 255, 0);
  }
}

@keyframes cc-whatsapp-action-ripple {
  0% {
    box-shadow: 0 4px 10px #27de63, 0 0 0 0 #27de63, 0 0 0 5px #27de63,
      0 0 0 10px #27de63;
  }
  100% {
    box-shadow: 0 4px 10px #27de63, 0 0 0 5px #27de63, 0 0 0 10px #27de63,
      0 0 0 20px rgba(0, 123, 255, 0);
  }
}
@media (max-width: 991px) {
  .display-none-md {
    display: none !important;
  }
}
