.s-arrow-1 {
    left: 18% !important;
    top: 0%;
}
.s-arrow-2 {
    left: 43% !important;
    top: 20%;
    transform: scaleY(-1);
}
.s-arrow-3 {
    left: 69% !important;
    top: 0%;
    
}

/* ==========================tech=============================== */

.tech-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .tech-title {
            color: #4ecdc4;
            font-size: 2.5rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out;
        }

        .tech-subtitle {
            color: #b0b0b0;
            text-align: center;
            margin-bottom: 60px;
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .slider-container {
            position: relative;
            margin: 0 auto;
            padding: 0 70px;
        }

        .slider-wrapper {
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .tech-card {
            background: linear-gradient(135deg, #7227FC 0%, #4F05D8 100%);
            border-radius: 20px;
            padding: 40px 30px;
            width: 250px;
            flex-shrink: 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-right: 30px;
        }

        .tech-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }

        .tech-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .tech-card:hover::before {
            opacity: 1;
        }

        .tech-icon {
            font-size: 3rem;
            color: white;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }

        .tech-name {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .tech-stat {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .tech-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 10;
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-50%) scale(1.1);
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }

        .indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .indicator {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: #4ecdc4;
            transform: scale(1.2);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @media (max-width: 768px) {
            .slider-container {
                padding: 0 50px;
            }
            
            .tech-card {
                width: 220px;
                padding: 30px 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .nav-btn {
                width: 40px;
                height: 40px;
            }
        }