@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Nunito:wght@300;400;600;700&display=swap');
        
        :root {
            --light-blue: #a8d5ff;
            --navy: #003366;
            --green: #4caf50;
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
        }
        
        .animate-fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.8s ease-out forwards;
        }
        
        .animate-fade-in.delay-1 {
            animation-delay: 0.2s;
        }
        
        .animate-fade-in.delay-2 {
            animation-delay: 0.4s;
        }
        
        .animate-fade-in.delay-3 {
            animation-delay: 0.6s;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-float {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .animate-pulse-slow {
            animation: pulse-slow 3s infinite;
        }
        
        @keyframes pulse-slow {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .service-card {
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            transform: rotate(10deg) scale(1.1);
            color: var(--green);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--green);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .blob {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            animation: blob-animation 8s ease-in-out infinite alternate;
        }
        
        @keyframes blob-animation {
            0% {
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }
            50% {
                border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
            }
            100% {
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }
        }
        
        .btn-primary {
            background-color: var(--navy);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary:hover {
            background-color: #004080;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 51, 102, 0.2);
        }
        
        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }
        
        .btn-primary:hover::after {
            left: 100%;
        }
        
        .btn-secondary {
            background-color: var(--green);
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background-color: #3d9140;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(76, 175, 80, 0.2);
        }
        
        .scroll-indicator {
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-20px); }
            60% { transform: translateY(-10px); }
        }
        
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }
        .stagger-5 { transition-delay: 0.5s; }
        
        .draw-svg {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: draw 2s linear forwards;
        }
        
        @keyframes draw {
            to {
                stroke-dashoffset: 0;
            }
        }
        
        .process-step {
            position: relative;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -50px;
            width: 100px;
            height: 2px;
            background-color: var(--light-blue);
            transform: translateY(-50%);
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        @media (max-width: 768px) {
            .process-step::after {
                display: none;
            }
        }
        
        .company-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .company-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        .test-passed-animation {
            animation: testPassed 1.5s ease-in-out;
        }
        
        @keyframes testPassed {
            0% { transform: scale(0); opacity: 0; }
            70% { transform: scale(1.1); opacity: 1; }
            100% { transform: scale(1); opacity: 1; }
        }
        
        .process-card {
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        
        .process-card:hover {
            transform: translateY(-5px);
            border-left: 4px solid var(--green);
        }
        
        .process-number {
            transition: all 0.3s ease;
        }
        
        .process-card:hover .process-number {
            background-color: var(--green);
            color: white;
        }
        
        .process-arrow {
            position: absolute;
            top: 50%;
            right: -30px;
            transform: translateY(-50%);
            z-index: 10;
        }
        
        @media (max-width: 1023px) {
            .process-arrow {
                display: none;
            }
        }
        
        .tree-root {
            animation: grow 3s ease-out forwards;
            transform-origin: center bottom;
        }
        
        @keyframes grow {
            from {
                transform: scaleY(0);
            }
            to {
                transform: scaleY(1);
            }
        }
        
        .tree-branch {
            animation: branch-grow 2s ease-out forwards;
            transform-origin: bottom;
        }
        
        @keyframes branch-grow {
            from {
                transform: scaleX(0);
            }
            to {
                transform: scaleX(1);
            }
        }
        
        .tree-leaf {
            animation: fade-in-grow 1s ease-out forwards;
            transform-origin: center;
            opacity: 0;
        }
        
        @keyframes fade-in-grow {
            from {
                opacity: 0;
                transform: scale(0);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .quality-check {
            animation: appear 0.5s ease-out forwards;
            opacity: 0;
        }
        
        @keyframes appear {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        /* Logo placeholder styling */
        .logo-placeholder {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,51,102,0.05);
            border: 2px dashed rgba(0,51,102,0.2);
            border-radius: 8px;
            padding: 10px;
            transition: all 0.3s ease;
        }
        
        .logo-placeholder:hover {
            background: rgba(0,51,102,0.1);
            border-color: rgba(0,51,102,0.4);
        }
        
        .logo-placeholder::after {
            content: "Replace with your logo";
            position: absolute;
            bottom: -25px;
            font-size: 10px;
            color: #666;
            opacity: 0.7;
        }