@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --secondary: #34d399;
    --bg-light: #f0fdf4;
    --text-main: #064e3b;
    --text-muted: #374151;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-gradient {
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent),
        radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.05), transparent);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2), 0 4px 6px -2px rgba(16, 185, 129, 0.1);
    transform: translateY(-0.25rem);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: white;
    color: var(--primary);
    border: 1px solid #d1fae5;
    border-radius: 9999px;
    font-weight: 600;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.btn-secondary:hover {
    background-color: #ecfdf5;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-0.25rem);
}

.btn-secondary:active {
    transform: scale(0.95);
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.card-glass {
    background-color: white;
    border: 1px solid #d1fae5;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.card-glass:hover {
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.1), 0 10px 10px -5px rgba(16, 185, 129, 0.04);
    transform: translateY(-0.5rem);
}

/* Swiper Custom Styles */
.testimonialSwiper {
    padding-bottom: 4rem !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.testimonialSwiper .swiper-slide {
    transition: opacity 0.3s ease;
}

@media (max-width: 640px) {
    .testimonialSwiper .swiper-slide:not(.swiper-slide-active) {
        opacity: 0.5;
    }
}

/* Custom Animations */
@keyframes bounce-slow {

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

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

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