/* Custom styles for enhanced visual effects */
body {
  overflow-x: hidden;
}

/* Navbar blur effect */
#navbar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#navbar.scrolled {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

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

/* Background blur elements animation */
@keyframes float {

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

  33% {
    transform: translateY(-20px) rotate(120deg);
  }

  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

.fixed div[class*="bg-primary"],
.fixed div[class*="bg-secondary"] {
  animation: float 20s ease-in-out infinite;
}

.fixed div[class*="bg-primary"]:nth-child(2n) {
  animation-delay: -5s;
}

.fixed div[class*="bg-secondary"]:nth-child(2n+1) {
  animation-delay: -10s;
}

/* Enhanced card hover effects */
/* .bg-white\/10:hover, .bg-secondary\/5:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} */

/* FAQ accordion styles */
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Form focus effects */
input:focus,
textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 110, 25, 0.2);
}

/* Button hover effects */
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#mobile-menu-btn:hover {
  box-shadow: unset !important;
  transform: unset !important;
}

button.faq-question:hover {
  box-shadow: unset !important;
  transform: unset !important;
}

/* Image hover effects */
img:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

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

#mobile-menu.show {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .fixed div[class*="bg-primary"],
  .fixed div[class*="bg-secondary"] {
    width: 200px !important;
    height: 200px !important;
  }
}

/* Loading animation for images */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #FF6E19;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e55a15;
}

/* Configure this in Tailwind.config.js */

.opacity-0 {
  opacity: 0 !important;
}

section{
  transition: .9s all ease-in-out;
}

.show-on-scroll {
  opacity: 0;
  transition: .9s all ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 1.0s ease-in forwards;
}