
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
            overflow-x: hidden;
        }

        .partner-section {
          background-color: #000014;
            padding: 20px;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .main-title {
            font-size: clamp(2.5rem, 4vw, 4.5rem);
            color: #ffffff;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: none;
            letter-spacing: -0.02em;
        }

        .subtitle {
            font-size: clamp(2rem, 3vw, 3.8rem);
            background: #7271D2;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-style: italic;
            font-weight: 500;
            letter-spacing: -0.01em;
            position: relative;
        }

        .subtitle::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #a855f7, transparent);
            opacity: 0.6;
        }

        .carousel-container {
            position: relative;
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            z-index: 2;
        }

        .carousel-wrapper {
            position: relative;
            padding: 0 80px;
        }

        .carousel-track {
            display: flex;
            gap: 40px;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        .partner-card {
            width: 220px;
            height: 350px;
            border-radius: 25px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
            overflow: hidden;
        }

        .background-card {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, #4e5bf4 0%, #1a1c4d 40%, #000125 100%);
            border-radius: inherit;
            z-index: -1;
        }

        .shadow-card {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
                background: linear-gradient(
        to top,
        rgba(31, 41, 87, 0.6) 0%,     /* Start: semi-transparent dark */
        rgba(31, 41, 87, 0.3) 15%,
         transparent 50%,
           /* 15% mark: even more transparent */
        transparent 100%              /* Fully clear */
    );
            z-index: 2;
        }

        .bottom-card {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 25px 15px;
            background-color: transparent;
            border-radius: 0 0 25px 25px;
            z-index: 3;

        }

        .image-container {
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('test.png') center/cover no-repeat;
            border-radius: inherit;
            z-index: 1;
        }

        .partner-name {
            font-size: 1.4rem;
            color: #ffffff;
            font-weight: 300;
            letter-spacing: -1px;
            width: max-content;
            margin-bottom: 0.3rem;
        }

        .partner-title {
            font-size: 0.9rem;
            background: #7271D2;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 500;
            letter-spacing: -1px;
            opacity: 0.9;
            width: max-content;
        }

        .carousel-button {
            position: absolute;
            top: 45%;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: 
                linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 10;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

.carousel-button:hover {
  background: linear-gradient(135deg, rgba(78, 91, 244, 0.15) 0%, rgba(78, 91, 244, 0.3) 100%);
  border-color: rgba(78, 91, 244, 0.6);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 
    0 0 40px rgba(78, 91, 244, 0.4),
    0 8px 32px rgba(0, 0, 0, 0.2);
}

        .carousel-button:active {
            transform: translateY(-50%) scale(1.05);
        }

        .carousel-button.prev {
            left: 0;
        }

        .carousel-button.next {
            right: 0;
        }

        .carousel-button svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: white;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.2s ease;
        }

        .carousel-button:hover svg {
            transform: scale(1.1);
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 60px;
            align-items: center;
        }

        .indicator {
            width: 48px;
            height: 6px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .indicator::before {
            content: '';
            position: absolute;
            inset: 0;
           background: linear-gradient(135deg, #4e5bf4 0%, #6b77f7 100%);
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border-radius: inherit;
        }

        .indicator.active::before {
            transform: translateX(0);
        }

        .indicator:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.2);
        }

        .indicator.active {
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
        }
        /* Smooth scrolling and performance optimizations */
        .carousel-track {
            backface-visibility: hidden;
            perspective: 1000px;
        }

        .partner-card {
            backface-visibility: hidden;
        }

        /* Loading animation */
        .partner-card {
            animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .partner-card:nth-child(1) { animation-delay: 0.1s; }
        .partner-card:nth-child(2) { animation-delay: 0.2s; }
        .partner-card:nth-child(3) { animation-delay: 0.3s; }
        .partner-card:nth-child(4) { animation-delay: 0.4s; }
        .partner-card:nth-child(5) { animation-delay: 0.5s; }
        .partner-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    