      body {
            font-family: 'Inter', sans-serif;
        }

        /* Smooth fade for the background image */
        .hero-bg {
            background-image: url('/asset/imgi_1_photo-1576091160399-112ba8d25d1d.jpg');
            background-size: cover;
            background-position: center;
        }




    /* Smooth Reveal Animation Classes */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered delays for grids */
        .delay-100 {
            transition-delay: 0.1s;
        }

        .delay-200 {
            transition-delay: 0.2s;
        }

        .delay-300 {
            transition-delay: 0.3s;
        }

        /* FAQ Accordion Transition */
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }


    
        /* testimonial animation */
        .swiper-pagination-bullet-active {
        background-color: #0891b2 !important; /* Your Primary Color */
    }
    .swiper-button-next, .swiper-button-prev {
        color: #0891b2 !important;
        background: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 18px;
        font-weight: bold;
    }