﻿
        .blog-cards-section {
            padding: 80px 0;
            background: #f8fbff;
            font-family: 'Poppins',sans-serif;
        }

            .blog-cards-section .container {
                max-width: 1320px;
            }



            .blog-cards-section .section-title {
                text-align: center;
                margin-bottom: 55px;
            }

                .blog-cards-section .section-title span {
                    display: inline-block;
                    padding: 7px 18px;
                    border-radius: 40px;
                    background: #e8f0ff;
                    color: #2563eb;
                    font-size: 13px;
                    font-weight: 600;
                    margin-bottom: 15px;
                    letter-spacing: .8px;
                    text-transform: uppercase;
                }

                .blog-cards-section .section-title h2 {
                    font-size: 40px;
                    font-weight: 700;
                    color: #1e293b;
                    margin-bottom: 12px;
                }

                .blog-cards-section .section-title p {
                    color: #64748b;
                    font-size: 16px;
                    max-width: 650px;
                    margin: auto;
                }



        .blog-card {
            background: #fff;
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 10px 35px rgba(0,0,0,.08);
            transition: .35s;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }

            .blog-card:hover {
                transform: translateY(-12px);
                box-shadow: 0 20px 45px rgba(37,99,235,.18);
            }



        .blog-image {
            position: relative;
            overflow: hidden;
        }

            .blog-image img {
                width: 100%;
                height: 240px;
                object-fit: cover;
                transition: .6s;
                display: block;
            }

        .blog-card:hover .blog-image img {
            transform: scale(1.08);
        }



        .category {
            position: absolute;
            top: 18px;
            left: 18px;
            background: #2563eb;
            color: #fff;
            padding: 7px 16px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .5px;
        }



        .blog-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }



        .blog-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 18px;
            color: #64748b;
            font-size: 13px;
        }

            .blog-meta span {
                display: flex;
                align-items: center;
                gap: 6px;
            }

            .blog-meta i {
                color: #2563eb;
            }



        .blog-content h3 {
            margin: 0 0 15px;
            line-height: 1.45;
        }

            .blog-content h3 a {
                color: #1f2937;
                text-decoration: none;
                font-size: 24px;
                font-weight: 700;
                transition: .3s;
            }

                .blog-content h3 a:hover {
                    color: #2563eb;
                }



        .blog-content p {
            color: #64748b;
            font-size: 15px;
            line-height: 1.9;
            margin-bottom: 28px;
        }



        .blog-footer {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #eef2f7;
            padding-top: 20px;
        }



        .author {
            display: flex;
            align-items: center;
        }

            .author img {
                width: 55px;
                height: 55px;
                border-radius: 50%;
                object-fit: cover;
                margin-right: 14px;
                border: 3px solid #edf2ff;
            }

            .author h6 {
                margin: 0;
                color: #1e293b;
                font-size: 15px;
                font-weight: 600;
            }

            .author span {
                color: #64748b;
                font-size: 13px;
            }



        .read-btn {
            color: #2563eb;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: .3s;
        }

            .read-btn i {
                transition: .3s;
            }

            .read-btn:hover {
                color: #0f4fe5;
            }

                .read-btn:hover i {
                    transform: translateX(6px);
                }



        @media(max-width:991px) {
            .blog-cards-section;

        {
            padding: 60px 0;
        }

        .blog-cards-section .section-title h2 {
            font-size: 32px;
        }

        .blog-image img {
            height: 220px;
        }

        .blog-content h3 a {
            font-size: 22px;
        }

        }

        @media(max-width:767px) {
            .blog-footer;

        {
            flex-direction: column;
            align-items: flex-start;
            gap: 18px;
        }

        .blog-meta {
            gap: 10px;
        }

        .blog-content {
            padding: 22px;
        }

            .blog-content h3 a {
                font-size: 20px;
            }

        .blog-image img {
            height: 210px;
        }

        .blog-cards-section .section-title h2 {
            font-size: 28px;
        }

        }

        .width-100 {
            width: 100%;
        }

        .popup-image img {
            width: 100%;
        }

        .popupbtn {
            display: block;
            margin: 0 0 20px auto;
            background-color: transparent;
            font-size: 30px;
            color: #fff;
            background: #03549a;
            border-radius: 100%;
            width: 40px;
            height: 40px;
            border: none;
            outline: none;
            cursor: pointer;
        }

        .close {
            display: block;
            margin: 0 0 20px auto;
            background-color: transparent;
            font-size: 16px;
            color: #fff;
            background: #03549a;
            border-radius: 100%;
            width: 30px;
            height: 30px;
            border: none;
            outline: none;
            cursor: pointer;
        }

        .media-popup {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.85);
            justify-content: center;
            align-items: center;
        }

        .media-popup-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            text-align: center;
        }

        .close-btn {
            position: absolute;
            top: -10px;
            right: -10px;
            color: #fff;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            background: #000;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            line-height: 35px;
        }




.course-section {
    width: 100%;
    /*padding: 38px 45px;*/
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.course-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.course-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dce5f1;
    /*box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04), 0 8px 20px rgba(37, 99, 235, 0.07);*/
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.course-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08), 0 16px 35px rgba(37, 99, 235, 0.10);
}

.course-image {
    width: 100%;
    height: 175px;
    position: relative;
    overflow: hidden;
    display: block;
    background: #eff6ff;
    text-decoration: none;
}

.course-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.045);
    filter: brightness(0.92);
}

.course-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.30));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.course-card:hover .course-image::after {
    opacity: 1;
}

.course-image::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -70%;
    width: 45%;
    height: 300%;
    background: rgba(255, 255, 255, 0.28);
    transform: rotate(25deg);
    transition: left 0.8s ease;
    z-index: 3;
    pointer-events: none;
}

.course-card:hover .course-image::before {
    left: 135%;
}

.course-image-label {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 6;
    padding: 6px 11px;
    background: #2563eb;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.22);
}

.course-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 19px;
    box-sizing: border-box;
    background: #ffffff;
}

.course-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
    color: #1d4ed8;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.42;
    text-decoration: none;
    transition: color 0.2s ease;
}

.course-title:hover {
    color: #172554;
}

.course-user {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 14px;
    border-bottom: 1px solid #e5e7eb;
}

.author-photo-wrapper {
    position: relative;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 50% !important;
    box-sizing: border-box;
}

.author-photo-wrapper::before {
    display: none !important;
    content: none !important;
}

.course-user img {
    width: 38px;
    height: 38px;
    display: block;
    object-fit: cover;
    border-radius: 50% !important;
    border: none !important;
    background: #f1f5f9;
    transition: transform 0.3s ease;
}

.course-user:hover img {
    transform: scale(1.06);
}

.author-online,
.author-photo-wrapper .author-online,
.course-user .author-online {
    display: none !important;
}

.author-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-label {
    display: block;
    margin: 0;
    color: rgb(0 0 0 / .55);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.55px;
    text-transform: uppercase;
}

.course-user h4 {
    position: relative;
    display: block;
    width: fit-content;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    color: #111827;
    background: transparent;
    border: none;
    border-radius: 0 !important;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.course-user h4::after {
    display: none !important;
    content: none !important;
}

.author-verified {
    display: none !important;
}

.course-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 0;
    border-bottom: 1px solid #e8eef6;
}

.student-info,
.language-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.student-info i,
.language-info i {
    width: 20px;
    flex-shrink: 0;
    color: #2563eb;
    font-size: 16px;
    text-align: center;
}

.student-info strong,
.language-info strong {
    color: #00000099;
    font-size: 15px;
    font-weight: 700;
}

.course-bottom {
    width: 100%;
    margin-top: auto;
    padding-top: 17px;
}

.price-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 15px;
}

.new-price {
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.2;
}

.old-price {
    color: #94a3b8;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: line-through;
}

.offer {
    padding: 5px 8px;
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #dbeafe;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.2px;
}

.enroll-btn {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    border: 2px solid #2563eb;
    border-radius: 5px !important;
    background: #ffffff;
    color: #2563eb !important;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.enroll-btn:hover {
    background: #2563eb;
    color: #ffffff !important;
    border-color: #2563eb;
    box-shadow: 0 5px 14px rgba(37, 99, 235, 0.14);
}

.enroll-btn i {
    font-size: 15px;
    transition: transform 0.25s ease;
}

.enroll-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 1250px) {
    .course-section {
        padding: 35px 30px;
    }

    .course-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 23px;
    }
}

@media (max-width: 900px) {
    .course-section {
        padding: 30px 22px;
    }

    .course-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .course-image {
        height: 190px;
    }
}

@media (max-width: 600px) {
    .course-section {
        padding: 22px 15px;
    }

    .course-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .course-image {
        height: 215px;
    }

    .course-content {
        padding: 18px;
    }

    .course-title {
        font-size: 18px;
    }
}

