
        .tecnology-section {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }

        .tecnology-container {
            display: flex;
            min-height: 100vh;
        } 

        .left-section {
            flex: 0 0 40%;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
           color: white
        }

        .title-small {
            font-size: 1.2rem;
            letter-spacing: 3px;
            color: #888;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .title-large {
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .highlight {
            color: #fff;
            display: block;
        }

        .description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #aaa;
            max-width: 500px;
            margin-bottom: 40px;
        }

        .stats {
            display: flex;
            gap: 40px;
            margin-top: 20px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: #fff;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

   .right-section {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px 30px; /* reduce right padding */
  height: 100vh;
  overflow: hidden;
  justify-items: center;
  align-items: center;
}


        .slider-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .slider-wrapper {
            display: flex;
            flex-direction: column;
            gap: 30px;
            animation: slideUp 20s linear infinite;
        }

        .slider-column:nth-child(2) .slider-wrapper {
            animation: slideDown 20s linear infinite;
        }

        .slider-column:nth-child(3) .slider-wrapper {
            animation: slideUp 18s linear infinite;
        }

        @keyframes slideUp {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-50%);
            }
        }

        @keyframes slideDown {
            0% {
                transform: translateY(-50%);
            }
            100% {
                transform: translateY(0);
            }
        }

        .tech-card {
            background: #111;
            border: 2px solid #222;
            border-radius: 20px;
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            min-height: 220px;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .tech-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .tech-card:hover {
            border-color: #fff;
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(255,255,255,0.2);
        }

        .tech-card:hover::before {
            opacity: 1;
        }

        .tech-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tech-icon svg {
            width: 100%;
            height: 100%;
            filter: grayscale(100%) brightness(2);
            transition: all 0.4s ease;
        }

        .tech-card:hover .tech-icon svg {
            filter: grayscale(0%) brightness(1);
            transform: scale(1.1) rotate(5deg);
        }

        .tech-name {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #fff;
            text-align: center;
        }

         @media (max-width: 768px) {
            .tecnology-container {
                flex-direction: column;
            }

            .left-section {
                flex: none;
                padding: 40px 20px;
                min-height: auto;
            }

            .title-small {
                font-size: 1rem;
            }

            .title-large {
                font-size: 2.5rem;
            }

            .description {
                font-size: 1rem;
            }

            .stats {
                flex-direction: row;
                gap: 30px;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            /* Single column mobile slider */
            .right-section {
                display: block;
                height: auto;
                padding: 40px 20px;
                overflow: visible;
            }

            .slider-column {
                display: none;
            }

            .slider-column:first-child {
                display: block;
            }

            .slider-wrapper {
                animation: none;
                gap: 20px;
            }

            .mobile-slider-container {
                position: relative;
                overflow: hidden;
                padding: 20px 0;
            }

            .mobile-slider-track {
                display: flex;
                transition: transform 0.5s ease-in-out;
                gap: 20px;
            }

            .mobile-slider-track .tech-card {
                min-width: calc(100% - 60px);
                flex-shrink: 0;
                margin: 0 20px;
            }

            .slider-dots {
                display: flex;
                justify-content: center;
                gap: 10px;
                margin-top: 30px;
            }

            .dot {
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background: #333;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .dot.active {
                background: #fff;
                width: 30px;
                border-radius: 5px;
            }

            .slider-nav {
                display: flex;
                justify-content: center;
                gap: 20px;
                margin-top: 20px;
            }

            .nav-btn {
                background: #222;
                border: 2px solid #444;
                color: #fff;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                cursor: pointer;
                font-size: 1.5rem;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .nav-btn:hover {
                background: #fff;
                color: #000;
                border-color: #fff;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .left-section {
                flex: 0 0 35%;
                padding: 60px 40px;
            }

            .title-large {
                font-size: 3rem;
            }

            .right-section {
                padding: 40px 20px;
                gap: 15px;
            }
        }