
        .slider {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .slides {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: 1.2s ease;
        }

        .slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 5;
        }

        /*==========================
BACKGROUND
==========================*/

        .bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            animation: zoom 12s linear infinite;
            transform: scale(1);
        }

        @keyframes zoom {

            0% {
                transform: scale(1);
            }

            100% {
                transform: scale(1.15);
            }

        }

        .overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            /* background:
linear-gradient(
90deg,
rgba(0,0,0,.75),
rgba(0,0,0,.35)
); */
        }

        /*==========================
CONTENT
==========================*/

        .content {
            position: relative;
            z-index: 10;
            max-width: 620px;
            padding: 45px;
            border-radius: 25px;
        }

        .glass {
               backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .45);
    border-radius: 6px;
    background: #00000070;
        }

        .sub-title {
            display: inline-block;
            letter-spacing: 3px;
            font-size: 15px;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: #00e0ff;
        }

        .content h1 {

            font-size: 68px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 25px;
            color: #fff;
            animation: title .9s ease;
        }

        .content p {
            color: #fff;
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 35px;
            opacity: .9;

            animation: text 1.2s ease;
        }

        @keyframes title {

            from {
                opacity: 0;
                transform: translateY(70px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }

        }

        @keyframes text {

            from {
                opacity: 0;
                transform: translateY(90px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }

        }

        /*==========================
BUTTONS
==========================*/

        .buttons {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }

        .btn1,
        .btn2 {

            padding: 16px 34px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 600;
            transition: .4s;

        }

        .btn1 {

            background: #00d4ff;
            color: #000;

        }

        .btn1:hover {

            transform: translateY(-5px);
            box-shadow:
                0 10px 35px #00d4ff;

        }

        .btn2 {

            border: 2px solid rgba(255, 255, 255, .4);
            color: #fff;

        }

        .btn2:hover {

            background: #fff;
            color: #000;

        }

        /*==========================
ARROWS
==========================*/

        .navigation {

            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 45px;
            transform: translateY(-50%);
            z-index: 50;

        }

        .navigation button {
            width: 70px;
            height: 70px;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            background: rgba(255, 255, 255, .08);
            backdrop-filter: blur(20px);
            color: #fff;
            transition: .4s;
            display: none;
        }

        .navigation button:hover {

            background: #00d4ff;
            color: #000;
            transform: scale(1.1);

        }

        /*==========================
INDICATORS
==========================*/

        .indicators {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 18px;
            z-index: 99;
        }

        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .4);
            cursor: pointer;
            transition: .4s;
            position: relative;
        }

        .dot::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 28px;
            height: 28px;
            border: 1px solid transparent;
            border-radius: 50%;
            transition: .4s;
        }

        .dot.active {
            background: #00d4ff;
            transform: scale(1.2);
        }

        .dot.active::after {
            border-color: #00d4ff;
        }

        /*==========================
PROGRESS BAR
==========================*/

        .progress-bar {
            position: absolute;
            left: 0;
            top: 0;
            width: 0%;
            height: 4px;
            background: #00d4ff;
            z-index: 999;
            animation: progress 6s linear infinite;
        }

        @keyframes progress {

            0% {
                width: 0%;
            }

            100% {
                width: 100%;
            }

        }

        /*==========================
SCROLL INDICATOR
==========================*/

        .scroll {
            position: absolute;
            bottom: 35px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 99;
        }

        .scroll span {
            display: block;
            width: 30px;
            height: 50px;
            border: 2px solid #fff;
            border-radius: 25px;
            position: relative;
        }

        .scroll span::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 10px;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
            animation: wheel 2s infinite;
        }

        @keyframes wheel {

            0% {
                opacity: 1;
                top: 10px;
            }

            100% {
                opacity: 0;
                top: 28px;
            }

        }

        /*==========================
CONTENT ANIMATION
==========================*/

        .slide.active .sub-title {
            animation: fadeLeft .8s;
        }

        .slide.active h1 {
            animation: fadeUp 1s;
        }

        .slide.active p {
            animation: fadeUp 1.3s;
        }

        .slide.active .buttons {
            animation: fadeUp 1.6s;
        }

        @keyframes fadeLeft {

            from {
                opacity: 0;
                transform: translateX(-70px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }

        }

        @keyframes fadeUp {

            from {
                opacity: 0;
                transform: translateY(70px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }

        }

        /*==========================
RESPONSIVE
==========================*/

        @media(max-width:991px) {

            .content {

                max-width: 100%;
                padding: 35px;

            }

            .content h1 {

                font-size: 46px;

            }

            .content p {

                font-size: 17px;

            }

            .navigation {

                padding: 0 20px;

            }

            .navigation button {

                width: 55px;
                height: 55px;
                font-size: 18px;

            }

            .indicators {

                right: 15px;

            }

        }

        @media(max-width:768px) {

            .slider {

                height: 100vh;

            }

            .content {

                padding: 25px;

            }

            .content h1 {

                font-size: 34px;
                line-height: 1.2;

            }

            .content p {

                font-size: 15px;

            }

            .buttons {

                flex-direction: column;

            }

            .btn1,
            .btn2 {

                width: 100%;
                text-align: center;

            }

            .navigation {

                display: none;

            }

            .indicators {

                right: 12px;
                gap: 12px;

            }

            .dot {

                width: 10px;
                height: 10px;

            }

            .scroll {

                bottom: 15px;

            }

        }

        @media(max-width:480px) {

            .content {

                padding: 20px;

            }

            .sub-title {

                font-size: 12px;
                letter-spacing: 2px;

            }

            .content h1 {

                font-size: 28px;

            }

            .content p {

                font-size: 14px;
                line-height: 1.7;

            }
        }