@media (max-width: 380px) {
    .course-section {
        padding: 18px 10px;
    }

    .course-content {
        padding: 16px;
    }

    .course-image {
        height: 195px;
    }

    .author-photo-wrapper {
        width: 54px;
        height: 54px;
    }

    .course-user img {
        width: 46px;
        height: 46px;
    }

    .new-price {
        font-size: 21px;
    }
}



       

     
        .wd-ktm-final {
            position: relative;
            width: 100vw;
            max-width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            min-height: 570px;
            overflow: hidden;
            background: #ffffff;
            color: #111111;
            font-family: "Poppins", Arial, sans-serif;
            box-sizing: border-box;
        }

            .wd-ktm-final *,
            .wd-ktm-final *::before,
            .wd-ktm-final *::after {
                box-sizing: border-box;
            }

            .wd-ktm-final::before {
                content: "";
                position: absolute;
                z-index: 10;
                top: 0;
                right: 0;
                width: 45%;
                height: 3px;
                background: #1b71fc;
            }

            .wd-ktm-final::after {
                content: "";
                position: absolute;
                z-index: 10;
                left: 0;
                bottom: 0;
                width: 55%;
                height: 3px;
                background: #1b71fc;
            }


        .wd-ktm-final-grid {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(0,0,0,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px);
            background-size: 65px 65px;
            pointer-events: none;
        }

        .wd-ktm-final-number {
            position: absolute;
            left: -20px;
            bottom: -90px;
            font-size: 300px;
            line-height: 1;
            font-weight: 900;
            color: rgba(0,0,0,.035);
            z-index: 1;
            pointer-events: none;
        }

        .wd-ktm-final-inner {
            position: relative;
            z-index: 5;
            width: 100%;
            min-height: 570px;
            display: grid;
            grid-template-columns: 38% 62%;
            align-items: center;
            padding: 55px 5%;
        }

        .wd-ktm-final-left {
            position: relative;
            z-index: 10;
            padding-left: 4%;
            padding-right: 30px;
        }

        .wd-ktm-final-label {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 4px;
            white-space: nowrap;
            color: #111111;
        }

            .wd-ktm-final-label span {
                width: 38px;
                height: 3px;
                background: #1b71fc;
                display: inline-block;
                transform: skewX(-25deg);
            }

        .wd-ktm-final-title {
            margin: 25px 0 0;
            padding: 0;
            font-size: clamp(30px, 3.25vw, 56px);
            line-height: 1;
            font-weight: 900;
            letter-spacing: -2px;
            white-space: nowrap;
            text-transform: uppercase;
            color: #111111;
        }

            .wd-ktm-final-title strong {
                color: #1b71fc;
                font-weight: 900;
            }

        .wd-ktm-final-line {
            width: 70px;
            height: 5px;
            margin-top: 24px;
            background: #1b71fc;
            transform: skewX(-25deg);
        }

        .wd-ktm-final-description {
            max-width: 470px;
            margin: 20px 0 0;
            color: #666666;
            font-size: 14px;
            line-height: 1.75;
        }

        .wd-ktm-final-features {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            margin-top: 28px;
        }

        .wd-ktm-final-feature {
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

            .wd-ktm-final-feature b {
                font-size: 14px;
                color: #1b71fc;
                font-weight: 800;
            }

            .wd-ktm-final-feature span {
                font-size: 14px;
                color: #666666;
                font-weight: 600;
                line-height: 1.4;
                letter-spacing: 1px;
                white-space: nowrap;
            }

        .wd-ktm-final-button {
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
            min-width: 205px;
            margin-top: 30px;
            padding: 13px 13px 13px 21px;
            background: #1b71fc;
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 1.5px;
            clip-path: polygon( 0 0, 92% 0, 100% 50%, 92% 100%, 0 100% );
            transition: all .3s ease;
        }

            .wd-ktm-final-button span {
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                background: #111111;
                color: #ffffff;
                font-size: 15px;
                transition: .3s ease;
            }

            .wd-ktm-final-button:hover {
                background: #111111;
                color: #ffffff;
                transform: translateX(5px);
            }

                .wd-ktm-final-button:hover span {
                    background: #1b71fc;
                    color: #ffffff;
                    transform: rotate(45deg);
                }

        .wd-ktm-final-right {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 470px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .wd-ktm-final-video-wrap {
            position: relative;
            width: 100%;
            height: 455px;
            overflow: hidden;
            background: #f5f5f5;
            border: 10px solid #ffffff;
            box-shadow: 0 25px 55px rgba(0,0,0,.18);
        }


        .wd-ktm-final-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            display: block;
            border: 0;
            margin: 0;
            padding: 0;
        }

        .wd-ktm-final-video-overlay {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: linear-gradient( 90deg, rgba(0,0,0,.08), transparent 45%, rgba(0,0,0,.12) );
        }

        .wd-ktm-final-video-label {
            position: absolute;
            z-index: 5;
            right: 35px;
            top: 35px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            text-align: right;
        }

            .wd-ktm-final-video-label small {
                font-size: 14px;
                font-weight: 700;
                letter-spacing: 4px;
                color: #111111;
            }

            .wd-ktm-final-video-label strong {
                margin-top: 2px;
                color: #ffffff;
                font-size: 30px;
                line-height: 1;
                font-weight: 900;
                letter-spacing: -1px;
                text-shadow: 0 2px 8px rgba(0,0,0,.35);
            }

        .wd-ktm-final-corner {
            position: absolute;
            z-index: 5;
            left: 0;
            bottom: 0;
            width: 75px;
            height: 5px;
            background: #1b71fc;
        }

        .wd-ktm-final::after {
            content: "";
            position: absolute;
            z-index: 10;
            left: 0;
            bottom: 0;
            width: 55%;
            height: 3px;
            background: #1b71fc;
        }

        @media (min-width: 1400px) {
            .wd-ktm-final-inner {
                padding-left: 6%;
                padding-right: 3%;
            }

            .wd-ktm-final-title {
                font-size: 54px;
            }

            .wd-ktm-final-video-wrap {
                height: 480px;
            }
        }

        @media (max-width: 1100px) {
            .wd-ktm-final-inner {
                grid-template-columns: 40% 60%;
                padding-left: 3%;
                padding-right: 2%;
            }

            .wd-ktm-final-left {
                padding-left: 2%;
                padding-right: 20px;
            }

            .wd-ktm-final-title {
                font-size: 38px;
                letter-spacing: -1.5px;
            }

            .wd-ktm-final-features {
                gap: 17px;
            }

            .wd-ktm-final-video-wrap {
                height: 430px;
            }
        }

        @media (max-width: 767px) {
            .wd-ktm-final {
                min-height: auto;
            }

            .wd-ktm-final-inner {
                display: flex;
                flex-direction: column;
                min-height: auto;
                padding: 50px 18px 35px;
            }

            .wd-ktm-final-left {
                width: 100%;
                padding: 0;
            }

            .wd-ktm-final-title {
                font-size: clamp(28px, 8vw, 42px);
                letter-spacing: -1.5px;
                white-space: nowrap;
            }

            .wd-ktm-final-description {
                font-size: 14px;
                max-width: 100%;
            }

            .wd-ktm-final-features {
                gap: 15px;
                justify-content: flex-start;
            }

            .wd-ktm-final-button {
                margin-top: 25px;
            }

            .wd-ktm-final-right {
                width: 100%;
                min-height: 0;
                height: auto;
                margin-top: 35px;
            }

            .wd-ktm-final-video-wrap {
                width: 100%;
                height: 300px;
                border-radius: 0;
            }

            .wd-ktm-final-video {
                object-fit: cover;
                transform: none !important;
            }

            .wd-ktm-final-video-label {
                top: 20px;
                right: 20px;
            }

                .wd-ktm-final-video-label strong {
                    font-size: 23px;
                }

            .wd-ktm-final-number {
                font-size: 150px;
                bottom: -30px;
            }
        }

        @media (max-width: 420px) {
            .wd-ktm-final-inner {
                padding-left: 14px;
                padding-right: 14px;
            }

            .wd-ktm-final-title {
                font-size: 27px;
                letter-spacing: -1px;
            }

            .wd-ktm-final-label {
                font-size: 14px;
                letter-spacing: 3px;
            }

            .wd-ktm-final-description {
                font-size: 14px;
            }

            .wd-ktm-final-features {
                gap: 12px;
            }

            .wd-ktm-final-feature span {
                font-size: 14px;
            }

            .wd-ktm-final-video-wrap {
                height: 250px;
            }
        }
   

        .wd-video-spotlight {
            position: relative;
            width: 100%;
            padding: 100px 30px 70px;
            overflow: hidden;
            background: radial-gradient( circle at 15% 20%, rgba(37,99,235,.16), transparent 32% ), radial-gradient( circle at 85% 75%, rgba(59,130,246,.12), transparent 30% ), #020617;
            color: #ffffff;
            font-family: "Poppins",Arial,sans-serif;
            isolation: isolate;
        }

        .wd-vs-noise {
            position: absolute;
            inset: 0;
            pointer-events: none;
            opacity: .30;
            background-image: linear-gradient( rgba(255,255,255,.035) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.035) 1px, transparent 1px );
            background-size: 55px 55px;
            mask-image: radial-gradient( ellipse at center, black 20%, transparent 78% );
            -webkit-mask-image: radial-gradient( ellipse at center, black 20%, transparent 78% );
            z-index: -5;
        }

        .wd-vs-glow {
            position: absolute;
            width: 850px;
            height: 850px;
            left: 55%;
            top: 45%;
            transform: translate(-50%,-50%);
            border-radius: 50%;
            border: 1px solid rgba(59,130,246,.10);
            background: radial-gradient( circle, rgba(37,99,235,.16) 0%, rgba(37,99,235,.07) 25%, transparent 65% );
            filter: blur(.2px);
            box-shadow: 0 0 120px rgba(37,99,235,.12), inset 0 0 100px rgba(59,130,246,.08);
            z-index: -4;
            pointer-events: none;
            animation: wdVsOrbit 14s linear infinite;
        }

        .wd-video-spotlight::before {
            content: "";
            position: absolute;
            width: 900px;
            height: 320px;
            left: 62%;
            top: 42%;
            transform: translate(-50%,-50%) rotate(-18deg);
            border: 1px solid rgba(59,130,246,.13);
            border-radius: 50%;
            box-shadow: 0 0 40px rgba(37,99,235,.06);
            z-index: -3;
            pointer-events: none;
            animation: wdVsRing 18s ease-in-out infinite alternate;
        }

        .wd-video-spotlight::after {
            content: "";
            position: absolute;
            width: 650px;
            height: 220px;
            left: 25%;
            top: 70%;
            transform: translate(-50%,-50%) rotate(25deg);
            border: 1px solid rgba(96,165,250,.08);
            border-radius: 50%;
            z-index: -3;
            pointer-events: none;
            animation: wdVsRing2 12s ease-in-out infinite alternate;
        }

        @keyframes wdVsOrbit {

            0% {
                transform: translate(-50%,-50%) rotate(0deg) scale(1);
            }

            50% {
                transform: translate(-50%,-50%) rotate(180deg) scale(1.04);
            }

            100% {
                transform: translate(-50%,-50%) rotate(360deg) scale(1);
            }
        }

        @keyframes wdVsRing {

            0% {
                transform: translate(-50%,-50%) rotate(-18deg) scale(1);
            }

            100% {
                transform: translate(-50%,-50%) rotate(-8deg) scale(1.08);
            }
        }

        @keyframes wdVsRing2 {

            0% {
                transform: translate(-50%,-50%) rotate(25deg) scale(1);
            }

            100% {
                transform: translate(-50%,-50%) rotate(38deg) scale(1.12);
            }
        }

        .wd-vs-container::before {
            content: "";
            position: absolute;
            width: 260px;
            height: 260px;
            left: -100px;
            top: 160px;
            border-radius: 50%;
            background: radial-gradient( circle, rgba(37,99,235,.18), transparent 70% );
            filter: blur(25px);
            pointer-events: none;
            animation: wdVsFloat 8s ease-in-out infinite alternate;
        }

        .wd-vs-container::after {
            content: "";
            position: absolute;
            width: 220px;
            height: 220px;
            right: -80px;
            bottom: 100px;
            border-radius: 50%;
            background: radial-gradient( circle, rgba(59,130,246,.13), transparent 70% );
            filter: blur(25px);
            pointer-events: none;
            animation: wdVsFloat2 10s ease-in-out infinite alternate;
        }

        @keyframes wdVsFloat {

            from {
                transform: translate3d(0,0,0) scale(1);
            }

            to {
                transform: translate3d(80px,45px,0) scale(1.25);
            }
        }

        @keyframes wdVsFloat2 {

            from {
                transform: translate3d(0,0,0) scale(1);
            }

            to {
                transform: translate3d(-70px,-40px,0) scale(1.18);
            }
        }

        .wd-vs-container {
            position: relative;
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 40px;
            z-index: 2;
        }

        .wd-vs-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 45px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,.08);
        }

        .wd-vs-kicker {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #f8fafc;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
        }

            .wd-vs-kicker span {
                width: 8px;
                height: 8px;
                flex-shrink: 0;
                border-radius: 50%;
                background: #2563eb;
                box-shadow: 0 0 15px rgba(37,99,235,.8);
                animation: wdVsPulse 2s infinite;
            }

        @keyframes wdVsPulse {

            0%,100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: .55;
                transform: scale(.75);
            }
        }

        .wd-vs-number {
            color: #64748b;
            font-size: 14px;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .wd-vs-main {
            display: grid;
            grid-template-columns: minmax(0,1.35fr) minmax(380px,.65fr);
            gap: 75px;
            align-items: center;
        }

        .wd-vs-video-area {
            position: relative;
            width: 100%;
        }

        .wd-vs-video {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #000;
            border: 10px solid #eff6ff;
            box-shadow: 0 40px 100px rgba(0,0,0,.55);
            isolation: isolate;
        }

            .wd-vs-video::before {
                content: "";
                position: absolute;
                inset: 0;
                border: 10px solid #bfdbfe;
                pointer-events: none;
                z-index: 5;
                box-shadow: inset 0 0 50px rgba(37,99,235,.08);
            }

            .wd-vs-video iframe {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                border: 0;
                display: block;
            }

        .wd-vs-video-overlay {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: linear-gradient( 180deg, rgba(0,0,0,.05), transparent 55%, rgba(0,0,0,.45) );
            z-index: 2;
        }

        .wd-vs-video-corner {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 8px 13px;
            border: 1px solid rgba(255,255,255,.18);
            background: rgba(0,0,0,.45);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: #ffffff;
            font-size: 14px;
            letter-spacing: 1.5px;
            font-weight: 600;
            z-index: 5;
        }

        .wd-vs-video-info {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 30px;
            padding-top: 25px;
        }

        .wd-vs-small-label {
            display: block;
            margin-bottom: 8px;
            color: #3b82f6;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .wd-vs-video-info h2 {
            margin: 0;
            max-width: 800px;
            color: #f8fafc;
            font-size: clamp(30px,3vw,46px);
            line-height: 1.12;
            font-weight: 700;
            letter-spacing: -1.5px;
        }

            .wd-vs-video-info h2 span {
                color: #3b82f6;
            }

        .wd-vs-duration {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 8px;
            padding-bottom: 4px;
            color: #64748b;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1.5px;
        }

            .wd-vs-duration i {
                color: #3b82f6;
                font-size: 18px;
            }

        .wd-vs-content {
            position: relative;
            padding-left: 15px;
        }

        .wd-vs-content-heading {
            margin-bottom: 35px;
        }

            .wd-vs-content-heading > span {
                color: #3b82f6;
                font-size: 14px;
                font-weight: 700;
                letter-spacing: 2px;
            }

            .wd-vs-content-heading h3 {
                margin: 12px 0 0;
                color: #f8fafc;
                font-size: 30px;
                line-height: 1.25;
                font-weight: 500;
                letter-spacing: -.7px;
            }

                .wd-vs-content-heading h3 strong {
                    display: block;
                    color: #ffffff;
                    font-weight: 700;
                }

        .wd-vs-item {
            position: relative;
            display: grid;
            grid-template-columns: 45px 1px 1fr;
            gap: 17px;
            min-height: 115px;
            transition: transform .3s ease;
        }

            .wd-vs-item:hover {
                transform: translateX(5px);
            }

        .wd-vs-item-number {
            color: #475569;
            font-size: 14px;
            font-weight: 700;
            padding-top: 2px;
            transition: .3s ease;
        }

        .wd-vs-item.active .wd-vs-item-number {
            color: #3b82f6;
        }

        .wd-vs-item-line {
            position: relative;
            width: 1px;
            min-height: 100%;
            background: rgba(255,255,255,.08);
        }

            .wd-vs-item-line::before {
                content: "";
                position: absolute;
                left: -3px;
                top: 3px;
                width: 7px;
                height: 7px;
                border-radius: 50%;
                background: #334155;
                transition: .3s ease;
            }

        .wd-vs-item.active .wd-vs-item-line::before {
            background: #2563eb;
            box-shadow: 0 0 15px rgba(37,99,235,.8);
        }

        .wd-vs-item-content {
            padding-bottom: 25px;
        }

            .wd-vs-item-content h4 {
                margin: 0 0 7px;
                color: #e2e8f0;
                font-size: 14px;
                line-height: 1.4;
                font-weight: 700;
                transition: .3s ease;
            }

        .wd-vs-item.active .wd-vs-item-content h4 {
            color: #ffffff;
        }

        .wd-vs-item-content p {
            margin: 0;
            color: #f8fafc;
            font-size: 14px;
            line-height: 1.7;
            font-weight: 400;
        }

        .wd-vs-item:hover .wd-vs-item-number {
            color: #60a5fa;
        }

        .wd-vs-item:hover .wd-vs-item-line::before {
            background: #3b82f6;
            box-shadow: 0 0 15px rgba(59,130,246,.7);
        }

        .wd-vs-cta {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            min-width: 230px;
            margin-top: 5px;
            padding: 14px 18px;
            border: 1px solid rgba(59,130,246,.30);
            background: rgba(37,99,235,.07);
            color: #93c5fd;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            overflow: hidden;
            transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
        }

            .wd-vs-cta::before {
                content: "";
                position: absolute;
                top: 0;
                left: -120%;
                width: 70%;
                height: 100%;
                background: rgba(255,255,255,.18);
                transform: skewX(-25deg);
                transition: left .55s ease;
            }

            .wd-vs-cta:hover {
                background: #2563eb;
                border-color: #2563eb;
                color: #ffffff;
                transform: translateX(5px);
                box-shadow: 0 12px 30px rgba(37,99,235,.25);
            }

                .wd-vs-cta:hover::before {
                    left: 140%;
                }

            .wd-vs-cta i {
                color: #3b82f6;
                transition: color .3s ease, transform .3s ease;
            }

            .wd-vs-cta:hover i {
                color: #ffffff;
                transform: translate(4px,-3px);
            }

        .wd-vs-bottom {
            display: grid;
            grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
            align-items: center;
            margin-top: 80px;
            padding: 28px 0;
            border-top: 1px solid rgba(255,255,255,.08);
            border-bottom: 1px solid rgba(255,255,255,.08);
        }

        .wd-vs-bottom-item {
            text-align: center;
        }

            .wd-vs-bottom-item strong {
                display: block;
                color: #f8fafc;
                font-size: 24px;
                line-height: 1.2;
                font-weight: 800;
            }

            .wd-vs-bottom-item span {
                display: block;
                margin-top: 5px;
                color: #f8fafc;
                font-size: 14px;
                text-transform: uppercase;
                letter-spacing: 1.2px;
                font-weight: 600;
            }

        .wd-vs-divider {
            width: 1px;
            height: 35px;
            background: rgba(255,255,255,.08);
        }

        @media(max-width:1100px) {
            .wd-video-spotlight;

        {
            padding: 80px 25px 60px;
        }

        .wd-vs-container {
            max-width: 100%;
            padding: 0 20px;
        }

        .wd-vs-main {
            grid-template-columns: 1fr;
            gap: 55px;
        }

        .wd-vs-content {
            max-width: 900px;
            margin: 0 auto;
            width: 100%;
            padding-left: 0;
        }

        .wd-vs-video-info h2 {
            font-size: 38px;
        }

        .wd-vs-glow {
            width: 650px;
            height: 650px;
            left: 50%;
        }

        .wd-video-spotlight::before {
            width: 700px;
        }

        .wd-video-spotlight::after {
            width: 550px;
        }

        }

        @media(max-width:700px) {
            .wd-video-spotlight;

        {
            padding: 60px 15px 45px;
        }

        .wd-vs-container {
            padding: 0 5px;
        }

        .wd-vs-top {
            margin-bottom: 30px;
            padding-bottom: 15px;
        }

        .wd-vs-kicker {
            font-size: 12px;
            letter-spacing: 1.3px;
        }

        .wd-vs-number {
            font-size: 12px;
        }

        .wd-vs-main {
            gap: 40px;
        }

        .wd-vs-video-info {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .wd-vs-small-label {
            font-size: 12px;
        }

        .wd-vs-video-info h2 {
            font-size: 30px;
        }

        .wd-vs-duration {
            font-size: 13px;
        }

        .wd-vs-content {
            padding-left: 0;
        }

        .wd-vs-content-heading {
            margin-bottom: 30px;
        }

            .wd-vs-content-heading > span {
                font-size: 12px;
            }

            .wd-vs-content-heading h3 {
                font-size: 25px;
            }

        .wd-vs-item {
            grid-template-columns: 38px 1px 1fr;
            gap: 14px;
            min-height: 110px;
        }

        .wd-vs-item-number {
            font-size: 13px;
        }

        .wd-vs-item-content h4 {
            font-size: 14px;
        }

        .wd-vs-item-content p {
            font-size: 14px;
            line-height: 1.65;
        }

        .wd-vs-cta {
            width: 100%;
            min-width: 0;
            font-size: 14px;
        }

        .wd-vs-bottom {
            grid-template-columns: repeat(2,1fr);
            gap: 25px;
            margin-top: 50px;
        }

        .wd-vs-divider {
            display: none;
        }

        .wd-vs-bottom-item strong {
            font-size: 22px;
        }

        .wd-vs-bottom-item span {
            font-size: 12px;
        }

        .wd-vs-glow {
            width: 520px;
            height: 520px;
            left: 50%;
            top: 45%;
        }

        .wd-video-spotlight::before {
            width: 600px;
            height: 230px;
        }

        .wd-video-spotlight::after {
            width: 450px;
            height: 180px;
        }

        .wd-vs-noise {
            background-size: 40px 40px;
            opacity: .20;
        }

        }

        @media(max-width:450px) {
            .wd-video-spotlight;

        {
            padding: 50px 10px 40px;
        }

        .wd-vs-container {
            padding: 0;
        }

        .wd-vs-top {
            margin-bottom: 25px;
        }

        .wd-vs-kicker {
            font-size: 10px;
            letter-spacing: 1px;
        }

        .wd-vs-number {
            font-size: 10px;
        }

        .wd-vs-video-corner {
            top: 10px;
            right: 10px;
            padding: 6px 9px;
            font-size: 11px;
        }

        .wd-vs-video-info h2 {
            font-size: 27px;
            letter-spacing: -1px;
        }

        .wd-vs-small-label {
            font-size: 11px;
            letter-spacing: 1.5px;
        }

        .wd-vs-content-heading > span {
            font-size: 11px;
        }

        .wd-vs-content-heading h3 {
            font-size: 22px;
        }

        .wd-vs-item {
            grid-template-columns: 32px 1px 1fr;
            gap: 12px;
        }

        .wd-vs-item-number {
            font-size: 12px;
        }

        .wd-vs-item-content h4 {
            font-size: 14px;
        }

        .wd-vs-item-content p {
            font-size: 14px;
            line-height: 1.65;
        }

        .wd-vs-cta {
            min-height: 48px;
            padding: 13px 16px;
            font-size: 14px;
        }

        .wd-vs-bottom {
            gap: 20px;
        }

        .wd-vs-bottom-item strong {
            font-size: 20px;
        }

        .wd-vs-bottom-item span {
            font-size: 11px;
        }

        .wd-vs-glow {
            width: 400px;
            height: 400px;
            opacity: .75;
        }

        .wd-video-spotlight::before {
            width: 450px;
            height: 170px;
        }

        .wd-video-spotlight::after {
            width: 350px;
            height: 140px;
        }

        }

        .wd-vs-cta:focus-visible {
            outline: 2px solid #60a5fa;
            outline-offset: 4px;
        }

        .wd-vs-video iframe:focus {
            outline: 2px solid #2563eb;
        }

        @media(prefers-reduced-motion:reduce) {
            .wd-vs-kicker span, .wd-vs-item, .wd-vs-cta, .wd-vs-cta::before, .wd-vs-glow, .wd-video-spotlight::before, .wd-video-spotlight::after, .wd-vs-container::before, .wd-vs-container::after;

        {
            animation: none !important;
            transition: none !important;
        }

        }

        .wd-instructor-modern {
            width: 100%;
            padding: 100px 25px;
            background: #f7f9fc;
            overflow: hidden;
            font-family: "Poppins", Arial, sans-serif;
        }

            .wd-instructor-modern *,
            .wd-instructor-modern *::before,
            .wd-instructor-modern *::after {
                box-sizing: border-box;
            }

        .wd-review-container {
            width: 100%;
            max-width: none;
            margin: 0;
            padding: 0;
        }

        .wd-im-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 50px;
        }

        .wd-im-small-title {
            display: block;
            margin-bottom: 12px;
            color: #2563eb;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 2px;
            line-height: 1.4;
        }

        .wd-im-heading h2 {
            margin: 0;
            color: #111827;
            font-size: clamp(44px, 5vw, 72px);
            line-height: .95;
            letter-spacing: -4px;
            font-weight: 800;
        }

        .wd-im-header h2 {
            margin: 0;
            color: #111827;
            font-size: clamp(44px, 5vw, 72px);
            line-height: .95;
            letter-spacing: -4px;
            font-weight: 800;
        }

            .wd-im-header h2 span {
                color: #2563eb;
            }

        .wd-im-header p {
            max-width: 600px;
            margin: 17px 0 0;
            color: #64748b;
            font-size: 14px;
            line-height: 1.7;
            font-weight: 400;
        }

        .wd-im-navigation {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

            .wd-im-navigation button {
                width: 55px;
                height: 55px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 0;
                border: 1px solid #dbe2ea;
                border-radius: 50%;
                background: #ffffff;
                color: #111827;
                font-size: 14px;
                cursor: pointer;
                outline: none;
                transition: border-color .3s ease, background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
            }

                .wd-im-navigation button:hover:not(:disabled) {
                    border-color: #2563eb;
                    background: #2563eb;
                    color: #ffffff;
                    transform: translateY(-4px);
                    box-shadow: 0 12px 25px rgba(37, 99, 235, .20);
                }

                .wd-im-navigation button:disabled {
                    opacity: .3;
                    cursor: not-allowed;
                }

                .wd-im-navigation button:focus-visible {
                    outline: 2px solid #2563eb;
                    outline-offset: 4px;
                }

        .wd-im-viewport {
            width: 100%;
            overflow: hidden;
            padding: 15px 4px 35px;
        }

        .wd-im-track {
            display: flex;
            gap: 22px;
            transition: transform .65s cubic-bezier(.22, .61, .36, 1);
            will-change: transform;
        }

        .wd-im-slide {
            flex: 0 0 calc((100% - 66px) / 4);
            min-width: 0;
        }

        .wd-im-card {
            position: relative;
            min-height: 525px;
            padding: 25px;
            border: 1px solid #e2e8f0;
            border-radius: 26px;
            background: #ffffff;
            overflow: hidden;
            transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
        }

            .wd-im-card:hover {
                transform: translateY(-10px);
                border-color: #bfdbfe;
                box-shadow: 0 25px 60px rgba(15, 23, 42, .10);
            }

        .wd-im-big-number {
            position: absolute;
            top: 12px;
            right: 18px;
            color: #eef2f7;
            font-size: 80px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: -5px;
            pointer-events: none;
            user-select: none;
        }

        .wd-im-photo-wrap {
            position: relative;
            display: flex;
            justify-content: center;
            padding-top: 18px;
            margin-bottom: 28px;
        }

        .wd-im-photo {
            position: relative;
            width: 225px;
            height: 225px;
            overflow: hidden;
            border-radius: 50%;
            border: 9px solid #f1f5f9;
            background: #e2e8f0;
            z-index: 2;
        }

            .wd-im-photo::after {
                content: "";
                position: absolute;
                inset: 0;
                border-radius: 50%;
                border: 1px solid rgba(37, 99, 235, .25);
                pointer-events: none;
            }

            .wd-im-photo img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center top;
                transition: transform .6s ease;
            }

        .wd-im-card:hover .wd-im-photo img {
            transform: scale(1.08);
        }

        .wd-im-online {
            position: absolute;
            bottom: -8px;
            left: 50%;
            z-index: 5;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 8px 14px;
            border-radius: 30px;
            background: #111827;
            color: #ffffff;
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
            box-shadow: 0 8px 20px rgba(15, 23, 42, .18);
        }

            .wd-im-online span {
                width: 7px;
                height: 7px;
                flex: 0 0 7px;
                border-radius: 50%;
                background: #22c55e;
                box-shadow: 0 0 8px rgba(34, 197, 94, .65);
            }

        .wd-im-info {
            text-align: center;
        }

        .wd-im-subject {
            display: block;
            margin-bottom: 8px;
            color: #2563eb;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 1.4px;
            line-height: 1.4;
        }

        .wd-im-info h3 {
            margin: 0;
            color: #111827;
            font-size: 24px;
            line-height: 1.2;
            font-weight: 700;
        }

        .wd-im-info p {
            margin: 8px 0 20px;
            color: #64748b;
            font-size: 14px;
            line-height: 1.65;
            font-weight: 400;
        }

        .wd-im-line {
            width: 45px;
            height: 3px;
            margin: 0 auto 18px;
            border-radius: 10px;
            background: #2563eb;
        }

        .wd-im-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 25px;
        }

            .wd-im-meta span {
                display: flex;
                align-items: center;
                gap: 7px;
                color: #64748b;
                font-size: 14px;
                line-height: 1.5;
                font-weight: 500;
            }

            .wd-im-meta i {
                color: #2563eb;
                font-size: 14px;
            }

            .wd-im-meta span:last-child i {
                color: #f59e0b;
            }

        .wd-im-footer {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 10px;
        }

        .wd-im-progress {
            flex: 1;
            height: 3px;
            border-radius: 10px;
            overflow: hidden;
            background: #e2e8f0;
        }

            .wd-im-progress span {
                display: block;
                width: 50%;
                height: 100%;
                border-radius: 10px;
                background: #2563eb;
                transition: width .5s ease;
            }

        .wd-im-count {
            color: #64748b;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        @media (max-width: 1250px) {
            .wd-im-slide {
                flex: 0 0 calc((100% - 44px) / 3);
            }
        }

        @media (max-width: 950px) {
            .wd-im-slide {
                flex: 0 0 calc((100% - 22px) / 2);
            }
        }

        @media (max-width: 650px) {
            .wd-instructor-modern {
                padding: 70px 15px;
            }

            .wd-im-header {
                align-items: flex-start;
                flex-direction: column;
                gap: 25px;
            }

            .wd-im-small-title {
                font-size: 14px;
            }

            .wd-im-header h2 {
                font-size: 45px;
                letter-spacing: -2px;
            }

            .wd-im-header p {
                font-size: 14px;
                line-height: 1.7;
            }

            .wd-im-navigation {
                align-self: flex-end;
            }

                .wd-im-navigation button {
                    width: 46px;
                    height: 46px;
                    font-size: 14px;
                }

            .wd-im-slide {
                flex: 0 0 100%;
            }

            .wd-im-card {
                min-height: 530px;
                padding: 25px 20px;
            }

            .wd-im-photo {
                width: 235px;
                height: 235px;
            }

            .wd-im-online {
                font-size: 14px;
                padding: 8px 14px;
            }

            .wd-im-subject {
                font-size: 14px;
            }

            .wd-im-info h3 {
                font-size: 24px;
            }

            .wd-im-info p {
                font-size: 14px;
            }

            .wd-im-meta span {
                font-size: 14px;
            }

            .wd-im-count {
                font-size: 14px;
            }
        }

        @media (max-width: 400px) {
            .wd-im-header h2 {
                font-size: 39px;
            }

            .wd-im-photo {
                width: 205px;
                height: 205px;
            }

            .wd-im-card {
                min-height: 500px;
            }

            .wd-im-info h3 {
                font-size: 23px;
            }

            .wd-im-meta {
                gap: 18px;
            }

                .wd-im-meta span {
                    font-size: 14px;
                }
        }

        @media (prefers-reduced-motion: reduce) {
            .wd-im-card,
            .wd-im-photo img,
            .wd-im-track,
            .wd-im-navigation button,
            .wd-im-progress span {
                transition: none !important;
            }
        }

      

        .wd-student-review-bottom-control {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 28px;
            margin-top: 5px;
        }

        .wd-student-review-dots {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .wd-student-review-dot {
            display: block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #cbd5e1;
            transition: width .35s ease, background .35s ease, transform .35s ease;
        }

            .wd-student-review-dot.active {
                width: 24px;
                border-radius: 20px;
                background: #2563eb;
            }

        .wd-student-review-counter {
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }

            .wd-student-review-counter strong {
                color: #2563eb;
                font-size: 13px;
                font-weight: 800;
                letter-spacing: .3px;
            }

            .wd-student-review-counter > span:last-child {
                color: #64748b;
                font-size: 12px;
                font-weight: 600;
            }

        .wd-student-review-counter-line {
            display: block;
            width: 45px;
            height: 1px;
            background: #cbd5e1;
            position: relative;
        }

            .wd-student-review-counter-line::after {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                width: 18px;
                height: 2px;
                background: #2563eb;
                transform: translateY(-.5px);
            }

        @media (max-width: 480px) {

            .wd-student-review-bottom-control {
                gap: 18px;
                margin-top: 3px;
            }

            .wd-student-review-dots {
                gap: 5px;
            }

            .wd-student-review-dot {
                width: 6px;
                height: 6px;
            }

                .wd-student-review-dot.active {
                    width: 19px;
                }

            .wd-student-review-counter {
                gap: 7px;
            }

                .wd-student-review-counter strong {
                    font-size: 11px;
                }

                .wd-student-review-counter > span:last-child {
                    font-size: 10px;
                }

            .wd-student-review-counter-line {
                width: 30px;
            }

                .wd-student-review-counter-line::after {
                    width: 13px;
                }
        }

        .wd-student-review-section {
            width: 100%;
            padding: 90px 20px;
           background: #e5effb;
            overflow: hidden;
            box-sizing: border-box;
            font-family: "Poppins", sans-serif;
        }

            .wd-student-review-section *,
            .wd-student-review-section *::before,
            .wd-student-review-section *::after {
                box-sizing: border-box;
            }

        .wd-student-review-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .wd-student-review-heading {
            text-align: center;
            margin-bottom: 55px;
        }

        .wd-student-review-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 17px;
            border-radius: 50px;
            background: #ffffff;
            border: 1px solid #dbeafe;
            color: #2563eb;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.4px;
            margin-bottom: 18px;
            box-shadow: 0 5px 20px rgba(37,99,235,.05);
        }

            .wd-student-review-badge i {
                font-size: 12px;
            }

        .wd-student-review-heading h2 {
            margin: 0;
            color: #111827;
            font-size: clamp(34px, 4vw, 52px);
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -1.8px;
        }

            .wd-student-review-heading h2 span {
                color: #2563eb;
            }

        .wd-student-review-heading p {
            max-width: 720px;
            margin: 18px auto 0;
            color: #6b7280;
            font-size: 15px;
            line-height: 1.8;
        }

        .wd-student-review-carousel {
            position: relative;
            width: 100%;
        }

        .wd-student-review-viewport {
            width: 100%;
            overflow: hidden;
            padding: 15px 4px 25px;
        }

        .wd-student-review-track {
            display: flex;
            gap: 24px;
            width: max-content;
            transition: transform .55s cubic-bezier(.22,.61,.36,1);
            will-change: transform;
        }

        .wd-student-review-card {
            width: 420px;
            flex: 0 0 420px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 10px 35px rgba(15,23,42,.07);
            transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
        }

            .wd-student-review-card:hover {
                transform: translateY(-7px);
                border-color: #bfdbfe;
                box-shadow: 0 20px 50px rgba(37,99,235,.12);
            }

        .wd-student-review-video {
            position: relative;
            width: 100%;
            height: 235px;
            overflow: hidden;
            background: #0f172a;
        }

            .wd-student-review-video iframe {
                width: 100%;
                height: 100%;
                display: block;
                border: 0;
            }

        .wd-student-review-video-label {
            position: absolute;
            left: 14px;
            bottom: 14px;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 7px 12px;
            border-radius: 50px;
            background: rgba(17,24,39,.88);
            color: #ffffff;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: .3px;
            pointer-events: none;
        }

            .wd-student-review-video-label i {
                color: #60a5fa;
                font-size: 12px;
            }

        .wd-student-review-content {
            padding: 22px 23px 24px;
        }

        .wd-student-review-rating {
            display: flex;
            gap: 4px;
            margin-bottom: 12px;
        }

            .wd-student-review-rating i {
                color: #f59e0b;
                font-size: 13px;
            }

        .wd-student-review-text {
            min-height: 70px;
            margin: 0 0 20px;
            color: #4b5563;
            font-size: 13px;
            line-height: 1.8;
            font-weight: 400;
        }

        .wd-student-review-student {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 17px;
            border-top: 1px solid #eef2f7;
        }

        .wd-student-review-avatar {
            width: 42px;
            height: 42px;
            flex: 0 0 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #eff6ff;
            border: 1px solid #dbeafe;
            color: #2563eb;
            font-size: 12px;
            font-weight: 800;
        }

        .wd-student-review-student strong {
            display: block;
            color: #111827;
            font-size: 13px;
            font-weight: 700;
        }

        .wd-student-review-student span {
            display: block;
            margin-top: 3px;
            color: #9ca3af;
            font-size: 10px;
        }

        .wd-student-review-arrow {
            position: absolute;
            top: 47%;
            transform: translateY(-50%);
            width: 52px;
            height: 52px;
            padding: 0;
            border: 1px solid #dbe3ef;
            border-radius: 50%;
            background: #ffffff;
            color: #2563eb;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 20;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(15,23,42,.15);
            transition: all .3s ease;
        }

        .wd-student-review-prev {
            left: -20px;
        }

        .wd-student-review-next {
            right: -20px;
        }

        .wd-student-review-arrow:hover {
            background: #2563eb;
            border-color: #2563eb;
            color: #ffffff;
            transform: translateY(-50%) scale(1.08);
            box-shadow: 0 14px 35px rgba(37,99,235,.25);
        }

        .wd-student-review-arrow:active {
            transform: translateY(-50%) scale(.92);
        }

        .wd-student-review-arrow:focus {
            outline: none;
        }

        .wd-student-review-controls {
            display: flex;
            justify-content: center;
            margin-top: 5px;
        }

        .wd-student-review-progress {
            width: 180px;
            height: 4px;
            overflow: hidden;
            border-radius: 10px;
            background: #dbeafe;
        }

        .wd-student-review-progress-bar {
            display: block;
            width: 33.33%;
            height: 100%;
            border-radius: 10px;
            background: #2563eb;
            transition: width .45s ease;
        }

        .wd-student-review-bottom {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 50px;
            padding-top: 32px;
            border-top: 1px solid #e5e7eb;
        }

        .wd-student-review-stat {
            min-width: 190px;
            text-align: center;
        }

            .wd-student-review-stat strong {
                display: block;
                color: #111827;
                font-size: 28px;
                line-height: 1.2;
                font-weight: 800;
            }

                .wd-student-review-stat strong span {
                    color: #9ca3af;
                    font-size: 15px;
                    font-weight: 600;
                }

            .wd-student-review-stat small {
                display: block;
                margin-top: 5px;
                color: #6b7280;
                font-size: 11px;
            }

        .wd-student-review-mini-stars {
            display: flex;
            justify-content: center;
            gap: 3px;
            margin-top: 6px;
        }

            .wd-student-review-mini-stars i {
                color: #f59e0b;
                font-size: 10px;
            }

        .wd-student-review-divider {
            width: 1px;
            height: 45px;
            background: #e5e7eb;
        }

        @media (max-width: 1100px) {

            .wd-student-review-card {
                width: 380px;
                flex-basis: 380px;
            }
        }

        @media (max-width: 768px) {

            .wd-student-review-section {
                padding: 65px 15px;
            }

            .wd-student-review-heading {
                margin-bottom: 35px;
            }

                .wd-student-review-heading h2 {
                    font-size: 34px;
                }

                .wd-student-review-heading p {
                    padding: 0 10px;
                    font-size: 13px;
                }

            .wd-student-review-card {
                width: 330px;
                flex-basis: 330px;
                border-radius: 19px;
            }

            .wd-student-review-video {
                height: 190px;
            }

            .wd-student-review-arrow {
                width: 43px;
                height: 43px;
                font-size: 12px;
            }

            .wd-student-review-prev {
                left: 3px;
            }

            .wd-student-review-next {
                right: 3px;
            }

            .wd-student-review-bottom {
                margin-top: 35px;
            }

            .wd-student-review-stat {
                min-width: 0;
                flex: 1;
            }

                .wd-student-review-stat strong {
                    font-size: 22px;
                }

                .wd-student-review-stat small {
                    font-size: 9px;
                }
        }

        @media (max-width: 480px) {

            .wd-student-review-section {
                padding: 55px 10px;
            }

            .wd-student-review-heading h2 {
                font-size: 29px;
                letter-spacing: -1px;
            }

            .wd-student-review-badge {
                font-size: 9px;
                letter-spacing: 1px;
            }

            .wd-student-review-card {
                width: 285px;
                flex-basis: 285px;
            }

            .wd-student-review-video {
                height: 165px;
            }

            .wd-student-review-content {
                padding: 18px;
            }

            .wd-student-review-text {
                font-size: 12px;
                min-height: 75px;
            }

            .wd-student-review-arrow {
                width: 37px;
                height: 37px;
                font-size: 10px;
            }

            .wd-student-review-prev {
                left: 1px;
            }

            .wd-student-review-next {
                right: 1px;
            }

            .wd-student-review-divider {
                height: 35px;
            }

            .wd-student-review-stat strong {
                font-size: 18px;
            }

            .wd-student-review-stat small {
                font-size: 8px;
            }
        }

        @media (prefers-reduced-motion: reduce) {

            .wd-student-review-track,
            .wd-student-review-arrow,
            .wd-student-review-card,
            .wd-student-review-progress-bar {
                transition: none !important;
            }
        }

    
