/* 1 */
.elementor-element-7f6036f {
  animation: rocket-move 4s ease-in-out infinite;
}

@keyframes rocket-move {
  0% {
    transform: translateY(0px) rotateY(180deg) rotate(-2deg);
  }
  50% {
    transform: translateY(-15px) rotateY(180deg) rotate(2deg);
  }
  100% {
    transform: translateY(0px) rotateY(180deg) rotate(-2deg);
  }
}

/* 2 */
/* Simple Rocket Float */
.elementor-element-0f4d5c6 img {
  animation: rocket-float 3s ease-in-out infinite;
}

@keyframes rocket-float {
  0%,
  100% {
    transform: translateY(0px) rotateY(180deg);
  }
  50% {
    transform: translateY(-12px) rotateY(180deg);
  }
}

/* 3 */
.elementor-element-e70e557 img {
  animation: testimonial-advanced 8s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.4));
}

@keyframes testimonial-advanced {
  0% {
    transform: translateY(0px) scaleY(var(--e-transform-flipY, 1)) scale(1);
    filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.4));
  }
  25% {
    transform: translateY(-15px) scaleY(var(--e-transform-flipY, 1)) scale(1.02);
    filter: drop-shadow(0 0 20px rgba(74, 144, 226, 0.6));
  }
  50% {
    transform: translateY(-8px) scaleY(var(--e-transform-flipY, 1)) scale(1.01);
    filter: drop-shadow(0 0 25px rgba(74, 144, 226, 0.8));
  }
  75% {
    transform: translateY(-18px) scaleY(var(--e-transform-flipY, 1)) scale(1.03);
    filter: drop-shadow(0 0 20px rgba(74, 144, 226, 0.6));
  }
  100% {
    transform: translateY(0px) scaleY(var(--e-transform-flipY, 1)) scale(1);
    filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.4));
  }
}

/* Hover effect to pause and enhance */
.elementor-element-e70e557:hover img {
  animation-play-state: paused;
  filter: drop-shadow(0 0 30px rgba(74, 144, 226, 0.8)) brightness(1.1);
}

/* testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.elementskit-commentor-image img {
  border-radius: 50%;
  object-fit: cover;
}

.elementskit-profile-info {
  display: flex;
  flex-direction: column;
}

.elementskit-author-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.elementskit-author-des {
  font-size: 14px;
  color: #666;
}

.elementskit-stars {
  display: flex;
  gap: 5px;
  margin: 15px 0;
  list-style: none;
  padding: 0;
}

.elementskit-stars li {
  color: #ffc107;
}

.elementskit-watermark-icon {
  text-align: right;
  margin-bottom: 10px;
}

.elementskit-watermark-icon .icon {
  font-size: 24px;
  color: #f0f0f0;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  font-style: italic;
  margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 20px;
  }
}