       
        .nav-link { position: relative; transition: all 0.3s ease; }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #F8DE22;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after { width: 100%; }
        .nav-link:hover { transform: translateY(-2px); }

        .angled-card { transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; }
        .angled-card:hover { transform: rotate(0deg) scale(1.05) !important; z-index: 10; }

        .glass-box {
            border: 2px solid white;
            padding: 8px 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: #26CCC2; border-radius: 10px; }

        .fade-grid-mix {
            background: linear-gradient(135deg, #ffffff 0%, #B6F500 100%);
            opacity: 0.9;
        }

         /* Animation Classes */
    .animate-slide-down {
        animation: slideDown 0.8s ease forwards;
    }
    
    .animate-slide-up {
        animation: slideUp 0.8s ease forwards;
    }
    
    .animate-slide-left {
        animation: slideLeft 0.8s ease forwards;
    }
    
    .animate-slide-right {
        animation: slideRight 0.8s ease forwards;
    }
    
    .animate-fade-in {
        animation: fadeIn 1s ease forwards;
    }
    
    .animate-fade-in-up {
        animation: fadeInUp 0.8s ease forwards;
    }
    
    .animate-scale-in {
        animation: scaleIn 0.6s ease forwards;
    }
    
    .animate-float {
        animation: float 3s ease-in-out infinite;
    }
    
    .animation-delay-200 {
        animation-delay: 200ms;
    }
    
    .animation-delay-300 {
        animation-delay: 300ms;
    }
    
    .animation-delay-400 {
        animation-delay: 400ms;
    }
    
    .animation-delay-500 {
        animation-delay: 500ms;
    }
    
    .animation-delay-600 {
        animation-delay: 600ms;
    }
    
    .animation-delay-1000 {
        animation-delay: 1000ms;
    }
    
    .animation-delay-2000 {
        animation-delay: 2000ms;
    }
    
    /* Keyframes */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideLeft {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes slideRight {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-20px);
        }
    }
    
    /* Integration Orbits */
    .integration-orbit {
        animation: orbit 20s linear infinite;
    }
    
    .orbit-1 { animation-duration: 15s; }
    .orbit-2 { animation-duration: 20s; }
    .orbit-3 { animation-duration: 25s; }
    
    @keyframes orbit {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }
        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }
    
    /* Tool Cards */
    .tool-card {
        transition: all 0.3s ease;
    }
    
    .tool-card:hover {
        transform: translateY(-10px) scale(1.02);
    }
    
    /* Category Cards */
    .category-card {
        transition: all 0.3s ease;
    }
    
    /* Integration Items */
    .integration-item {
        transition: all 0.3s ease;
    }
    
    .integration-item:hover {
        transform: translateY(-5px);
    }
    
    /* Metric Cards */
    .metric-card {
        transition: all 0.3s ease;
    }
    
    .metric-card:hover {
        transform: scale(1.05);
    }
    
    /* Counter Animation */
    .counter {
        animation: countUp 2s ease-out forwards;
    }
    
    @keyframes countUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Hover Scale */
    .hover\:scale-102:hover {
        transform: scale(1.02);
    }
    
    .hover\:scale-105:hover {
        transform: scale(1.05);
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .integration-orbit {
            display: none;
        }
    }
    .hidden-section {
    display: none !important;
}