.wdfx-faq {
    position: relative;
    width: 100%;
    padding: 50px 20px 55px;
    overflow: hidden;
    background: #ffffff;
    color: #0f172a;
    font-family: "Poppins", sans-serif;
    isolation: isolate;
}

.wdfx-faq-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255,255,255,.95) 0,
            rgba(255,255,255,.65) 18%,
            transparent 45%
        ),
        radial-gradient(
            circle at 85% 15%,
            rgba(255,255,255,.90) 0,
            rgba(255,255,255,.55) 20%,
            transparent 45%
        ),
        radial-gradient(
            circle at 75% 85%,
            rgba(255,255,255,.85) 0,
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fdfefe 50%,
            #f8fafc 100%
        );
}

.wdfx-faq-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    opacity: .14;
    animation: wdfxFaqFloat 9s ease-in-out infinite;
}

.wdfx-faq-glow-1 {
    width: 420px;
    height: 420px;
    background: #60a5fa;
    left: -220px;
    top: 70px;
}

.wdfx-faq-glow-2 {
    width: 380px;
    height: 380px;
    background: #818cf8;
    right: -190px;
    bottom: 0;
    animation-delay: 3s;
}

@keyframes wdfxFaqFloat {
    0%,100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.08);
    }
}

.wdfx-faq-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.wdfx-faq-intro {
    position: relative;
    width: 100%;
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.wdfx-faq-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #2563eb;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 22px;
}

