        .slider-section {
            margin-bottom: 60px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            animation: fadeInUp 1s ease;
            border: 1px solid rgba(64, 224, 208, 0.2);
        }

        .slider-title {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(64, 224, 208, 0.3);
            position: relative;
            color: #2c3e50;
        }

        .slider-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #40e0d0, transparent);
        }

        .slider-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .slider-container {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            height: 600px;
            width: 425px;
            perspective: 1200px;
            transition: all 0.5s ease;
            background: #fff;
            box-shadow: 0 0 20px rgba(64, 224, 208, 0.4),
                0 0 40px rgba(64, 224, 208, 0.3),
                0 0 60px rgba(64, 224, 208, 0.2);
        }

        .slider-container:hover {
            box-shadow: 0 0 40px rgba(64, 224, 208, 0.4),
                0 0 80px rgba(64, 224, 208, 0.3),
                0 0 120px rgba(64, 224, 208, 0.2);
            transform: scale(1.02);
        }

        .slider-container::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, #e9ecef, #40e0d0, #e9ecef, #40e0d0);
            border-radius: 25px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
            animation: halo-pulse 3s infinite;
        }

        .slider-container:hover::before {
            opacity: 1;
        }

        .slider {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform-style: preserve-3d;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .slide.active {
            opacity: 1;
            z-index: 10;
            transform: rotateY(0deg) scale(1);
        }

        .slide.next {
            opacity: 0;
            transform: rotateY(90deg) scale(0.8);
        }

        .slide.prev {
            opacity: 0;
            transform: rotateY(-90deg) scale(0.8);
        }

        .slide img {
            width: 425px;
            height: 600px;
            object-fit:contain;
            display: block;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .slide:hover img {
            transform: scale(1.03);
        }

        .slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(rgba(0, 87, 92, 0.5), rgba(44, 62, 80, 0.9));
            color: rgb(255, 255, 255);
            padding: 10px;
            text-align: center;
            font-size: 1.4rem;
            font-weight: bolder;
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.5s ease 0.3s;
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
        }

        .slide.active .slide-caption {
            transform: translateY(0);
            opacity: 1;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 25px;
            gap: 20px;
        }

        .nav-btn {
            background: linear-gradient(45deg, #40e0d0, #20b2aa);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.4s ease;
            font-size: 1.3rem;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(64, 224, 208, 0.3);
            position: absolute;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            justify-content: center;
        }

        .nav-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }

        .nav-btn:hover::before {
            left: 100%;
        }

        .nav-btn:hover {
            box-shadow: 0 8px 20px rgba(64, 224, 208, 0.4);
        }

        .nav-btn:active {
            transform: translateY(-1px) scale(1.05);
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(64, 224, 208, 0.3);
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .dot::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #40e0d0, #20b2aa);
            border-radius: 50%;
            transform: scale(0);
            transition: transform 0.3s ease;
        }

        .dot.active::before {
            transform: scale(1);
        }

        .dot.active {
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(64, 224, 208, 0.7);
        }

        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, #40e0d0, #20b2aa);
            width: 0%;
            transition: width 0.3s ease;
            z-index: 20;
            border-bottom-left-radius: 15px;
        }

        /* مودال بزرگنمایی */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(44, 62, 80, 0.95);
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            position: relative;
            margin: auto;
            display: block;
            /* width: 80%;*/
            max-width: 700px;
            max-height: 80vh;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 15px;
            box-shadow: 0 0 25px rgba(64, 224, 208, 0.3);
            animation: zoomIn 0.3s ease;
        }

        .modal-caption {
            text-align: center;
            color: #fff;
            padding: 15px;
            font-size: 1.3rem;
            background: rgba(44, 62, 80, 0.8);
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
        }

        .close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            z-index: 1001;
        }

        .close:hover {
            color: #40e0d0;
            transform: scale(1.1);
        }

        /* انیمیشن‌ها */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: translateY(-50%) scale(0.7);
            }

            to {
                opacity: 1;
                transform: translateY(-50%) scale(1);
            }
        }

        @keyframes rotateIn {
            from {
                opacity: 0;
                transform: rotateY(180deg) scale(0.8);
            }

            to {
                opacity: 1;
                transform: rotateY(0deg) scale(1);
            }
        }

        @keyframes rotateOut {
            from {
                opacity: 1;
                transform: rotateY(0deg) scale(1);
            }

            to {
                opacity: 0;
                transform: rotateY(-180deg) scale(0.8);
            }
        }

        @keyframes halo-pulse {
            0% {
                box-shadow: 0 0 20px rgba(64, 224, 208, 0.4),
                    0 0 40px rgba(64, 224, 208, 0.3),
                    0 0 60px rgba(64, 224, 208, 0.2);
            }

            50% {
                box-shadow: 0 0 30px rgba(64, 224, 208, 0.6),
                    0 0 60px rgba(64, 224, 208, 0.4),
                    0 0 90px rgba(64, 224, 208, 0.3);
            }

            100% {
                box-shadow: 0 0 20px rgba(64, 224, 208, 0.4),
                    0 0 40px rgba(64, 224, 208, 0.3),
                    0 0 60px rgba(64, 224, 208, 0.2);
            }
        }

        /* افکت چرخشی برای اسلایدها */
        .slide.rotate-in {
            animation: rotateIn 0.8s ease-out;
        }

        .slide.rotate-out {
            animation: rotateOut 0.8s ease-in;
        }

        @media (max-width: 500px) {
            .slider-container {
                width: 350px;
                height: 525px;
            }

            .slide img {
                width: 350px;
                height: 525px;
            }

            .slider-controls {
                gap: 15px;
            }

            .nav-btn {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .modal-content {
                width: 95%;
            }
        }

        @media (max-width: 425px) {
            .slider-container {
                width: 300px;
                height: 450px;
            }

            .slide img {
                width: 300px;
                height: 450px;
            }

            h1 {
                font-size: 2.2rem;
            }

            .slider-title {
                font-size: 1.5rem;
            }

            .slider-controls {
                gap: 10px;
            }

            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .dot {
                width: 12px;
                height: 12px;
            }
        }