/* Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for fade-in */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #workflow-steps {
        flex-direction: column;
        align-items: center;
    }
    
    #workflow-steps .text-2xl {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    /* Better spacing on mobile */
    section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    /* Smaller text on mobile */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

/* Carousel styles */
.carousel-container {
    min-height: 600px;
    position: relative;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    overflow: visible;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    padding: 0 10px;
    box-sizing: border-box;
    display: block;
}

.carousel-slide > div {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}

.carousel-slide p,
.carousel-slide a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}

.carousel-slide img {
    display: block;
    object-fit: cover;
    max-width: 100%;
    height: auto;
}

@media (max-width: 640px) {
    .carousel-slide img,
    .carousel-slide [style*="width: 512px"] {
        width: 100% !important;
        height: auto !important;
        max-width: 100%;
        min-height: 200px;
    }
    
    .carousel-slide [style*="width: 512px"] {
        width: 100% !important;
        height: auto !important;
        max-width: 100%;
    }
}

/* Print styles */
@media print {
    .bg-gradient-to-br,
    .bg-gradient-to-t {
        background: white !important;
    }
    
    section {
        page-break-inside: avoid;
    }
}