.wdfx-faq-label span {
    width: 38px;
    height: 2px;
    display: inline-block;
    background: #2563eb;
    box-shadow: 0 0 12px rgba(37,99,235,.35);
}

.wdfx-faq-intro h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 800;
}

.wdfx-faq-intro h2 strong {
    display: block;
    color: #2563eb;
    font-weight: 800;
}

.wdfx-faq-intro > p {
    max-width: 650px;
    margin: 25px auto 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.9;
}

.wdfx-faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wdfx-faq-item {
    position: relative;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(15,23,42,.035);
    transition:
        border-color .35s ease,
        box-shadow .35s ease,
        transform .35s ease;
}

.wdfx-faq-item:hover {
    transform: translateX(5px);
    border-color: #bfdbfe;
    box-shadow: 0 12px 30px rgba(37,99,235,.08);
}

.wdfx-faq-item.active {
    border-color: #93c5fd;
    box-shadow:
        0 15px 40px rgba(37,99,235,.10),
        inset 4px 0 0 #2563eb;
}

.wdfx-faq-question {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #0f172a;
    display: grid;
    grid-template-columns: 42px 1fr 40px;
    align-items: center;
    gap: 15px;
    padding: 21px 20px;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.wdfx-faq-number {
    color: #94a3b8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.wdfx-faq-item.active .wdfx-faq-number {
    color: #2563eb;
}

.wdfx-faq-question-text {
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    transition: .3s ease;
}

.wdfx-faq-item.active .wdfx-faq-question-text {
    color: #2563eb;
}

.wdfx-faq-icon {
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    transition: .45s cubic-bezier(.2,.8,.2,1);
}

.wdfx-faq-icon i {
    font-size: 10px;
    transition: .4s ease;
}

.wdfx-faq-item.active .wdfx-faq-icon {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    transform: rotate(180deg);
    box-shadow: 0 6px 20px rgba(37,99,235,.25);
}

.wdfx-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .5s cubic-bezier(.2,.8,.2,1);
}

.wdfx-faq-answer > div {
    overflow: hidden;
    padding: 0 78px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.9;
    opacity: 0;
    transition:
        opacity .3s ease,
        padding .5s ease;
}

.wdfx-faq-item.active .wdfx-faq-answer {
    grid-template-rows: 1fr;
}

.wdfx-faq-item.active .wdfx-faq-answer > div {
    padding-bottom: 23px;
    opacity: 1;
}

.wdfx-faq-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    margin-top: 65px;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
}

.wdfx-faq-bottom i {
    color: #2563eb;
}

@media (max-width: 900px) {
    .wdfx-faq {
        padding: 85px 20px 70px;
    }

    .wdfx-faq-container {
        width: 100%;
        max-width: 850px;
    }

    .wdfx-faq-intro {
        margin-bottom: 45px;
    }
}

@media (max-width: 600px) {
    .wdfx-faq {
        padding: 75px 15px 65px;
    }

    .wdfx-faq-intro {
        margin-bottom: 35px;
    }

    .wdfx-faq-label {
        font-size: 8px;
        letter-spacing: 2px;
        gap: 8px;
    }

    .wdfx-faq-label span {
        width: 25px;
    }

    .wdfx-faq-intro h2 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .wdfx-faq-intro > p {
        font-size: 12px;
        line-height: 1.8;
        margin-top: 20px;
    }

    .wdfx-faq-question {
        grid-template-columns: 30px 1fr 34px;
        gap: 10px;
        padding: 18px 15px;
    }

    .wdfx-faq-question-text {
        font-size: 12px;
    }

    .wdfx-faq-icon {
        width: 30px;
        height: 30px;
    }

    .wdfx-faq-answer > div {
        padding-left: 55px;
        padding-right: 20px;
        font-size: 11px;
    }

    .wdfx-faq-bottom {
        margin-top: 45px;
        gap: 9px;
        font-size: 8px;
        letter-spacing: 3px;
    }
}

  
        .wdfx-events,
        .wdfx-events * {
            box-sizing: border-box;
        }

        .wdfx-events {
            position: relative;
            width: 100%;
            padding: 90px 0 100px;
            background: #ffffff;
            overflow: hidden;
            font-family: 'Poppins',Arial,sans-serif;
            color: #0f172a;
        }

        .wdfx-events-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image: linear-gradient( rgba(37,99,235,.035) 1px, transparent 1px ), linear-gradient( 90deg, rgba(37,99,235,.035) 1px, transparent 1px );
            background-size: 55px 55px;
        }

        .wdfx-events-container {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: none;
            margin: 0;
            padding: 0;
        }

        .wdfx-events-header {
            max-width: 760px;
            margin: 0 auto 55px;
            text-align: center;
        }

        .wdfx-events-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            color: #2563eb;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 3px;
        }

            .wdfx-events-kicker:before,
            .wdfx-events-kicker:after {
                content: "";
                width: 28px;
                height: 2px;
                background: #2563eb;
            }

        .wdfx-events-header h2 {
            margin: 0;
            color: #0f172a;
            font-size: 48px;
            line-height: 1.12;
            font-weight: 700;
            letter-spacing: -1.5px;
        }

            .wdfx-events-header h2 span {
                display: block;
                color: #2563eb;
            }

        .wdfx-events-header p {
            margin: 20px auto 0;
            max-width: 650px;
            color: #64748b;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.8;
        }

        .wdfx-events-grid {
            display: grid;
            grid-template-columns: repeat(3,minmax(0,1fr));
            gap: 28px;
        }

        .wdfx-event-card {
            position: relative;
            display: flex;
            flex-direction: column;
            min-width: 0;
            background: #ffffff;
            border: 1px solid #e5eaf2;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 45px rgba(15,23,42,.07);
            transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
        }

            .wdfx-event-card:hover {
                transform: translateY(-10px);
                border-color: #bfdbfe;
                box-shadow: 0 25px 60px rgba(37,99,235,.15);
            }

        .wdfx-event-image {
            position: relative;
            width: 100%;
            height: 245px;
            overflow: hidden;
            background: #eaf2ff;
        }

            .wdfx-event-image img {
                width: 100%;
                height: 100%;
                display: block;
                object-fit: cover;
                transition: transform .7s cubic-bezier(.2,.8,.2,1);
            }

        .wdfx-event-card:hover .wdfx-event-image img {
            transform: scale(1.08);
        }

        .wdfx-event-image-overlay {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: linear-gradient( to bottom, rgba(15,23,42,.03), rgba(15,23,42,.45) );
        }

        .wdfx-event-date {
            position: absolute;
            left: 18px;
            bottom: 18px;
            width: 70px;
            height: 78px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            border-radius: 14px;
            box-shadow: 0 12px 30px rgba(15,23,42,.20);
        }

            .wdfx-event-date small {
                color: #2563eb;
                font-size: 11px;
                font-weight: 700;
                letter-spacing: 1.5px;
            }

            .wdfx-event-date strong {
                color: #0f172a;
                font-size: 30px;
                line-height: 30px;
                font-weight: 700;
            }

            .wdfx-event-date span {
                color: #64748b;
                font-size: 10px;
                font-weight: 500;
            }

        .wdfx-event-status {
            position: absolute;
            top: 18px;
            right: 18px;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 13px;
            background: #ffffff;
            border-radius: 30px;
            color: #2563eb;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(0,0,0,.12);
        }

            .wdfx-event-status i {
                color: #22c55e;
                font-size: 6px;
            }

        .wdfx-event-content {
            display: flex;
            flex-direction: column;
            flex: 1;
            padding: 26px;
        }

        .wdfx-event-meta {
            display: flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 12px;
            color: #2563eb;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .8px;
            line-height: 1.4;
        }

            .wdfx-event-meta i {
                width: 4px;
                height: 4px;
                flex: 0 0 4px;
                border-radius: 50%;
                background: #94a3b8;
            }

        .wdfx-event-content h3 {
            margin: 0;
            color: #0f172a;
            font-size: 22px;
            line-height: 1.35;
            font-weight: 700;
            letter-spacing: -.3px;
        }

        .wdfx-event-content > p {
            margin: 13px 0 22px;
            color: #64748b;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.75;
        }

        .wdfx-event-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            padding: 19px 0;
            border-top: 1px solid #edf1f6;
            border-bottom: 1px solid #edf1f6;
        }

        .wdfx-event-detail {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }

        .wdfx-event-icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #eff6ff;
            border: 1px solid #dbeafe;
            border-radius: 9px;
            color: #2563eb;
            font-size: 14px;
            transition: background .3s ease, border-color .3s ease, transform .3s ease;
        }

        .wdfx-event-card:hover .wdfx-event-icon {
            background: #dbeafe;
            border-color: #bfdbfe;
            transform: translateY(-2px);
        }

        .wdfx-event-detail-text {
            min-width: 0;
        }

            .wdfx-event-detail-text small {
                display: block;
                margin-bottom: 3px;
                color: #94a3b8;
                font-size: 10px;
                font-weight: 500;
                line-height: 1.3;
                text-transform: uppercase;
                letter-spacing: .6px;
            }

            .wdfx-event-detail-text span {
                display: block;
                overflow: hidden;
                color: #334155;
                font-size: 14px;
                font-weight: 500;
                line-height: 1.45;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

        .wdfx-event-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-top: auto;
            padding-top: 20px;
        }

        .wdfx-event-online {
            display: flex;
            align-items: center;
            gap: 7px;
            color: #64748b;
            font-size: 12px;
            font-weight: 500;
        }

            .wdfx-event-online i {
                color: #2563eb;
                font-size: 13px;
            }

        .wdfx-event-readmore {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 20px;
            min-width: 130px;
            background: #2563eb;
            color: #fff !important;
            border: 1px solid #2563eb;
            border-radius: 10px;
            font-family: 'Poppins',Arial,sans-serif;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none !important;
            overflow: hidden;
            isolation: isolate;
            transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
        }

            .wdfx-event-readmore::before {
                content: "";
                position: absolute;
                top: 0;
                left: -120%;
                width: 80%;
                height: 100%;
                background: rgba(255,255,255,.25);
                transform: skewX(-25deg);
                transition: left .55s ease;
                z-index: -1;
            }

            .wdfx-event-readmore:hover {
                background: #1d4ed8;
                transform: translateY(-3px);
                box-shadow: 0 10px 25px rgba(37,99,235,.28), 0 4px 8px rgba(15,23,42,.08);
            }

                .wdfx-event-readmore:hover::before {
                    left: 130%;
                }

            .wdfx-event-readmore i {
                font-size: 12px;
                transition: transform .35s ease, margin-left .35s ease;
            }

            .wdfx-event-readmore:hover i {
                transform: translateX(5px);
            }

            .wdfx-event-readmore:active {
                transform: translateY(-1px) scale(.97);
                box-shadow: 0 5px 12px rgba(37,99,235,.2);
            }

        @media(max-width:1150px) {
            .wdfx-events-grid;

        {
            grid-template-columns: repeat(2,minmax(0,1fr));
        }

        }

        @media(max-width:750px) {
            .wdfx-events;

        {
            padding: 70px 0;
        }

        .wdfx-events-container {
            padding: 0 18px;
        }

        .wdfx-events-header {
            margin-bottom: 40px;
        }

            .wdfx-events-header h2 {
                font-size: 36px;
            }

        .wdfx-events-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .wdfx-event-image {
            height: 230px;
        }

        }

        @media(max-width:480px) {
            .wdfx-events-header h2;

        {
            font-size: 30px;
        }

        .wdfx-event-content {
            padding: 21px;
        }

        .wdfx-event-details {
            grid-template-columns: 1fr;
        }

        .wdfx-event-bottom {
            flex-direction: column;
            align-items: stretch;
        }

        .wdfx-event-readmore {
            width: 100%;
        }

        }
          

