.btn-free-trial {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(
    135deg,
    #5c5470,  
    #7e73a1
  ); /* Gradient for depth */
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px; /* Pill-shaped */
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-free-trial:hover {
  background: linear-gradient(
    135deg,
    #7e73a1,
    #5c5470
  ); /* hover gradient flip */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

p {
  font-size: 16px;
  line-height: 26px;
  /* color: #475569; */
  font-weight: 600;
}

.bounce-icon {
  display: inline-block;
  animation: bounce 0.8s infinite ease-in-out;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  } /* adjust height */
}



.faq-section {
  position: relative;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #12326f, #034064);
  overflow: hidden;
  color: #fff;
}

/* Waves container */
.ocean {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 300px;
  overflow: hidden;
  z-index: 0; 
  left: 0;
}

.ocean-wave {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 130%;
  background-repeat: repeat no-repeat;
  background-size: 50% 100%;
  animation: waveMove 10s linear infinite;
  opacity: 0.7;
}

.ocean-wave:nth-child(1) {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="200"><path fill="%23ffffff" fill-opacity="0.5" d="M0,100 Q300,200 600,100 T1200,100 L1200,200 L0,200 Z"></path></svg>');
  animation-duration: 8s;
}

.ocean-wave:nth-child(2) {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="200"><path fill="%23aee0f4" fill-opacity="0.5" d="M0,120 Q300,220 600,120 T1200,120 L1200,200 L0,200 Z"></path></svg>');
  animation-duration: 12s;
  opacity: 0.5;
}

.ocean-wave:nth-child(3) {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="200"><path fill="%2343c0f1" fill-opacity="0.5" d="M0,140 Q300,240 600,140 T1200,140 L1200,200 L0,200 Z"></path></svg>');
  animation-duration: 16s;
  opacity: 0.4;
}

@keyframes waveMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* FAQ container above waves */
.faq-container {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ styling */
.faq-container h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #f9f9f9;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: rgba(75, 121, 209, 0.8);
  border: none;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;
  transition: background 0.3s;
  color: #f9f9f9;
}

.faq-question:hover {
  background: rgba(224, 242, 254, 0.8);
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(249, 250, 251, 0.1);
  padding: 0 1.2rem;
  border-radius: 0 0 0.5rem 0.5rem;
}

.faq-answer p {
  margin: 1rem 0;
}

.faq-question::after {
  content: "+";
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-item.active .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}


/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .faq-question {
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
  }

  .faq-answer p {
    margin: 0.8rem 0;
  }
  .ocean {
      width: 100%;
      height: 200px;
    }

    .ocean-wave {
      bottom: 0;
      width: 200%;
      height: 100%;
      background-repeat: repeat no-repeat;
      background-size: 50% 100%;
      animation: waveMove 10s linear infinite;
      opacity: 0.8;
    }
}
/* .faq-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: "Roboto", sans-serif;
}

.faq-container h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #4E56C0;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #f3f4f6;
  border: none;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;
  transition: background 0.3s;
  background: #4b79d1;
  color: #f9f9f9;
}

.faq-question:hover {
  background: #e0f2fe;
  color: black;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f9fafb;
  padding: 0 1.2rem;
  border-radius: 0 0 0.5rem 0.5rem;
}

.faq-answer p {
  margin: 1rem 0;
}

.faq-question::after {
  content: "+";
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 1000px; 
}

.faq-item.active .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}


@media (max-width: 768px) {
  .faq-question {
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
  }

  .faq-answer p {
    margin: 0.8rem 0;
  }
}

@media (max-width: 480px) {
  .faq-container {
    padding: 1rem 0.5rem;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
    margin: 0.6rem 0;
  }
} */

.elementor-widget-container img {
  animation: float 4s ease-in-out infinite;
  border-radius: 12px; /* optional */
  display: block;
  margin: 0 auto;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px); /* float up */
  }
  100% {
    transform: translateY(0px);
  }
}
