/* Slider CSS copied from your previous style block */
.slider_section .slider-container { position: relative; width: 100vw; height: 100vh; overflow: hidden; }
.slider_section .slide { position: absolute; top:0; left:0; width:100%; height:100%; opacity:0; transition:opacity 0.8s ease-in-out; }
.slider_section .slide.active { opacity:1; }
/* ...rest of your CSS... */

.slider_section .slider-container {
            position: relative;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
        }
 .side-images img {
    height: 100% !important;
}
        .slider_section .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .slider_section .slide.active {
            opacity: 1;
        }

        .slider_section .slide-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slider_section .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
        }

        .slider_section .content-wrapper {
            position: relative;
            z-index: 10;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .slider_section .content-box {
            background: white;
            padding: 60px 50px;
            border-radius: 0px;
            max-width: 700px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transform: scale(0.95);
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slider_section .slide.active .content-box {
            transform: scale(1);
            opacity: 1;
        }

        .slider_section .logo {
            width: 200px;
            height: auto;
            margin: 0 auto 30px;
            display: block;
        }

        .slider_section .title {
            font-size: 48px;
            font-weight: bold;
            color: #1a1a1a;
            margin-bottom: 24px;
        }

        .slider_section .description {
            font-size: 18px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 30px;
        }

        .slider_section .see-more {
            display: inline-block;
            font-size: 18px;
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .slider_section .see-more:hover {
            color: #14b8a6;
        }

        .slider_section .see-more span {
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .slider_section .see-more:hover span {
            transform: translateX(5px);
        }

     .slider_section .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 20;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            color: #333;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
}

        .slider_section .arrow:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

       .slider_section .arrow:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .slider_section .arrow-left {
            left: 25%;
        }

       .slider_section .arrow-right {
            right: 25%;
        }

        .slider_section .indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            display: flex;
            gap: 10px;
        }

       .slider_section .indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider_section .indicator.active {
            width: 32px;
            border-radius: 4px;
            background: white;
        }

       .slider_section .indicator:hover {
            background: rgba(255, 255, 255, 0.8);
        }

       .slider_section .side-images {
            display: none;
        }

        @media (min-width: 1024px) {
          .slider_section .content-wrapper {
                justify-content: space-between;
                max-width: 1400px;
                margin: 0 auto;
            }

           .slider_section .side-images {
                display: block;
                width: 220px;
                height: 300px;
                border-radius: 0px;
                overflow: hidden;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
                opacity: 0;
                transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .slider_section .side-images.left {
                transform: translateX(-30px);
            }

            .slider_section .side-images.right {
                transform: translateX(30px);
            }

            .slide.active .side-images.left {
                transform: translateX(0);
                opacity: 1;
            }

            .slide.active .side-images.right {
                transform: translateX(0);
                opacity: 1;
            }

            .side-images img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        @media (max-width: 768px) {
            .slider_section .content-box {
                padding: 40px 30px;
            }

           .slider_section .title {
                font-size: 32px;
            }

           .slider_section .description {
                font-size: 16px;
            }

            .slider_section.arrow {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .slider_section.arrow-left {
                left: 15px;
            }

            .slider_section.arrow-right {
                right: 15px;
            }
        }
        
       