.slider-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 0;
            background: #f8f9fa;
        }

        .slider-container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 1rem;
        }
 
		
	
		
		
        .slider-heading {
            text-align: center;
            font-size: 28px;
            font-weight: 600;
            color: #61486C;
            margin-bottom: 3rem;
            font-family: 'Arial', sans-serif;
            letter-spacing: -0.5px;
        }

        @media (min-width: 768px) {
            .slider-heading {
                font-size: 32px;
            }
        }

        @media (min-width: 1024px) {
            .slider-heading {
                font-size: 40px;
            }
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
        }

        @media (min-width: 768px) {
            .slider-wrapper {
                height: 650px;
            }
			
			
        }

        @media (min-width: 1024px) {
            .slider-wrapper {
                height: 500px;
            }
        }

        .phone-frame-container {
            position: relative;
            width: 230px;
            height: 400px;
            z-index: 10;
        }

        @media (min-width: 768px) {
            .phone-frame-container {
                width: 310px;
                height: 550px;
            }
        }

        .phone-frame {
			top:2%;
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 20;
            pointer-events: none;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
        }

        .slider-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: white;
            border: 2px solid #5040FF;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 20;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(80, 64, 255, 0.2);
        }

        .slider-button:hover {
            background: #5040FF;
            transform: translateY(-50%) scale(1.05);
        }

        .slider-button:hover svg {
            stroke: white;
        }

        .slider-button.prev {
            left: -60px;
        }

        .slider-button.next {
            right: -60px;
        }

        .slider-button svg {
            width: 24px;
            height: 24px;
            stroke: #5040FF;
            transition: stroke 0.3s ease;
        }

        .slider-title {
            position: absolute;
            bottom: -40px;
            width: 100%;
            text-align: center;
            font-family: 'Arial', sans-serif;
            font-size: 2rem;
            font-weight: 600;
            color: rgba(0, 0, 0, 0.08);
            z-index: 5;
            line-height: 1.1;
        }

        @media (min-width: 640px) {
            .slider-title {
                font-size: 2.5rem;
            }
        }

        @media (min-width: 768px) {
            .slider-title {
                font-size: 3rem;
                bottom: -20px;
            }
        }

        @media (min-width: 1024px) {
            .slider-title {
                font-size: 4rem;
                bottom: -10px;
            }
        }

        @media (min-width: 1280px) {
            .slider-title {
                font-size: 6rem;
            }
        }

        .slider-track {
            position: absolute;
            width: 100%;
            height: 320px;
            perspective: 1000px;
            z-index: 0;
        }

        @media (min-width: 640px) {
            .slider-track {
                height: 400px;
            }
        }

        .slide {
            position: absolute;
            top: 50%;
            left: 50%;
            border-radius: 35px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease-in-out;
            transform-style: preserve-3d;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            width: 220px;
            height: 460px;
        }

		
		
		.slide.active {
		               width: 250px;
		               height: 520px;
		           }
		
		
		
		
		
		
        @media (min-width: 768px) {
            .slide {
                width: 160px;
                height: 320px;
            }
            
			
			
            .slide.active {
                width: 180px;
                height: 390px;
            }
			
			.phone-frame-container{
			   width: 310px;
			   height: 550px;	
			}
        }

        .slide-content {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 20;
            transition: opacity 0.8s ease-in-out;
            border-radius: 35px;
        }

        .slide-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 35px;
        }

        .slide-title {
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            text-align: center;
            color: white;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 5px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            z-index: 30;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .slide:hover .slide-title {
            opacity: 1;
        }

        /* Animation for the slider title */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slider-heading {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .slider-button.prev {
                left: -40px;
            }
            
            .slider-button.next {
                right: -40px;
            }
        }

        @media (max-width: 768px) {
            .slider-button {
                width: 40px;
                height: 40px;
            }
            
            .slider-button.prev {
                left: -30px;
            }
            
            .slider-button.next {
                right: -30px;
            }
            
            .slider-button svg {
                width: 20px;
                height: 20px;
            }
            
            .slider-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 640px) {
            .slider-wrapper {
                height: 500px;
            }
            
            .slider-title {
                font-size: 1.5rem;
                bottom: -30px;
            }
            
            .phone-frame-container {
                width: 200px;
                height: 350px;
            }
        }

        /* Loading state */
        .slide.loading {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f0f0f0;
        }

        .slide.loading::after {
            content: '';
            width: 30px;
            height: 30px;
            border: 3px solid #ddd;
            border-top: 3px solid #5040FF;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Play button overlay for videos */
        .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 25;
            opacity: 1;
            transition: opacity 0.3s ease;
            border-radius: 35px;
        }
        
        .play-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }
        
        .play-s-button {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .play-s-button:hover {
            transform: scale(1.1);
        }
        
        .play-s-button svg {
            width: 24px;
            height: 24px;
            fill: #5040FF;
            margin-left: 4px;
        }
		
		
		
		
    @media (max-width: 768px){
		.phone-frame-container{
			
			    width: 310px;
			    height: 550px;
			    z-index: 10;
		}
	}
	
		
	

	
	
	
	@media (max-width: 338px) {
		.phone-frame-container .slider-button.prev {
		    left: -15px;
		    z-index: 999;
		}
		.phone-frame-container .slider-button.next {
				    right: -15px;
				    z-index: 999;
				}
				.phone-frame{
					top: 5%;
				}
	}
	
	
	
	
	
	/* Additional Safari 3D fixes */
	.slider-track {
	    -webkit-transform: translate3d(0,0,0);
	    transform: translate3d(0,0,0);
	    -webkit-perspective: 1000px;
	    perspective: 1000px;
	    -webkit-perspective-origin: 50% 50%;
	    perspective-origin: 50% 50%;
	}

	.slide {
	    -webkit-transform: translate3d(-50%, -50%, 0);
	    transform: translate3d(-50%, -50%, 0);
	    -webkit-transform-style: preserve-3d;
	    transform-style: preserve-3d;
	    -webkit-backface-visibility: hidden;
	    backface-visibility: hidden;
	    -webkit-font-smoothing: antialiased;
	}

	/* Force GPU acceleration */
	.slider-wrapper,
	.slider-track,
	.slide {
	    -webkit-transform: translateZ(0);
	    transform: translateZ(0);
	}
	
	