        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .zsx{
            max-width: 72px;
        }
        .section-title {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title h2 {
            font-size: 2rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            background: linear-gradient(45deg, #a0e7a0, #4dffb4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #4dffb4, transparent);
        }

        .cards-scroll-container {
            position: relative;
            width: 100%;
        }

        .cards-container {
            overflow-x: auto;
            scrollbar-width: none;
            padding: 1.5rem 0.5rem;
            cursor: grab;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x mandatory;
        }

        .cards-container::-webkit-scrollbar {
            display: none;
        }

        .cards-wrapper {
            display: flex;
            gap: 1.5rem;
            padding: 0.5rem;
            width: max-content;
        }

        .card {
            flex: 0 0 auto;
            width: 183px;
            height: 350px;
            border-radius: 18px;
            padding: 1.8rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(30, 35, 48, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.2),
                0 0 15px rgba(77, 255, 180, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            scroll-snap-align: start;
        }

        .card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            z-index: -1;
            background: linear-gradient(45deg, transparent, transparent, transparent);
            border-radius: 20px;
        }

        .card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.3),
                0 0 25px rgba(77, 255, 180, 0.5),
                0 0 35px rgba(77, 255, 180, 0.2);
        }

        .card:hover::before {
            background: linear-gradient(45deg, #4dffb4, #a0e7a0, #4dffb4);
            animation: border-glow 1.5s linear infinite;
        }

        .card-icon {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 1.5rem 0;
            background: rgba(20, 25, 35, 0.7);
            box-shadow: 0 0 20px rgba(77, 255, 180, 0.4);
            transition: all 0.3s ease;
        }

        .card:hover .card-icon {
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(77, 255, 180, 0.6);
        }

        .card-icon i {
            font-size: 2.5rem;
            color: #4dffb4;
        }

        .card-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-align: center;
            color: #f0f0f0;
        }

        .card-desc {
            font-size: 0.95rem;
            line-height: 1.6;
            text-align: center;
            color: #c2c2c2;
            flex-grow: 1;
        }

        .scroll-indicators {
            display: flex;
            justify-content: center;
            margin-top: 1.5rem;
            gap: 0.5rem;
        }

        .scroll-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .scroll-indicator.active {
            background: #4dffb4;
            transform: scale(1.2);
        }

        .instructions {
            text-align: center;
            margin-top: 2rem;
            color: #a0a0a0;
            font-size: 0.9rem;
            opacity: 0.8;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .instructions i {
            color: #4dffb4;
        }

        @keyframes border-glow {
            0% {
                opacity: 0.6;
            }
            50% {
                opacity: 1;
            }
            100% {
                opacity: 0.6;
            }
        }

        /* رسپانسیو برای موبایل */
        @media (max-width: 768px) {
            .card {
                width: 183px;
                max-width: 300px;
                height: 320px;
                padding: 1.5rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .card-icon {
                width: 80px;
                height: 80px;
                margin: 1rem 0;
            }
            
            .card-icon i {
                font-size: 2rem;
            }
            
            .card-title {
                font-size: 1.2rem;
            }
            
            .card-desc {
                font-size: 0.9rem;
            }
            
            .instructions {
                flex-direction: column;
                gap: 0.2rem;
            }
        }

        /* انیمیشن اسکرول نرم */
        .smooth-scroll {
            scroll-behavior: smooth;
        } 















        /* ................................... */













        /* From Uiverse.io by gharsh11032000 */ 
.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #00ffcc;
  box-shadow: 0 0 0 2px #00ffcc;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: #00ffcc;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #00ffcc;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #212121;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #00ffcc;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}