.wd-online-video {
    position: relative;
    width: 100%;
    padding: 105px 25px 110px;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
    font-family: "Poppins", Arial, sans-serif;
}

.wd-online-video-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.wd-online-video-bg {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
    opacity: .45;
}

.wd-online-video-bg-1 {
    width: 380px;
    height: 380px;
    top: -180px;
    left: -120px;
    background: rgba(37, 99, 235, .08);
    box-shadow: 0 0 100px rgba(37, 99, 235, .10);
    animation: wdOnlineFloatOne 9s ease-in-out infinite;
}

.wd-online-video-bg-2 {
    width: 320px;
    height: 320px;
    right: -100px;
    bottom: -130px;
    background: rgba(14, 165, 233, .07);
    box-shadow: 0 0 100px rgba(14, 165, 233, .08);
    animation: wdOnlineFloatTwo 11s ease-in-out infinite;
}

.wd-online-video-grid {
    position: absolute;
    inset: 0;
    opacity: .45;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(15, 23, 42, .035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 23, 42, .035) 1px,
            transparent 1px
        );
    background-size: 45px 45px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 20%,
        black 80%,
        transparent
    );
}

.wd-online-video-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px;
}

.wd-online-video-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #2563eb;
    margin-bottom: 14px;
}

.wd-online-video-label::before,
.wd-online-video-label::after {
    content: "";
    width: 24px;
    height: 2px;
    background: #2563eb;
    border-radius: 10px;
}

.wd-online-video-heading h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2.5px;
    color: #111827;
}

.wd-online-video-heading h2 span {
    color: #2563eb;
}

.wd-online-video-heading p {
    max-width: 650px;
    margin: 20px auto 0;
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
}

.wd-online-video-wrapper {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
}

.wd-online-video-wrapper::before {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: -20px;
    height: 70px;
    background: rgba(37, 99, 235, .12);
    filter: blur(35px);
    border-radius: 50%;
    z-index: -1;
}

.wd-online-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111827;
    border: 10px solid #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(15, 23, 42, .08),
        0 25px 70px rgba(15, 23, 42, .14);
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.wd-online-video-frame:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(37, 99, 235, .12),
        0 35px 90px rgba(15, 23, 42, .18);
}

.wd-online-video-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 14px;
}

.wd-online-video-frame::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    width: 90px;
    height: 90px;
    border-top: 3px solid #2563eb;
    border-left: 3px solid #2563eb;
    border-radius: 15px 0 0 0;
    pointer-events: none;
    z-index: 4;
}

.wd-online-video-frame::after {
    content: "";
    position: absolute;
    right: -3px;
    bottom: -3px;
    width: 90px;
    height: 90px;
    border-right: 3px solid #2563eb;
    border-bottom: 3px solid #2563eb;
    border-radius: 0 0 15px 0;
    pointer-events: none;
    z-index: 4;
}

.wd-online-video-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    margin-top: 45px;
}

.wd-online-video-stat {
    text-align: center;
}

.wd-online-video-stat strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #111827;
}

.wd-online-video-stat span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    letter-spacing: .4px;
}

.wd-online-video-line {
    width: 1px;
    height: 35px;
    background: #dbe3ef;
}

@keyframes wdOnlineFloatOne {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(35px, 25px);
    }
}

@keyframes wdOnlineFloatTwo {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, -25px);
    }
}

@media (max-width: 900px) {

    .wd-online-video {
        padding: 80px 20px 85px;
    }

    .wd-online-video-heading {
        margin-bottom: 38px;
    }

    .wd-online-video-bottom {
        gap: 25px;
    }

}

@media (max-width: 600px) {

    .wd-online-video {
        padding: 65px 14px 70px;
    }

    .wd-online-video-heading h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .wd-online-video-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .wd-online-video-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .wd-online-video-frame {
        border-width: 10px;
        border-radius: 18px;
    }

    .wd-online-video-frame iframe {
        border-radius: 8px;
    }

    .wd-online-video-frame::before,
    .wd-online-video-frame::after {
        width: 55px;
        height: 55px;
    }

    .wd-online-video-bottom {
        gap: 12px;
        margin-top: 32px;
    }

    .wd-online-video-stat strong {
        font-size: 14px;
    }

    .wd-online-video-stat span {
        font-size: 9px;
    }

    .wd-online-video-line {
        height: 28px;
    }

}

.wd-course-pro,
.wd-course-pro * {
    box-sizing: border-box;
}

.wd-course-pro {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 820px;
    overflow: hidden;
    background: #030712;
    color: #ffffff;
    font-family: "Poppins", Arial, sans-serif;
    isolation: isolate;
}

.wd-ktm-pro-grid {
    position: absolute;
    inset: 0;
    opacity: .11;
    background-image:
        linear-gradient(#ffffff 1px, transparent 1px),
        linear-gradient(90deg, #ffffff 1px, transparent 1px);
    background-size: 75px 75px;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 20%,
        black 80%,
        transparent
    );
    pointer-events: none;
}

.wd-course-pro-bg {
    position: absolute;
    inset: 0;
    z-index: -10;
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(30,64,175,.42) 0%,
            rgba(30,64,175,.20) 18%,
            rgba(15,23,42,.05) 42%,
            transparent 65%
        ),
        radial-gradient(
            circle at 20% 10%,
            rgba(37,99,235,.16),
            transparent 35%
        ),
        #030712;
    overflow: hidden;
    pointer-events: none;
}

.wd-course-pro-bg::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    right: -360px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(59,130,246,.16) 0%,
            rgba(37,99,235,.09) 28%,
            rgba(30,64,175,.035) 48%,
            transparent 70%
        );
    filter: blur(15px);
    pointer-events: none;
}

.wd-course-pro-bg::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -220px;
    bottom: -250px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(37,99,235,.15),
            transparent 70%
        );
    filter: blur(20px);
    pointer-events: none;
}

.wd-course-pro-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            transparent 36%,
            rgba(59,130,246,.025) 37%,
            rgba(96,165,250,.08) 50%,
            rgba(59,130,246,.025) 63%,
            transparent 64%
        );
    pointer-events: none;
}

.wd-course-pro-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 58px,
            rgba(96,165,250,.018) 59px,
            transparent 60px
        );
    opacity: .65;
    pointer-events: none;
}

.wd-course-pro-grid::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at center,
            transparent 25%,
            rgba(2,6,23,.18) 58%,
            rgba(2,6,23,.82) 100%
        );
    pointer-events: none;
}

.wd-course-pro::before {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    border: 1px solid rgba(96,165,250,.10);
    border-radius: 50%;
    box-shadow:
        0 0 0 45px rgba(59,130,246,.018),
        0 0 0 90px rgba(59,130,246,.012),
        0 0 80px rgba(37,99,235,.12);
    pointer-events: none;
}

.wd-course-pro-glow-1 {
    position: absolute;
    width: 420px;
    height: 420px;
    right: 13%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    border: 1px solid rgba(147,197,253,.07);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(59,130,246,.14),
            rgba(37,99,235,.045) 45%,
            transparent 70%
        );
    filter: blur(2px);
    pointer-events: none;
}

.wd-course-pro-glow-1::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -80px;
    width: 2px;
    height: calc(100% + 160px);
    transform: rotate(8deg);
    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(96,165,250,.25),
            transparent
        );
    filter: blur(1px);
}

.wd-course-pro-glow-2 {
    position: absolute;
    width: 240px;
    height: 240px;
    left: 32%;
    top: -140px;
    z-index: 1;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(59,130,246,.10),
            transparent 68%
        );
    filter: blur(25px);
    pointer-events: none;
}

.wd-course-pro-line {
    position: absolute;
    top: 0;
    right: 13%;
    width: 1px;
    height: 100%;
    z-index: 4;
    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(96,165,250,.18) 25%,
            rgba(96,165,250,.07) 50%,
            rgba(96,165,250,.18) 75%,
            transparent
        );
    pointer-events: none;
}

.wd-course-pro-line::before {
    content: "";
    position: absolute;
    top: 25%;
    right: -35px;
    width: 35px;
    height: 1px;
    background: rgba(96,165,250,.22);
}

.wd-course-pro-line::after {
    content: "";
    position: absolute;
    bottom: 25%;
    right: -55px;
    width: 55px;
    height: 1px;
    background: rgba(96,165,250,.12);
}

.wd-course-pro-number {
    position: absolute;
    left: -30px;
    bottom: -120px;
    z-index: 1;
    font-size: clamp(180px, 30vw, 520px);
    line-height: .8;
    font-weight: 900;
    letter-spacing: -30px;
    color: rgba(59,130,246,.025);
    pointer-events: none;
}

.wd-course-pro-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    min-height: 820px;
    display: grid;
    grid-template-columns: 44% 56%;
    align-items: start;
    padding: 75px 4vw 70px 5vw;
}

.wd-course-pro-content {
    position: relative;
    z-index: 20;
    width: 100%;
    padding-right: 35px;
    padding-top: 0;
}

.wd-course-pro-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 600;
    letter-spacing: 3px;
    color: #bfdbfe;
    white-space: nowrap;
}

.wd-course-pro-eyebrow span {
    width: 42px;
    height: 2px;
    background: #3b82f6;
    box-shadow: 0 0 15px rgba(59,130,246,.8);
}

.wd-course-pro-heading {
    position: relative;
    z-index: 50;
    width: calc(100% + 350px);
    margin-right: -350px;
}

.wd-course-pro-heading h2 {
    position: relative;
    z-index: 55;
    width: max-content;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    font-size: clamp(18px, 2.15vw, 32px);
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
}

.wd-course-pro-heading h2 strong {
    font-weight: 900;
    color: #60a5fa;
}

.wd-course-pro-ktm {
    position: relative;
    z-index: 35;
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: 620px;
    margin-top: 38px;
    padding: 24px 22px 24px 20px;
    border-left: 4px solid #3b82f6;
    background: rgba(15,23,42,.72);
    box-shadow:
        0 20px 50px rgba(0,0,0,.28),
        inset 0 0 30px rgba(59,130,246,.025);
    backdrop-filter: blur(8px);
    transition: .3s ease;
}

.wd-course-pro-ktm:hover {
    transform: translateX(6px);
    border-left-color: #60a5fa;
    background: rgba(20,35,70,.82);
    box-shadow:
        0 25px 60px rgba(0,0,0,.35),
        0 0 35px rgba(37,99,235,.08);
}

.wd-course-pro-ktm-number {
    align-self: flex-start;
    padding-top: 3px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 700;
    color: rgba(147,197,253,.45);
}

.wd-course-pro-ktm-content {
    flex: 1;
    min-width: 0;
}

.wd-course-pro-ktm-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.wd-course-pro-ktm-top span {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #93c5fd;
}

.wd-course-pro-ktm-top i {
    width: 28px;
    height: 1px;
    background: #93c5fd;
}

.wd-course-pro-ktm-top small {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 1.5px;
    color: #93c5fd;
    font-weight: 400;
}

.wd-course-pro-ktm h3 {
    margin: 0;
    font-size: 38px;
    line-height: 1.3;
    font-weight: 300;
    letter-spacing: -1.5px;
    color: #fff;
}

.wd-course-pro-ktm h3 strong {
    font-weight: 900;
    color: #60a5fa;
}

