body {
            background-color: #f8fafc;
            color: #333333;
            overflow-x: hidden;
        }

        /* Nav Link Animation */
        .nav-link {
            position: relative;
            font-weight: 500;
            color: #151718;
            transition: color 0.3s;
        }
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #2ebdbe, #2a2f6e);
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        .nav-link:hover::before {
            width: 100%;
        }
        .nav-link:hover {
            color: #2a2f6e;
        }

        /* Animated Text Gradient */
        .animated-gradient-text {
            background: linear-gradient(to right, #2ebdbe, #2a2f6e, #2ebdbe);
            background-size: 200% auto;
            color: #000;
            background-clip: text;
            text-fill-color: transparent;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine 4s linear infinite;
        }
        @keyframes shine {
            to { background-position: 200% center; }
        }

        /* Interactive Feature Cards */
        .feature-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .feature-card:hover {
            transform: translateY(-8px) scale(1.01);
            background: white;
            border-color: rgba(46, 189, 190, 0.3);
            box-shadow: 0 20px 40px -10px rgba(46, 189, 190, 0.15);
        }

        /* Partner Cards - Uniform & Colorful Hover */
        .partner-card {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            height: 140px; /* Uniform height */
        }
        .partner-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(135deg, rgba(46, 189, 190, 0.05), rgba(42, 47, 110, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .partner-card:hover::before {
            opacity: 1;
        }
        .partner-card:hover {
            transform: translateY(-5px);
            border-color: #2ebdbe;
            box-shadow: 0 10px 25px -5px rgba(46, 189, 190, 0.15);
        }
        .logo-box {
            height: 50px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            position: relative;
            z-index: 10;
        }
        .logo-box img, .logo-box span {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            transition: all 0.4s ease;
            filter: grayscale(0%); /* Change 1: Full color */
            opacity: 1; /* Change 1: Full opacity */
        }
        .partner-card:hover .logo-box img, 
        .partner-card:hover .logo-box span {
            transform: scale(1.1);
        }
        
        /* Radial UI */
        .radial-node {
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .radial-node.active {
            transform: scale(1.15);
            background: white;
            border-color: #2ebdbe;
            box-shadow: 0 0 0 4px rgba(46, 189, 190, 0.2);
            z-index: 20;
        }
        .radial-node:hover {
            border-color: #2ebdbe;
            transform: scale(1.05);
        }

        /* Reveal Animation Utility */
        .reveal-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        .reveal-up.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Abstract Blob Background */
        .blob {
            position: absolute;
            filter: blur(80px);
            z-index: 0;
            opacity: 0.5;
            animation: float 10s ease-in-out infinite;
        }

        /* Scroll To Top */
        #scrollToTopBtn {
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        #scrollToTopBtn.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }