@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&family=Inter:wght@400;500;600&display=swap');

body {
    background-color: #F5F5F5;
    font-family: 'Tajawal', 'Inter', sans-serif;
    color: #333333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Custom Utilities for smooth transitions */
.transition-all-300 {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Gradient Overlay */
.hero-gradient {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.95), rgba(46, 125, 50, 0.8));
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #2E7D32; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1b5e20; 
}

/* Process Steps Connectors */
@media (min-width: 768px) {
    .step-connector::after {
        content: '';
        position: absolute;
        top: 24px;
        left: -50%;
        width: 100%;
        height: 2px;
        background-color: #e5e7eb;
        z-index: -1;
    }
    .step-item:first-child .step-connector::after {
        display: none;
    }
}
