        /* Custom styles for landing page */
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Instrument Sans', sans-serif;
        }

        /* Primary color variables */
        :root {
            --primary-color: #37B3FE;
            --primary-hover: #2A9FE8;
            --primary-light: #E6F7FF;
            --dark-blue: #1E3A8A;
            --dark-blue-hover: #1E40AF;
        }

        /* Preloader Styles */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        .preloader-content {
            text-align: center;
        }

        .preloader-word {
            display: inline-block;
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0 0.3rem;
            opacity: 0;
        }

        .preloader-word:nth-child(1) {
            color: #37B3FE;
        }

        .preloader-word:nth-child(2) {
            color: #1E3A8A;
        }

        .preloader-word:nth-child(3) {
            color: #37B3FE;
        }

        /* Welcome Message */
        .preloader-welcome {
            font-size: 1rem;
            color: #6B7280;
            font-weight: 500;
            opacity: 0;
            animation: fadeInWelcome 0.6s ease-out 0.8s forwards;
        }

        @keyframes fadeInWelcome {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Navigation Styles */
        #navbar {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-scrolled {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        /* Navigation link hover effect */
        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, #37B3FE, #2563eb);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Mobile menu animation */
        #mobile-menu {
            overflow: hidden;
        }

        /* Hero Section Styles */
        #hero-section {
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 2;
        }

        /* Floating animation for hero image */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .hero-image-float {
            animation: float 6s ease-in-out infinite;
        }

        /* Gradient text effect */
        .gradient-text {
            background: linear-gradient(135deg, #37B3FE 0%, #1E3A8A 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Glass morphism effect for stats */
        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        /* Pulse animation for CTA button */
        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }

        .pulse-button::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 0.5rem;
            background: #37B3FE;
            animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            z-index: -1;
        }

        /* Hero decorative shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.3;
            z-index: 1;
        }

        /* About Section Styles */
        .about-image img {
            transition: transform 0.7s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Feature cards hover effect */
        .feature-card {
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
        }

        /* Reason cards animation */
        .reason-card {
            transition: all 0.3s ease;
        }

        .reason-card:hover {
            transform: translateY(-8px);
        }

        /* Scroll animations */
        .animate-on-scroll {
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        /* Services Section Styles */
        .service-card {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover {
            transform: translateY(-8px) scale(1.02);
        }

        .service-card .group\/link:hover svg {
            transform: translateX(4px);
        }

        /* Service card image zoom effect */
        .service-card img {
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover img {
            transform: scale(1.1);
        }

        /* Icon badge animation */
        .service-card .w-14 {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover .w-14 {
            transform: scale(1.1) rotate(5deg);
        }

        /* Process Section Styles */
        .process-step {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Timeline animations */
        .timeline-line {
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .timeline-line-mobile {
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .timeline-dot {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .process-step:hover .timeline-dot {
            transform: scale(1.15);
            box-shadow: 0 20px 40px rgba(55, 179, 254, 0.4);
        }

        /* Process card hover effects */
        .process-step .group:hover {
            transform: translateY(-8px);
        }

        .process-step .group:hover .w-20 {
            transform: scale(1.1) rotate(5deg);
        }

        /* Contact Section Styles */
        .contact-info-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .contact-info-card:hover {
            transform: translateY(-4px);
        }

        .contact-info-card .w-14 {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .contact-info-card:hover .w-14 {
            transform: scale(1.1) rotate(5deg);
        }

        /* Contact form input focus effects */
        input:focus,
        textarea:focus {
            outline: none;
        }

        /* Contact form animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .preloader-word {
                font-size: 2rem;
                margin: 0 0.2rem;
            }
        }