.wd-course-pro-ktm p {
    max-width: 480px;
    margin: 14px 0 0;
    font-size: 15px;
    line-height: 2;
    color: #dbeafe;
    font-weight: 400;
}

.wd-course-pro-ktm-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1px solid rgba(96,165,250,.28);
    color: #93c5fd;
    font-size: 20px;
    transition: .3s ease;
}

.wd-course-pro-ktm:hover .wd-course-pro-ktm-arrow {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    transform: rotate(45deg);
    box-shadow: 0 0 25px rgba(37,99,235,.35);
}

.wd-course-pro-description {
    position: relative;
    z-index: 30;
    width: 100%;
    max-width: 560px;
    margin: 34px 0 38px;
    font-size: 15px;
    line-height: 2;
    color: #dbeafe;
    font-weight: 400;
}

.wd-course-pro-features {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
    margin-bottom: 38px;
}

.wd-course-pro-feature {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    min-width: 145px;
}

.wd-course-pro-feature > b {
    font-size: 14px;
    line-height: 1.6;
    color: #60a5fa;
}

.wd-course-pro-feature div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.wd-course-pro-feature strong {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 1.3px;
    color: #fff;
}

.wd-course-pro-feature span {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 1px;
    color: #dbeafe;
    font-weight: 400;
}

.wd-course-pro-button {
    position: relative;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    min-width: 200px;
    padding: 15px 15px 15px 20px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: 1.7px;
    box-shadow: 0 15px 35px rgba(37,99,235,.22);
    transition: .3s ease;
}

.wd-course-pro-button span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    background: #fff;
    color: #2563eb;
    transition: .3s ease;
}

.wd-course-pro-button:hover {
    background: #1d4ed8;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(37,99,235,.35);
}

.wd-course-pro-button:hover span {
    transform: rotate(45deg);
}

.wd-course-pro-visual {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wd-course-pro-video {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background: #000;
    border: 10px solid #fff;
    border-radius: 0;
    box-shadow:
        0 25px 70px rgba(0,0,0,.8),
        12px 18px 0 rgba(37,99,235,.12),
        0 0 60px rgba(37,99,235,.12);
}

.wd-course-pro-video-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.wd-course-pro-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            rgba(2,6,23,.28),
            transparent 28%,
            transparent 60%,
            rgba(2,6,23,.75)
        );
}

.wd-course-pro-video-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 6;
    pointer-events: none;
}

.wd-course-pro-video-corner-tl {
    left: 20px;
    top: 20px;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
}

.wd-course-pro-video-corner-br {
    right: 20px;
    bottom: 20px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.wd-course-pro-video-top {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 7;
    padding: 8px 12px;
    border: 1px solid rgba(96,165,250,.40);
    background: rgba(2,6,23,.60);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 2px;
    color: #bfdbfe;
}

.wd-course-pro-video-text {
    position: absolute;
    left: 35px;
    bottom: 42px;
    z-index: 7;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.wd-course-pro-video-text small {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #93c5fd;
}

.wd-course-pro-video-text strong {
    font-size: clamp(38px, 4vw, 64px);
    line-height: .98;
    font-weight: 900;
    letter-spacing: -3px;
    color: #fff;
}

.wd-course-pro-video-text span {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 4px;
    color: #bfdbfe;
}

.wd-course-pro-video-bottom {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 1.5px;
    color: #fff;
}

.wd-course-pro-video-bottom span {
    width: 25px;
    height: 1px;
    background: #fff;
}

.wd-course-pro-side-text {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    display: flex;
    gap: 13px;
    align-items: center;
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: 3px;
    color: rgba(147,197,253,.25);
}

.wd-course-pro-side-text b {
    color: rgba(96,165,250,.65);
}

@media (min-width: 1400px) {

    .wd-course-pro-inner {
        padding: 85px 4vw 75px 6vw;
    }

    .wd-course-pro-video {
        height: 680px;
    }

    .wd-course-pro-heading {
        width: calc(100% + 400px);
        margin-right: -400px;
    }

    .wd-course-pro-heading h2 {
        font-size: clamp(24px, 2.1vw, 34px);
    }

    .wd-course-pro-bg::before {
        width: 1000px;
        height: 1000px;
        right: -400px;
    }
}

@media (max-width: 1200px) {

    .wd-course-pro-inner {
        grid-template-columns: 44% 56%;
        padding: 65px 3vw 65px 4vw;
    }

    .wd-course-pro-content {
        padding-right: 25px;
    }

    .wd-course-pro-heading {
        width: calc(100% + 230px);
        margin-right: -230px;
    }

    .wd-course-pro-heading h2 {
        font-size: clamp(20px, 2.2vw, 28px);
    }

    .wd-course-pro-video {
        height: 560px;
    }

    .wd-course-pro-ktm {
        max-width: 570px;
    }
}

@media (max-width: 900px) {

    .wd-course-pro {
        min-height: auto;
    }

    .wd-course-pro-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 60px 30px 70px;
    }

    .wd-course-pro-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .wd-course-pro-heading {
        width: 100%;
        margin-right: 0;
    }

    .wd-course-pro-heading h2 {
        width: 100%;
        white-space: normal;
        font-size: clamp(20px, 4vw, 26px);
        line-height: 1.65;
    }

    .wd-course-pro-ktm {
        max-width: 700px;
    }

    .wd-course-pro-description {
        max-width: 700px;
    }

    .wd-course-pro-visual {
        min-height: auto;
    }

    .wd-course-pro-video {
        width: 100%;
        height: 500px;
    }

    .wd-course-pro-side-text {
        display: none;
    }

    .wd-course-pro::before {
        width: 500px;
        height: 500px;
        right: -250px;
    }

    .wd-course-pro-glow-1 {
        width: 400px;
        height: 400px;
        right: -100px;
    }

    .wd-course-pro-line {
        right: 8%;
    }
}

@media (max-width: 520px) {

    .wd-course-pro-inner {
        padding: 45px 18px 55px;
    }

    .wd-course-pro-eyebrow {
        margin-bottom: 22px;
        font-size: 14px;
        letter-spacing: 1.7px;
        white-space: normal;
    }

    .wd-course-pro-eyebrow span {
        width: 20px;
    }

    .wd-course-pro-heading h2 {
        font-size: clamp(18px, 5vw, 22px);
        line-height: 1.7;
    }

    .wd-course-pro-ktm {
        margin-top: 30px;
        padding: 18px;
        gap: 10px;
    }

    .wd-course-pro-ktm h3 {
        font-size: 28px;
    }

    .wd-course-pro-ktm p {
        font-size: 14px;
        line-height: 1.9;
    }

    .wd-course-pro-ktm-top small {
        display: none;
    }

    .wd-course-pro-description {
        margin-top: 28px;
        margin-bottom: 34px;
        font-size: 14px;
        line-height: 2;
    }

    .wd-course-pro-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px 12px;
    }

    .wd-course-pro-feature {
        min-width: 0;
    }

    .wd-course-pro-button {
        min-width: 190px;
        padding: 13px 13px 13px 17px;
    }

    .wd-course-pro-video {
        height: 340px;
        border-width: 6px;
        box-shadow:
            0 20px 45px rgba(0,0,0,.75),
            8px 12px 0 rgba(37,99,235,.13);
    }

    .wd-course-pro-video-text {
        left: 20px;
        bottom: 25px;
    }

    .wd-course-pro-video-text strong {
        font-size: 36px;
        letter-spacing: -2px;
    }

    .wd-course-pro-video-top {
        top: 14px;
        right: 14px;
    }

    .wd-course-pro-video-bottom {
        right: 14px;
        bottom: 14px;
    }

    .wd-course-pro-video-corner {
        width: 25px;
        height: 25px;
    }

    .wd-course-pro::before {
        width: 350px;
        height: 350px;
        right: -190px;
    }

    .wd-course-pro-glow-1 {
        width: 280px;
        height: 280px;
        right: -80px;
    }

    .wd-course-pro-glow-2 {
        width: 180px;
        height: 180px;
    }

    .wd-course-pro-line {
        right: 5%;
    }
}

@media (max-width: 380px) {

    .wd-course-pro-inner {
        padding-left: 14px;
        padding-right: 14px;
    }

    .wd-course-pro-heading h2 {
        font-size: clamp(17px, 5vw, 20px);
    }

    .wd-course-pro-ktm h3 {
        font-size: 25px;
    }

    .wd-course-pro-features {
        grid-template-columns: 1fr;
    }

    .wd-course-pro-video {
        height: 290px;
    }
}


.wd-hiring-section,
.wd-hiring-section * {
    box-sizing: border-box;
}

.wd-hiring-section {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 105px 0 85px;
    overflow: hidden;
    background: #ffffff;
    color: #0f172a;
    font-family: "Poppins", Arial, sans-serif;
}

.wd-hiring-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 55px;
}

.wd-hiring-pattern {
   position: absolute;
    inset: 0;
    opacity: .45;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(15, 23, 42, .035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 23, 42, .035) 1px,
            transparent 1px
        );
    background-size: 45px 45px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 20%,
        black 80%,
        transparent
    );
}

.wd-hiring-big-text {
    position: absolute;
    right: -25px;
    bottom: -40px;
    font-size: clamp(130px, 20vw, 330px);
    line-height: .7;
    font-weight: 900;
    letter-spacing: -15px;
    color: #f1f5f9;
    pointer-events: none;
    user-select: none;
}

.wd-hiring-heading {
    position: relative;
    max-width: 900px;
    margin: 0 auto 65px;
    text-align: center;
}

.wd-hiring-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-bottom: 22px;
    color: #2563eb;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 3px;
}

.wd-hiring-kicker span {
    width: 38px;
    height: 1px;
    background: #2563eb;
}

.wd-hiring-heading h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -3px;
    color: #0f172a;
}

.wd-hiring-heading h2 strong {
    display: block;
    font-weight: 800;
    color: #2563eb;
}

.wd-hiring-heading p {
    max-width: 670px;
    margin: 22px auto 0;
    font-size: 16px;
    line-height: 1.9;
    color: #64748b;
    font-weight:400;
}

.wd-hiring-carousel {
    position: relative;
    width: 100%;
}

.wd-hiring-window {
    width: 100%;
    overflow: hidden;
    padding: 20px 5px 35px;
}

.wd-hiring-track {
    display: flex;
    gap: 22px;
    width: max-content;
    transition: transform .55s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}

.wd-hiring-company {
    position: relative;
    width: 265px;
    height: 315px;
    flex: 0 0 265px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow:
        0 12px 30px rgba(15,23,42,.055);
    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}

.wd-hiring-company::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #2563eb;
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s ease;
}

.wd-hiring-company:hover {
    transform: translateY(-10px);
    border-color: #bfdbfe;
    box-shadow:
        0 25px 55px rgba(37,99,235,.12);
}

.wd-hiring-company:hover::after {
    transform: scaleX(1);
}

.wd-hiring-index {
    position: relative;
    z-index: 4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #94a3b8;
}

.wd-hiring-card-bg {
    position: absolute;
    left: -15px;
    bottom: 40px;
    font-size: 72px;
    line-height: .8;
    font-weight: 900;
    letter-spacing: -5px;
    color: #f8fafc;
    white-space: nowrap;
    pointer-events: none;
}

.wd-hiring-logo {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 175px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f1f5f9;
    background: #ffffff;
    overflow: hidden;
}

.wd-hiring-logo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    border-top: 2px solid #2563eb;
    border-left: 2px solid #2563eb;
}

.wd-hiring-logo::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45px;
    height: 45px;
    border-right: 2px solid #dbeafe;
    border-bottom: 2px solid #dbeafe;
}

.wd-hiring-logo img {
    position: relative;
    z-index: 2;
    display: block;
    width: auto;
    max-width: 82%;
    max-height: 78px;
    object-fit: contain;
    transition: transform .45s ease;
}

.wd-hiring-company:hover .wd-hiring-logo img {
    transform: scale(1.08);
}

.wd-hiring-info {
    position: relative;
    z-index: 4;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.wd-hiring-info strong {
    font-size: 16px;
    font-weight: 750;
    color: #0f172a;
}

.wd-hiring-info span {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #94a3b8;
}

.wd-hiring-arrow {
    position: absolute;
    top: 50%;
    z-index: 20;
    width: 52px;
    height: 52px;
    margin-top: -26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbeafe;
    background: #ffffff;
    color: #2563eb;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 12px 30px rgba(15,23,42,.10);
    transition: .3s ease;
}

.wd-hiring-arrow:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    transform: scale(1.08);
}

.wd-hiring-prev {
    left: -25px;
}

.wd-hiring-next {
    right: -25px;
}

.wd-hiring-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 65px;
    margin-top: 35px;
}

