/* Custom styles to complement Tailwind CSS */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

  to {
    opacity: 1;
  }
}

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

/* Custom gradient text for special elements */
.gradient-text {
  background: linear-gradient(90deg, #153bd0 0%, #1b4bf0 50%, #3b6aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* Custom box shadow for featured elements */
.shadow-custom {
  box-shadow: 0 10px 30px rgba(21, 59, 208, 0.1);
}

/* Hover effect for cards */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(21, 59, 208, 0.15);
}

/* Scale transformation */
.scale-102 {
  --tw-scale-x: 1.02;
  --tw-scale-y: 1.02;
}

.hover\:scale-102:hover {
  transform: scale(1.02);
}

/* Aspect ratio utility for video container */
.aspect-w-16 {
  position: relative;
  padding-bottom: 56.25%;
}

.aspect-w-16>* {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* Custom styling for form elements */
input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.3);
}

/* Mobile menu animation */
#mobile-menu {
  transition: all 0.3s ease;
}

/* Custom styling for testimonial cards */
.testimonial-card {
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.03);
}

/* Blob animations */
@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }

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

.animate-blob {
  animation: blob 10s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

@media (max-width: 768px) {
  .gradient-text {
    background-size: 100%;
  }
}

/* Neo Brutalist Styles */

/* General styles */
body {
  font-family: 'Archivo', sans-serif;
  background-color: #f5f5f5;
}

/* Neo Brutalist elements */
.neo-btn {
  border: 3px solid #000;
  border-radius: 0;
  box-shadow: 5px 5px 0px #000;
  transition: all 0.2s ease;
  font-weight: 700;
  text-transform: uppercase;
}

.neo-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0px #000;
}

.neo-primary {
  background-color: #3b6aff;
  color: white;
}

.neo-secondary {
  background-color: white;
  color: #3b6aff;
}

.neo-card {
  border: 3px solid #000;
  border-radius: 0;
  background-color: white;
  box-shadow: 8px 8px 0px #000;
  transition: all 0.2s ease;
}

.neo-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0px #000;
}

.neo-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
}

.neo-section {
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}

.neo-input {
  border: 3px solid #000;
  border-radius: 0;
  box-shadow: 4px 4px 0px #000;
  background-color: white;
}

.neo-input:focus {
  outline: none;
  box-shadow: 6px 6px 0px #000;
  transform: translate(-2px, -2px);
}

.featured-card {
  border: 3px solid #3b6aff;
  box-shadow: 8px 8px 0px #153bd0;
}

.neo-testimonial {
  position: relative;
  border: 3px solid #000;
  background-color: white;
}

.neo-testimonial:before {
  content: "" ";
 position: absolute;
  top: -20px;
  left: 20px;
  font-size: 60px;
  color: #3b6aff;
  font-family: serif;
}

.neo-nav-link {
  font-weight: 700;
  transition: all 0.2s ease;
}

.neo-nav-link:hover {
  border-bottom: 3px solid #3b6aff;
}

.neo-footer {
  background-color: #1a1a1a;
  color: white;
  border-top: 3px solid #000;
}

/* Animation keyframes */
@keyframes slight-bounce {

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

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

.animate-bounce {
  animation: slight-bounce 2s infinite;
}

/* Video modal styles */
.cursor-pointer {
  cursor: pointer;
}

.video-modal-trigger:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}