
        /* --- NEW: Premium Font Family --- */
        body {
            font-family: 'Poppins', sans-serif;
        }

        /* --- Start of Hero Section Styling --- */
        .hero-slider-item {
            position: relative;
            height: 100vh;
            overflow: hidden;
            background: #0a183d;
            /* Fallback background color */
        }

        .hero-slider-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to left, rgba(255, 188, 59, 0.15) 0%, rgba(10, 24, 61, 0.8) 60%, #0a183d 95%);
            z-index: 2;
            transition: background .3s ease-in-out;
        }

        .hero-slider-item.slide-2::before {
            background: linear-gradient(to right, rgba(255, 188, 59, 0.15) 0%, rgba(10, 24, 61, 0.8) 60%, #0a183d 95%);
        }

        .hero-slider-item .video-background {
            position: absolute;
            top: 60%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: 0;
            transform: translateX(-50%) translateY(-50%);
            background-size: cover;
            animation: animateClipPath 12s ease-in-out infinite alternate;
        }

        @keyframes animateClipPath {
            0% {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
            }

            100% {
                clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
            }
        }

        .hero-slider-item .video-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.03));
            z-index: 1;
        }

        .hero-section {
            padding: 0;
        }

        .hero-slider-item .container {
            position: relative;
            z-index: 3;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .hero-slider-item h1,
        .hero-slider-item p {
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        /* --- End of Hero Section Styling --- */

        .navigation {
            background-image: none !important;
        }

        .navbar-nav {
            background: transparent !important;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        }

        /* --- Start of 3D Panel Grid Section --- */
        .feature-grid-section {
            padding: 100px 0;
            perspective: 1500px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(-45deg, #0a183d, #1d2b5a, #4a3a8a, #ffbc3b);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
        }

        @keyframes gradientBG {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .feature-panel {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(5px);
            padding: 35px 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform-style: preserve-3d;
            position: relative;
            z-index: 2;
            height: 100%;
        }

        .feature-panel:hover {
            transform: translateZ(25px) rotateX(8deg) rotateY(-8deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: #ffbc3b;
            background: rgba(255, 255, 255, 1);
        }

        .feature-panel h3 {
            color: #0a183d;
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            font-size: 1.4rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .feature-panel p {
            color: #343a40;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* --- End of 3D Panel Grid Section --- */

        /* --- Start of Decorative Elements for Feature Section --- */
        .decorative-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
            /* Make them non-interactive */
        }

        .deco-icon {
            position: absolute;
            opacity: 0.6;
            animation: float ease-in-out infinite;
        }

        .icon-1 {
            top: 10%;
            left: 5%;
            width: 70px;
            height: 70px;
            animation-duration: 6s;
        }

        .icon-2 {
            top: 20%;
            right: 8%;
            width: 60px;
            height: 60px;
            animation-duration: 8s;
        }

        .icon-3 {
            bottom: 15%;
            left: 20%;
            width: 50px;
            height: 50px;
            animation-duration: 7s;
        }

        .icon-4 {
            bottom: 25%;
            right: 25%;
            width: 80px;
            height: 80px;
            animation-duration: 5s;
        }

        .dotted-square {
            position: absolute;
            width: 100px;
            height: 100px;
            border: 2px dotted rgba(255, 255, 255, 0.4);
            animation: spin 20s linear infinite;
        }

        .square-1 {
            top: 15%;
            left: 30%;
        }

        .square-2 {
            bottom: 10%;
            right: 10%;
            animation-direction: reverse;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-30px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* --- End of Decorative Elements --- */

        /* --- Start of Cinematic About Us Section Styling --- */
        .about-section.cinematic-about {
            position: relative;
            padding: 120px 0;
            overflow: hidden;
            color: #fff;
        }

        .about-section.cinematic-about .video-background-about {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .about-section.cinematic-about .video-background-about video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-section.cinematic-about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 24, 61, 0.85);
            z-index: 2;
        }

        .about-section.cinematic-about .container {
            position: relative;
            z-index: 3;
        }

        .about-section.cinematic-about .content-panel {
            background: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .about-section.cinematic-about .section-title {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #fff;
            text-shadow: 0 0 15px rgba(255, 188, 59, 0.5);
        }

        .about-section.cinematic-about p {
            color: #fff;
            text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* --- End of Cinematic About Us Section Styling --- */

        /* --- Start of Academic Programs Section --- */
        .programs-section,
        .testimonial-section {
            padding: 100px 0;
            background-color: #f8f9fa;
            color: #0a183d;
            position: relative;
            overflow: hidden;
        }

        .programs-section .dot-pattern,
        .testimonial-section .dot-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(rgba(216, 216, 216, 0.15) 3px, transparent 4px), radial-gradient(rgba(230, 230, 230, 0.15) 3px, transparent 4px), linear-gradient(rgba(255, 255, 255, 0.00) 4px, transparent 0), linear-gradient(45deg, transparent 74px, transparent 75px, rgba(164, 164, 164, 0.15) 75px, rgba(164, 164, 164, 0.15) 76px, transparent 77px, transparent 109px), linear-gradient(-45deg, transparent 75px, transparent 76px, rgba(164, 164, 164, 0.15) 76px, rgba(164, 164, 164, 0.15) 77px, transparent 78px, transparent 109px), rgba(255, 255, 255, 0.00);
            background-size: 109px 109px, 109px 109px, 100% 6px, 109px 109px, 109px 109px;
            background-position: 54px 55px, 0 0, 0 0, 0 0, 0 0;
            z-index: 1;
        }

        .programs-section::before,
        .testimonial-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://vedikasoft.com/assets/images/bg/webp/bg-blurr-2.webp');
            background-repeat: no-repeat;
            background-position: center;
            z-index: 2;
            opacity: 0.7;
        }

        .programs-section .container,
        .testimonial-section .container {
            position: relative;
            z-index: 3;
        }

        .programs-section .section-title,
        .testimonial-section .section-title {
            color: #0a183d;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
        }

        .program-card {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 15px;
            padding: 0;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .program-card .card-img-top {
            height: 180px;
            width: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .program-card:hover .card-img-top {
            transform: scale(1.1);
        }

        .program-card-body {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .program-card-body p {
            flex-grow: 1;
            margin-bottom: 0;
            text-align: left;
        }

        .program-card-body p.truncated {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .program-card h4 {
            font-family: 'Oswald', sans-serif;
            color: #0a183d;
        }

        .programs-carousel .item {
            padding: 20px 0;
            display: flex;
            align-items: stretch;
        }

        .read-more-btn {
            cursor: pointer;
            color: #ffbc3b;
            font-weight: bold;
            margin-top: 10px;
            display: inline-block;
        }

        .programs-carousel .owl-dots {
            text-align: center;
            margin-top: 30px;
        }

        .programs-carousel .owl-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 50%;
            margin: 0 5px;
            transition: background-color 0.3s ease;
        }

        .programs-carousel .owl-dot.active {
            background: #ffbc3b;
        }

        /* --- End of Academic Programs Section --- */

        /* --- Start of TOP MBBS Universities Section --- */
        .universities-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .universities-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://images.pexels.com/photos/207692/pexels-photo-207692.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            filter: blur(8px);
            transform: scale(1.1);
            z-index: 1;
        }

        .universities-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 24, 61, 0.7);
            z-index: 2;
        }

        .universities-section .container-fluid {
            position: relative;
            z-index: 3;
        }

        .universities-section .section-title {
            color: #fff;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            margin-bottom: 40px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .university-tabs {
            list-style: none;
            padding: 0;
            margin-bottom: 60px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .university-tabs li a {
            padding: 10px 20px;
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .university-tabs li a img {
            height: 20px;
            width: 20px;
            border-radius: 50%;
            object-fit: cover;
        }

        .university-tabs li a:hover,
        .university-tabs li a.active {
            background: #ffbc3b;
            color: #0a183d;
            border-color: #ffbc3b;
        }

        .tab-content .tab-pane {
            display: none;
            animation: fadeIn 0.5s;
        }

        .tab-content .tab-pane.active {
            display: block;
        }

        .uni-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            border: 10px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            transition: all 0.4s ease;
            overflow: hidden;
            display: flex;
            min-height: 350px;
        }

        .owl-item.center .uni-card {
            transform: scale(1);
            opacity: 1;
            background: white;
        }

        .owl-item .uni-card {
            transform: scale(0.85);
            opacity: 0.7;
        }

        .uni-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .uni-card-content {
            display: flex;
            flex-direction: column;
            height: 100%;
            width: 100%;
        }

        .uni-card-img-col {
            flex: 0 0 100%;
        }

        .uni-card-img-col img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .uni-card-content-col {
            padding: 30px;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex-grow: 1;
        }

        .uni-card h4 {
            font-family: 'Oswald', sans-serif;
            color: #0a183d;
            margin-bottom: 15px;
            font-size: 1.6rem;
        }

        .uni-card p {
            color: #343a40;
            font-size: 1rem;
            margin-bottom: 20px;
            line-height: 1.7;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .uni-card .btn-primary-outline {
            color: #0a183d;
            border-color: #ffbc3b;
            align-self: flex-start;
            margin-top: auto;
        }

        .uni-card .btn-primary-outline:hover {
            background: #ffbc3b;
            color: #0a183d;
        }

        .universities-section .item {
            padding: 20px 0;
            display: flex;
            align-items: stretch;
        }

        @media (min-width: 992px) {
            .uni-card-content {
                flex-direction: row;
            }

            .uni-card-img-col {
                flex: 0 0 45%;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* --- End of TOP MBBS Universities Section --- */

        /* --- Start of Testimonial Section --- */
        /* --- Start of Testimonial Section --- */
        .modern-testimonial-slider .item {
            padding: 80px 15px 30px 15px;
            /* Adjusted padding for larger image */
        }

        .testimonial-card-new {
            background: linear-gradient(135deg, #0a183d, #1d2b5a);
            color: #ffffff;
            border-radius: 20px;
            padding: 80px 30px 30px 30px;
            /* Adjusted padding */
            position: relative;
            text-align: center;
            overflow: visible;
            border: 1px solid #0a183d;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transform: rotate(-2deg);
            /* Subtle rotation */
            transition: transform 0.4s ease;
        }

        .testimonial-card-new:hover {
            transform: rotate(0deg) scale(1.05);
            /* Straighten and scale up on hover */
        }

        .testimonial-card-new .profile-image-wrapper {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
        }

        .testimonial-card-new .profile-image-wrapper img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            border: 5px solid rgba(255, 255, 255, 0.2);
            /* UPDATED */
            object-fit: cover;
        }

        .testimonial-card-new .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
            flex-grow: 1;
            color: #e0e0e0;
        }

        .testimonial-card-new .testimonial-text::before {
            content: "“";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 10rem;
            color: rgba(255, 255, 255, 0.05);
            font-family: serif;
            z-index: 1;
            line-height: 1;
        }

        .testimonial-card-new .profile {
            z-index: 2;
        }

        .testimonial-card-new .profile h5 {
            margin: 0 0 5px 0;
            color: #ffffff;
            font-weight: 700;
            font-size: 1.4rem;
            font-family: 'Oswald', sans-serif;
        }

        .testimonial-card-new .profile p {
            margin: 0;
            color: #bbbbbb;
            font-size: 0.9rem;
        }

        /* --- End of Testimonial Section Styles --- */



        @media (max-width: 768px) {
            .hero-slider-item {
                height: 70vh;
            }

            .hero-slider-item h1 {
                font-size: 2.5rem;
            }

            .hero-slider-item p {
                font-size: 1rem;
            }

            .hero-slider-item.slide-2 .text-right {
                text-align: left !important;
            }

            .decorative-elements {
                display: none;
                /* Hide decorative elements on mobile */
            }
        }

        /******************/
        .slider {
            overflow: hidden;
            position: relative;
            height: 100vh;
            color: #fff;
        }

        .slider__top-heading {
            z-index: 12;
            position: absolute;
            left: 0;
            top: 100px;
            width: 100%;
            text-align: center;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            transition: all 0.5s 1s;
            transform: translateY(-30px);
            opacity: 0;
        }

        .slider.s--ready .slider__top-heading {
            transform: translateY(0);
            opacity: 1;
        }

        .slider__slides {
            position: relative;
            height: 100%;
        }

        .slider__slide {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .slider__slide.s--active {
            pointer-events: auto;
        }

        .slider__slide-content {
            z-index: 6;
            position: relative;
            display: flex;
            justify-content: flex-start;
            /* Align content to the top */
            align-items: center;
            /* Center text horizontally */
            padding-top: 65vh;
            /* Pushed captions further up */
            flex-direction: column;
            height: 100%;
            line-height: 1.4;
            /* Improved line height for paragraphs */
            text-align: center;
            /* Center text */
            max-width: 800px;
            /* Constrain width for better readability */
            margin: 0 auto;
            /* Center the content block */
        }

        .slider__slide-subheading {
            margin-bottom: 20px;
            font-size: 1.4rem;
            /* Increased font size */
            font-weight: 400;
            color: #fff;
            font-family: 'Poppins';
            letter-spacing: normal;
            /* Removed letter spacing */
            text-transform: none;
            /* Removed uppercase */
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s ease-out;
        }

        .slider__slide.s--active .slider__slide-subheading {
            transition-delay: 0.8s;
            /* Staggered animation */
            opacity: 1;
            transform: translateY(0);
        }

        .slider__slide-heading {
            margin-bottom: 20px;
            font-size: 40px;
            /* Decreased font size */
            font-weight: 700;
            color: #fff;
            font-family: 'Poppins';
            letter-spacing: 1px;
            /* Reduced letter spacing */
            text-transform: none;
            /* Removed uppercase */
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s ease-out;
        }

        .slider__slide.s--active .slider__slide-heading {
            transition-delay: 0.65s;
            /* Staggered animation */
            opacity: 1;
            transform: translateY(0);
        }

        /* Hide the old span-based elements */
        .slider__slide-heading span {
            display: none;
        }

        .slider__slide-readmore {
            display: none;
            /* Hide the readmore element */
        }

        .slider__slide-parts {
            position: absolute;
            left: 0;
            top: 0;
            display: flex;
            width: 100%;
            height: 100%;
        }

        .slider__slide-parts:after {
            content: "";
            z-index: 5;
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            /* Decreased overlay opacity */
        }

        .slider__slide-part {
            position: relative;
            width: 25%;
            height: 100%;
        }

        .slider__slide-part-inner {
            overflow: hidden;
            position: relative;
            width: 100%;
            height: 100%;
            background-size: 0 0;
            background-repeat: no-repeat;
            transition: transform 0.5s ease-in-out;
        }

        .slider__slide-part-inner:before {
            content: "";
            position: absolute;
            width: 100vw;
            height: 100%;
            background-image: inherit;
            background-size: cover;
            background-position: center center;
            transition: opacity 0.25s;
            opacity: 0;
        }

        .slider__slide-part:nth-child(1) .slider__slide-part-inner {
            z-index: 3;
            transition-delay: 0.24s;
            transform: translateX(-32.5%);
        }

        .slider__slide.s--active .slider__slide-part:nth-child(1) .slider__slide-part-inner {
            transition-delay: 0.28s;
        }

        .slider__slide-part:nth-child(1) .slider__slide-part-inner:before {
            left: 0vw;
            transition-delay: 0.365s;
        }

        .slider__slide.s--active .slider__slide-part:nth-child(1) .slider__slide-part-inner:before {
            transition-delay: 0.28s;
        }

        .slider__slide-part:nth-child(2) .slider__slide-part-inner {
            z-index: 2;
            transition-delay: 0.16s;
            transform: translateX(-65%);
        }

        .slider__slide.s--active .slider__slide-part:nth-child(2) .slider__slide-part-inner {
            transition-delay: 0.36s;
        }

        .slider__slide-part:nth-child(2) .slider__slide-part-inner:before {
            left: -25vw;
            transition-delay: 0.285s;
        }

        .slider__slide.s--active .slider__slide-part:nth-child(2) .slider__slide-part-inner:before {
            transition-delay: 0.36s;
        }

        .slider__slide-part:nth-child(3) .slider__slide-part-inner {
            z-index: 1;
            transition-delay: 0.08s;
            transform: translateX(-97.5%);
        }

        .slider__slide.s--active .slider__slide-part:nth-child(3) .slider__slide-part-inner {
            transition-delay: 0.44s;
        }

        .slider__slide-part:nth-child(3) .slider__slide-part-inner:before {
            left: -50vw;
            transition-delay: 0.205s;
        }

        .slider__slide.s--active .slider__slide-part:nth-child(3) .slider__slide-part-inner:before {
            transition-delay: 0.44s;
        }

        .slider__slide-part:nth-child(4) .slider__slide-part-inner {
            z-index: 0;
            transition-delay: 0s;
            transform: translateX(-130%);
        }

        .slider__slide.s--active .slider__slide-part:nth-child(4) .slider__slide-part-inner {
            transition-delay: 0.52s;
        }

        .slider__slide-part:nth-child(4) .slider__slide-part-inner:before {
            left: -75vw;
            transition-delay: 0.125s;
        }

        .slider__slide.s--active .slider__slide-part:nth-child(4) .slider__slide-part-inner:before {
            transition-delay: 0.52s;
        }

        .slider__slide.s--active .slider__slide-part-inner {
            transform: translateX(0);
            transition-timing-function: ease;
        }

        .slider__slide.s--active .slider__slide-part-inner:before {
            opacity: 1;
        }

        .slider__control {
            z-index: 100;
            position: absolute;
            left: 50px;
            top: 50%;
            width: 50px;
            height: 50px;
            margin-top: -25px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            transform: translateX(-50px);
            opacity: 0;
            transition: all 0.5s 1s;
            cursor: pointer;
        }

        .slider__control:before {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            width: 20px;
            height: 20px;
            margin-left: -10px;
            margin-top: -10px;
            border: 2px solid #fff;
            /* White arrows */
            border-bottom: none;
            border-right: none;
            transform: translateX(5px) rotate(-45deg);
        }

        .slider__control--right {
            left: auto;
            right: 50px;
            transform: translateX(50px);
        }

        .slider__control--right:before {
            transform: translateX(-5px) rotate(135deg);
        }

        .slider.s--ready .slider__control {
            transform: translateX(0);
            opacity: 1;
        }
  