/* 
  Custom styles that extend Tailwind CSS
  This file contains additional styles that might be needed
  beyond what Tailwind provides out of the box
*/

/* Custom animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

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

.animate-slide-up {
  animation: slideUp 0.5s ease-out;
}

/* Custom focus styles */
.custom-focus:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(92, 104, 226, 0.5);
}

/* Testimonial card styles */
.testimonial-card::before {
  content: "";
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 10px;
  color: rgba(92, 104, 226, 0.1);
}

/* Custom gradients */
.bg-premium-gradient {
  background: linear-gradient(135deg, #5c68e2 0%, #6373f7 100%);
}

/* Floating animation for feature cards */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hover-float:hover {
  animation: float 3s ease-in-out infinite;
}

/* Custom styles for form input focus */
.input-focus:focus {
  border-color: #5c68e2;
  box-shadow: 0 0 0 3px rgba(92, 104, 226, 0.25);
}

/* Responsive video container */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
