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

body {
    margin: 0;
    padding: 0;
    background-color: #f8fafc;
    background-image: 
        radial-gradient(at 10% 20%, rgba(219, 39, 119, 0.15) 0px, transparent 50%),
        radial-gradient(at 90% 80%, rgba(14, 165, 233, 0.15) 0px, transparent 50%);
    background-attachment: fixed;
}

/* Base custom classes that are too complex for inline tailwind */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.6;
}
.orb-1 {
    width: 300px;
    height: 300px;
    background: #db2777;
    top: -50px;
    right: -50px;
}
.orb-2 {
    width: 250px;
    height: 250px;
    background: #0ea5e9;
    bottom: -50px;
    left: -50px;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.floating {
    animation: float 6s ease-in-out infinite;
}
.floating-delay {
    animation-delay: 3s;
}

/* Swiper custom pagination */
.swiper-pagination-bullet-active {
    background-color: #db2777 !important;
}

/* Timeline vertical line */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 4px;
    background: #f1f5f9;
    border-radius: 4px;
}
@media (min-width: 768px) {
    .timeline-container::before {
        left: 50%;
        transform: translateX(-50%);
    }
}
