@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(30px);
}

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

@keyframes float {

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

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

@keyframes pulse {

0%,
100% {
    opacity: 1;
}

50% {
    opacity: 0.5;
}
}

@keyframes slideInRight {
from {
    opacity: 0;
    transform: translateX(-30px);
}

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

.animate-fadeInUp {
animation: fadeInUp 0.8s ease-out forwards;
}

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

.animate-pulse-slow {
animation: pulse 3s ease-in-out infinite;
}

.animate-slideInRight {
animation: slideInRight 0.6s ease-out forwards;
}

.wave {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
}

.wave svg {
position: relative;
display: block;
width: calc(100% + 1.3px);
height: 80px;
}

.wave-top {
position: absolute;
top: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
transform: rotate(180deg);
}

.wave-top svg {
position: relative;
display: block;
width: calc(100% + 1.3px);
height: 80px;
}

/* Mobile Menu Animation*/
.mobile-menu {
transform: translateX(100%);
transition: transform 0.3s ease-in-out;
background-color: white;
box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
z-index: 60;
}

.mobile-menu.active {
transform: translateX(0);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
display: none;
position: fixed;
inset: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 50;
transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
display: block;
opacity: 1;
}

/* Gradient Text */
.gradient-text {
background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

/* Card Hover Effects */
.card-hover {
transition: all 0.3s ease;
}

.card-hover:hover {
transform: translateY(-10px);
}

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

/* FAQ Accordion */
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease, padding 0.4s ease;
padding-top: 0;
padding-bottom: 0;
}

.faq-answer.active {
max-height: 1000px;
padding-top: 0;
padding-bottom: 1.25rem;
}

/* Background Patterns */
.bg-pattern {
background-image:
    radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.bg-dots {
background-image: radial-gradient(circle, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
background-size: 30px 30px;
}