 .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .scroll-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #a8e6cf, #ffb6b9, #fff3b0);
        }
        
        .gradient-bg-light {
             background: linear-gradient(135deg, rgba(168, 230, 207, 0.1), rgba(255, 182, 185, 0.1));
        }


        .animate-typing {
    overflow: hidden; /* Hide the text overflow */
    white-space: nowrap; /* Prevent text from wrapping */
    border-right: .15em solid #f97316; /* Cursor */
    animation: typing 4s steps(40, end), blink 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}
        /* Fade-in-up animation */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

/* Optional: additional smooth scroll reveal */
.scroll-reveal {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
}

        /* Modal Styles */
        .modal {
            transition: opacity 0.3s ease;
        }

        .modal-panel {
            transform: scale(0.95);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modal.flex .modal-panel {
            transform: scale(1);
            opacity: 1;
        }
        
        .modal-content {
            max-height: 85vh;
            overflow-y: auto;
        }
        
        /* Added for new sections */
        .team-card:hover .team-socials {
            opacity: 1;
            transform: translateY(0);
        }

        /* Testimonial Carousel Styles */
        .testimonial-track {
            transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
        }

        /* Hero Parallax Style */
        #home {
            background-attachment: fixed;
        }