.wd-hiring-bottom-line {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.wd-hiring-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.wd-hiring-stat strong {
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;
    color: #2563eb;
}

.wd-hiring-stat strong span {
    font-size: 18px;
}

.wd-hiring-stat small {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #64748b;
}

@media (max-width: 1100px) {

    .wd-hiring-container {
        padding: 0 40px;
    }

    .wd-hiring-company {
        width: 240px;
        flex-basis: 240px;
    }

    .wd-hiring-bottom {
        gap: 30px;
    }

}

@media (max-width: 900px) {

    .wd-hiring-section {
        padding: 80px 0 65px;
    }

    .wd-hiring-container {
        padding: 0 28px;
    }

    .wd-hiring-heading {
        margin-bottom: 45px;
    }

    .wd-hiring-heading h2 {
        font-size: clamp(38px, 7vw, 55px);
    }

    .wd-hiring-company {
        width: 225px;
        flex-basis: 225px;
        height: 290px;
    }

    .wd-hiring-logo {
        height: 155px;
    }

    .wd-hiring-prev {
        left: -18px;
    }

    .wd-hiring-next {
        right: -18px;
    }

}

@media (max-width: 600px) {

    .wd-hiring-section {
        padding: 65px 0 55px;
    }

    .wd-hiring-container {
        padding: 0 17px;
    }

    .wd-hiring-kicker {
        font-size: 9px;
        letter-spacing: 1.8px;
    }

    .wd-hiring-kicker span {
        width: 22px;
    }

    .wd-hiring-heading h2 {
        font-size: 37px;
        letter-spacing: -1.7px;
    }

    .wd-hiring-heading p {
        font-size: 13px;
        line-height: 1.8;
    }

    .wd-hiring-window {
        padding: 15px 4px 30px;
    }

    .wd-hiring-track {
        gap: 15px;
    }

    .wd-hiring-company {
        width: 205px;
        flex-basis: 205px;
        height: 265px;
        padding: 16px;
    }

    .wd-hiring-logo {
        height: 135px;
    }

    .wd-hiring-logo img {
        max-height: 62px;
    }

    .wd-hiring-info {
        margin-top: 14px;
        padding-top: 12px;
    }

    .wd-hiring-info strong {
        font-size: 14px;
    }

    .wd-hiring-info span {
        font-size: 7px;
    }

    .wd-hiring-arrow {
        width: 42px;
        height: 42px;
        margin-top: -21px;
        font-size: 11px;
    }

    .wd-hiring-prev {
        left: -8px;
    }

    .wd-hiring-next {
        right: -8px;
    }

    .wd-hiring-bottom {
        gap: 14px;
        justify-content: space-between;
    }

    .wd-hiring-bottom-line {
        display: none;
    }

    .wd-hiring-stat {
        display: flex;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .wd-hiring-stat strong {
        font-size: 21px;
    }

    .wd-hiring-stat strong span {
        font-size: 14px;
    }

    .wd-hiring-stat small {
        font-size: 7px;
        letter-spacing: .8px;
    }

    .wd-hiring-big-text {
        font-size: 110px;
    }

}

@media (max-width: 380px) {

    .wd-hiring-title h2 {
        font-size: 33px;
    }

    .wd-hiring-company {
        width: 190px;
        flex-basis: 190px;
    }

}



@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@600;700;800;900&display=swap');

.wd-ktm-hero,
.wd-ktm-hero * {
    box-sizing: border-box;
}

.wd-ktm-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #e5effb;
    color: #0b2d62;
    font-family: 'Inter', sans-serif;
    padding-top: 40px ;
    padding-bottom: 40px ;
     
}

.wd-ktm-bg {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(100px, 15vw, 140px);
    line-height: .75;
    font-weight: 900;
    letter-spacing: -12px;
    color: rgba(37,99,235,.035);
    animation: wdKtmBgMove 14s ease-in-out infinite alternate;
}

.wd-ktm-bg-one {
    top: 55px;
    left: -10px;
}

.wd-ktm-bg-two {
    top: 150px;
    right: 20px;
    animation-delay: -4s;
}

@keyframes wdKtmBgMove {
    from {
        transform: translate3d(0,0,0);
    }

    to {
        transform: translate3d(20px,-15px,0);
    }
}

.wd-ktm-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
}

.wd-ktm-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 52px;
}

.wd-ktm-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 17px;
    color: #2563eb;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: wdKtmFadeDown .8s ease both;
}

.wd-ktm-eyebrow::before,
.wd-ktm-eyebrow::after {
    content: "";
    width: 45px;
    height: 2px;
    background: #2563eb;
}

.wd-ktm-main-title {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(48px,6vw,88px);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -5px;
    text-transform: uppercase;
    color: #0b2d62;
    animation: wdKtmTitle 1s cubic-bezier(.16,1,.3,1) both;
}

.wd-ktm-main-title span {
    position: relative;
    display: inline-block;
    color: #2563eb;
}

.wd-ktm-main-title span::after {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: -9px;
    height: 5px;
    background: #2563eb;
    transform-origin: left;
    animation: wdKtmUnderline .8s ease .6s both;
}

.wd-ktm-grid {
    display: grid;
    grid-template-columns: minmax(360px,.82fr) minmax(550px,1.18fr);
    gap: 65px;
    align-items: start;
}

.wd-ktm-content {
    position: relative;
    padding-top: 4px;
    animation: wdKtmLeft .9s cubic-bezier(.16,1,.3,1) .15s both;
}

.wd-ktm-label {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
    color: #2563eb;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.wd-ktm-label::before {
    content: "";
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    background: #2563eb;
    border-radius: 50%;
    box-shadow:
        0 0 0 4px rgba(37,99,235,.10),
        0 0 14px rgba(37,99,235,.65);
    animation: wdKtmLabelDot 1.8s ease-in-out infinite;
}

@keyframes wdKtmLabelDot {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow:
            0 0 0 4px rgba(37,99,235,.10),
            0 0 14px rgba(37,99,235,.65);
    }

    50% {
        transform: scale(.72);
        opacity: .65;
        box-shadow:
            0 0 0 8px rgba(37,99,235,.04),
            0 0 24px rgba(37,99,235,.9);
    }
}

.wd-ktm-content-title {
    margin: 0 0 22px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(38px,4vw,62px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: #0b2d62;
}

.wd-ktm-content-title strong {
    display: block;
    color: #2563eb;
}

.wd-ktm-description {
    max-width: 650px;
    margin: 0 0 28px;
    color: #506887;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 500;
}

.wd-ktm-features {
    width: 100%;
    max-width: 650px;
    border-top: 1px solid #e3eaf4;
}

.wd-ktm-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 68px;
    padding: 10px 0;
    border-bottom: 1px solid #e3eaf4;
    transition: padding-left .3s ease;
}

.wd-ktm-feature:hover {
    padding-left: 8px;
}

.wd-ktm-feature-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 900;
    transition:
        background .3s ease,
        color .3s ease;
}

.wd-ktm-feature:hover .wd-ktm-feature-number {
    background: #2563eb;
    color: #ffffff;
}

.wd-ktm-feature-text strong {
    display: block;
    margin-bottom: 3px;
    color: #0b2d62;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 800;
}

.wd-ktm-feature-text span {
    display: block;
    color: #708198;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
}

.wd-ktm-message {
    margin-top: 25px;
    padding: 15px 18px;
    border-left: 4px solid #2563eb;
    background: #f7faff;
    color: #173d73;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 700;
}

.wd-ktm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    min-width: 220px;
    padding: 16px 26px;
    background: #2563eb;
    color: #ffffff !important;
    text-decoration: none !important;
    border: 2px solid #2563eb;
    border-radius: 4px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: .6px;
    text-transform: uppercase;
    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.wd-ktm-button:hover {
    background: #ffffff;
    color: #2563eb !important;
    transform: translateY(-3px);
}

.wd-ktm-button i {
    transition: transform .3s ease;
}

.wd-ktm-button:hover i {
    transform: translateX(6px);
}

.wd-ktm-video {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 560px;
    background: #0f172a;
    border: 10px solid #ffffff;
    outline: 1px solid #dbe2ea;
    overflow: visible;
    box-shadow:
        0 28px 65px rgba(15,23,42,.16),
        0 8px 25px rgba(37,99,235,.09);
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.wd-ktm-video iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.wd-ktm-video::before {
    content: "";
    position: absolute;
    left: -16px;
    top: -16px;
    width: 95px;
    height: 95px;
    border-left: 5px solid #2563eb;
    border-top: 5px solid #2563eb;
    z-index: 10;
    pointer-events: none;
}

.wd-ktm-video::after {
    content: "";
    position: absolute;
    right: -16px;
    bottom: -16px;
    width: 95px;
    height: 95px;
    border-right: 5px solid #2563eb;
    border-bottom: 5px solid #2563eb;
    z-index: 10;
    pointer-events: none;
}

.wd-ktm-big-video-label {
    position: absolute;
    top: 24px;
    right: 25px;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 13px;
    background: rgba(15,23,42,.88);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-left: 3px solid #fff;
    pointer-events: none;
}

.wd-ktm-big-video-label i {
    display: block;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
    animation: wdKtmVideoPulse 1.6s ease-in-out infinite;
}

.wd-ktm-big-video-info {
    position: absolute;
    left: 175px;
    bottom: 24px;
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 15px;
    border-left: 3px solid #fff;
    pointer-events: none;
}

.wd-ktm-big-video-info strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 1px;
}

.wd-ktm-big-video-info span {
    display: block;
    color: rgba(255,255,255,.78);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 2px;
}

@keyframes wdKtmVideoPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .45;
        transform: scale(.65);
    }
}

@keyframes wdKtmFadeDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wdKtmTitle {
    from {
        opacity: 0;
        transform: translateY(35px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes wdKtmUnderline {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes wdKtmLeft {
    from {
        opacity: 0;
        transform: translateX(-45px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes wdKtmRight {
    from {
        opacity: 0;
        transform: translateX(45px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1100px) {

    .wd-ktm-hero {
        padding: 60px 5% 70px;
    }

    .wd-ktm-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .wd-ktm-description,
    .wd-ktm-features {
        max-width: 100%;
    }

    .wd-ktm-video {
        height: 520px;
    }
}

@media (max-width: 600px) {

    .wd-ktm-hero {
        padding: 45px 18px 55px;
    }

    .wd-ktm-heading {
        margin-bottom: 38px;
    }

    .wd-ktm-eyebrow {
        font-size: 14px;
        letter-spacing: 2px;
        gap: 9px;
    }

    .wd-ktm-eyebrow::before,
    .wd-ktm-eyebrow::after {
        width: 22px;
    }

    .wd-ktm-main-title {
        font-size: 40px;
        letter-spacing: -2.5px;
    }

    .wd-ktm-main-title span::after {
        height: 4px;
        bottom: -7px;
    }

    .wd-ktm-grid {
        gap: 38px;
    }

    .wd-ktm-content-title {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .wd-ktm-description {
        font-size: 16px;
        line-height: 1.75;
    }

    .wd-ktm-label {
        font-size: 16px;
        letter-spacing: 1.7px;
    }

    .wd-ktm-feature {
        min-height: 64px;
        gap: 13px;
    }

    .wd-ktm-feature-number {
        width: 38px;
        height: 38px;
    }

    .wd-ktm-feature-text strong {
        font-size: 16px;
    }

    .wd-ktm-feature-text span {
        font-size: 16px;
    }

    .wd-ktm-message {
        font-size: 16px;
    }

    .wd-ktm-button {
        width: 100%;
        font-size: 16px;
    }

    .wd-ktm-video {
        height: 320px;
        border: 7px solid #ffffff;
        outline: 1px solid #dbe2ea;
        box-shadow:
            0 20px 45px rgba(15,23,42,.15),
            0 6px 20px rgba(37,99,235,.08);
    }

    .wd-ktm-video::before {
        left: -1px;
        top: -1px;
        width: 60px;
        height: 60px;
        border-left: 4px solid #2563eb;
        border-top: 4px solid #2563eb;
        z-index: 6;
    }

    .wd-ktm-video::after {
        right: -1px;
        bottom: -1px;
        width: 60px;
        height: 60px;
        border-right: 4px solid #2563eb;
        border-bottom: 4px solid #2563eb;
        z-index: 6;
    }

    .wd-ktm-big-video-label {
        top: 17px;
        left: 17px;
        padding: 8px 10px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .wd-ktm-big-video-label i {
        width: 7px;
        height: 7px;
    }

    .wd-ktm-big-video-info {
        left: 17px;
        bottom: 17px;
        padding-left: 11px;
    }

    .wd-ktm-big-video-info strong {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .wd-ktm-big-video-info span {
        font-size: 11px;
        letter-spacing: 1.4px;
    }

    .wd-ktm-bg {
        font-size: 65px;
        letter-spacing: -5px;
    }

}


