@media (min-width: 1425px) {
    .home-card-row {
        margin-bottom: 100px;
        margin-top: 100px;
        width: 100%;
        justify-content: space-around;
    }

    .home-card-row-wrapper {
        width: 100%;
        gap: 40px;
        max-width: fit-content;
        display: inline-grid;
        justify-content: center;
        align-items: center;
    }

    .home-card-row .title {
        margin-bottom: 40px;
        width: 100%;
        justify-content: start;
        background: transparent;
        font-family: "ubuntu-bold" !important;
        color: #003971;
        line-height: 48px;
        display: inline-flex;
        align-items: center;
        font-size: 40px;
        letter-spacing: 0;
        vertical-align: middle;
        text-decoration: none;
    }

    .home-card-row-wrapper .card-wrapper {
        width: 100%;
        justify-content: space-between;
        display: flex;
        gap: 24px;
        overflow-x:auto;
    }

    .card-wrapper .home-card {
        background-color: #f3f7fb;
        border-radius: 12px;
        width: 256px;
        height: 260px;
        gap: 24px;
        display: flex; /* Use flexbox for layout */
        flex-direction: column; /* Stack children vertically */
        justify-content: space-between;
        align-items: center;
        padding-right: 10px;
        padding-left: 10px;
        padding-top: 40px;
        padding-bottom: 40px;
        transition: background-color 0.3s;
    }

        .card-wrapper .home-card:hover {
            background-color: #ddefff;
        }

    .home-card-row-wrapper .card-wrapper .home-card .icon {
        justify-content: center;
        align-items: center;
        display: flex;
        width: 99px; /* Adjust if necessary */
        height: 98px; /* Adjust if necessary */
    }

    .home-card-row-wrapper .card-wrapper .home-card .name {
        background: transparent;
        font-family: "ubuntu-bold" !important;
        color: #212121;
        line-height: 28px;
        font-size: 20px;
        letter-spacing: 0;
        text-align: center; /* Center text within div */
        word-wrap: break-word; /* Allow long words to break onto new lines */
    }

    .middle-banner-wrapper {
        margin-bottom: 100px;
        height: 768px;
        width: 100%;
        align-items: center;
        display: flex;
        justify-content: center;
        padding: 0;
        background-image: url("/assets/img/middle_banner_bg.svg");
        background-size: cover;
        background-position: bottom;
    }

    .card-box-row {
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto;
        overflow-x: auto;
        -ms-overflow-style: none;
        justify-content: space-around;
        scrollbar-width: none;
    }

    .card-box-wrapper {
        display: inline-grid;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding: 40px;
        border-radius: 16px;
        gap: 24px;
        background-image: url("/assets/img/home-bulten-bg.png");
        background-size: cover;
        background-position: start;
    }

        .card-box-wrapper .text-row {
            width: 100%;
            align-items: center;
            display: flex;
            gap: 24px;
            justify-content: start;
        }

        .card-box-wrapper .detail-button {
            background: transparent;
            font-family: "ubuntu-medium" !important;
            color: #ffffff;
            line-height: 24px;
            display: flex;
            min-width: 182px;
            justify-content: start;
            align-items: center;
            font-size: 18px;
            padding: 16px 24px;
            text-decoration: none;
            border: 1px solid #ffffff;
            transition: background 0.3s, color 0.3s;
            border-radius: 40px;
        }

            .card-box-wrapper .detail-button:hover {
                background: white;
                color: #212121;
            }

            .card-box-wrapper .detail-button .button-icon {
                width: 20px;
                object-fit: cover;
                height: 20px;
                display: flex;
                margin-left: 10px;
            }

        .card-box-wrapper .text-row .text-box {
            gap: 24px;
            width: 100%;
            align-items: start;
            display: inline-grid;
            justify-content: start;
        }

            .card-box-wrapper .text-row .text-box .title {
                background: transparent;
                font-family: "ubuntu-regular", sans-serif;
                color: #ffffff;
                line-height: 40px;
                font-size: 32px;
                letter-spacing: 0;
                text-align: start; /* Center text within div */
                word-wrap: break-word; /* Allow long words to break onto new lines */
            }

            .card-box-wrapper .text-row .text-box .description {
                background: transparent;
                font-family: "ubuntu-regular", sans-serif;
                color: #ffffff;
                line-height: 22px;
                font-size: 16px;
                letter-spacing: 0;
                text-align: start; /* Center text within div */
                word-wrap: break-word;
            }

        .card-box-wrapper .card-row {
            width: 100%;
            margin-right: auto;
            margin-left: auto;
            max-width: fit-content;
            overflow-x: auto;
            align-items: stretch;
            display: inline-flex;
            justify-content: space-evenly;
            gap: 24px;
        }

            .card-box-wrapper .card-row .white-card {
                height: 100%;
                align-items: start;
                display: flex;
                border-radius: 24px;
                background-color: #f3f7fb;
                padding: 24px;
                justify-content: space-between;
                gap: 24px;
                transition: background-color 0.3s;
            }

                .card-box-wrapper .card-row .white-card:hover {
                    background-color: #ddefff;
                }

                .card-box-wrapper .card-row .white-card .icon {
                    width: 55px;
                    height: 55px;
                    align-items: start;
                    display: grid;
                    background-color: transparent;
                }

                .card-box-wrapper .card-row .white-card .text-wrap {
                    align-items: start;
                    display: grid;
                    gap: 16px;
                    background-color: transparent;
                }

                    .card-box-wrapper .card-row .white-card .text-wrap .title {
                        background: transparent;
                        font-family: "ubuntu-bold" !important;
                        color: #212121;
                        line-height: 32px;
                        font-size: 24px;
                        letter-spacing: 0;
                        text-align: start;
                        word-wrap: break-word;
                    }

                    .card-box-wrapper .card-row .white-card .text-wrap .desc {
                        background: transparent;
                        font-family: "ubuntu-regular", sans-serif;
                        color: #212121;
                        line-height: 22px;
                        font-size: 15px;
                        letter-spacing: 0;
                        text-align: start; /* Center text within div */
                        word-wrap: break-word;
                    }

    .social-media-row {
        padding-top: 100px;
        padding-bottom: 100px;
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto;
        overflow-x: auto;
        -ms-overflow-style: none;
        justify-content: space-around;
        scrollbar-width: none;
    }

    .social-media-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        gap: 40px;
        background-color: transparent;
    }

        .social-media-wrapper .image-card {
            max-width: 453px;
            display: inline-block;
            justify-content: center;
            align-items: center;
            border-radius: 16px;
            background-color: white;
            box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.05);
        }

            .social-media-wrapper .image-card .image {
                display: block;
                border-radius: 16px;
                justify-content: center;
                align-items: center;
                gap: 10px;
            }

                .social-media-wrapper .image-card .image img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

            .social-media-wrapper .image-card .video {
                width: 100%;
                display: inline-grid;
                justify-content: center;
                align-items: center;
                height: max-content;
                gap: 24px;
                padding: 24px 40px;
                background-color: transparent;
            }

                .social-media-wrapper .image-card .video .header {
                    background: transparent;
                    font-family: "ubuntu-medium" !important;
                    color: #212121;
                    line-height: 28px;
                    font-size: 20px;
                    font-weight: 700;
                    letter-spacing: 0;
                    text-align: start;
                    word-wrap: break-word;
                }

                .social-media-wrapper .image-card .video .bt {
                    background: transparent;
                    font-family: "ubuntu-medium" !important;
                    color: #212121;
                    line-height: 24px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 18px;
                    padding: 16px 24px;
                    border: 1px solid #212121;
                    border-radius: 40px;
                    transition: font-family 0.3s;
                }

                    .social-media-wrapper .image-card .video .bt:hover {
                        font-family: "ubuntu-bold" !important;
                    }

        .social-media-wrapper .social-card {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            flex: 1 0 0;
            gap: 24px;
            padding: 40px;
            border-radius: 16px;
            height: 100%;
            background-color: white;
            box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.05);
        }

            .social-media-wrapper .social-card .text-wrap {
                width: 100%;
                display: inline-grid;
                justify-content: start;
                align-items: center;
                gap: 24px;
            }

                .social-media-wrapper .social-card .text-wrap .header {
                    background: transparent;
                    font-family: "ubuntu-medium" !important;
                    color: #212121;
                    line-height: 48px;
                    font-size: 40px;
                    letter-spacing: 0;
                    text-align: start;
                    word-wrap: break-word;
                }

                .social-media-wrapper .social-card .text-wrap .desc {
                    background: transparent;
                    font-family: "ubuntu-regular", sans-serif;
                    color: #212121;
                    line-height: 22px;
                    font-size: 15px;
                    letter-spacing: 0;
                    text-align: start;
                    word-wrap: break-word;
                }

            .social-media-wrapper .social-card .link-button-wrap {
                width: 100%;
                display: flex;
                justify-content: space-evenly;
                align-items: center;
                gap: 24px;
            }

            .social-media-wrapper .social-card .link-button {
                width: 100%;
                display: flex;
                align-items: center;
                height: 80px;
                border-radius: 100px;
                justify-content: center;
                border: 1px solid #e0e0e0;
                align-items: center;
                gap: 24px;
                transition: border 0.3s;
            }

                .social-media-wrapper .social-card .link-button:hover {
                    border: 1px solid #212121;
                }

    .custom-footer {
        padding: 0;
        background-image: url("/assets/img/footer_bg.svg");
        background-size: cover;
        background-position: top;
    }

    #middle-slider {
        padding-top: 60px;
        margin-bottom: 80px;
        background-image: url("/assets/img/middle-slider-bg.png");
        background-size: cover;
        background-position: top;
        min-height: 768px;
    }
        /* Swiper Container */
        #middle-slider .swiper-container {
            height: 596px;
            position: relative;
            overflow: hidden;
        }

        /* Each Slide */
        #middle-slider .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 52px;
            text-align: start;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease-in-out;
        }

        /* Only active slide visible */
        #middle-slider .swiper-slide-active {
            opacity: 1;
            visibility: visible;
        }

        /* Slide Image */
        #middle-slider .swiper-slide img {
            width: 56dvw;
            max-width: 990px;
            height: auto;
        }

        /* Slide Content Layout */
        #middle-slider .swiper-box {
            display: flex;
            justify-content: space-between;
            width: 100%;
        }

            /* Image Container */
            #middle-slider .swiper-box .img {
                max-width: 990px;
                min-width: 400px;
                padding: 5px;
            }

        /* Text Box */
        #middle-slider .swiper-text-box {
            width: 55%;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

            /* Slide Title */
            #middle-slider .swiper-text-box .text {
                font-family: "ubuntu-regular" !important;
                font-size: 52px;
                line-height: 68px;
                color: #002a53;
                padding: 10px;
                margin-top: 20px;
                text-align: start;
                word-wrap: break-word;
            }

                #middle-slider .swiper-text-box .text span {
                    color: #1366b2;
                    font-size: 52px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: 72px;
                }
        /* Detail Button */
        #middle-slider .header-detail-button {
            width: 214px;
            height: 66px;
            border-radius: 40px;
            border: 1px solid var(--Neutral-White, #fff);
            background: var(--Primary-800, #003971);
            display: flex;
            width: 214px;
            height: 66px;
            padding: 16px 24px;
            justify-content: center;
            align-items: center;
            gap: 12px;
            color: var(--Neutral-White, #fff);
            text-align: center;
            font-family: "ubuntu-medium" !important;
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            transition: background-color 0.3s;
        }

            #middle-slider .header-detail-button:hover {
                background-color: #1366b2;
            }
        /* Button Icon */
        #middle-slider .header-detail-button-icon {
            width: 20px;
            height: 20px;
            padding: 3px;
            display: flex;
            object-fit: cover;
            margin-left: 10px;
        }

        #middle-slider .middle-account-button {
            display: flex;
            width: 214px;
            height: 66px;
            padding: 16px 24px;
            justify-content: center;
            align-items: center;
            gap: 12px;
            background-color: #237bcb;
            font-family: "ubuntu-medium" !important;
            border: 0px solid #ffffff;
            border-radius: 40px;
            color: #fff;
            text-align: center;
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            transition: background-color 0.3s;
        }

            #middle-slider .middle-account-button:hover {
                background-color: #4399e8;
            }
        /* Button Icon */
        #middle-slider .middle-account-button-icon {
            width: 20px;
            height: 20px;
            display: flex;
            object-fit: cover;
            margin-right: 10px;
        }
        /* Swiper Pagination */
        #middle-slider .swiper-pagination {
            display: flex !important;
            align-items: center;
            justify-content: flex-start;
            position: absolute;
            left: 20px;
            bottom: 20px;
            z-index: 999;
            width: auto;
            flex-wrap: wrap;
        }

        /* Pagination Bullet */
        #middle-slider .swiper-pagination-bullet {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 8px !important;
            height: 8px !important;
            background-color: #1366b2 !important;
            padding: 0px !important;
            border-radius: 50%;
            margin-right: 8px;
            opacity: 1 !important;
        }

        /* Active Bullet & Progress Bar */
        #middle-slider .swiper-pagination-bullet-active {
            background-color: #1366b2 !important;
            margin-right: 58px !important;
        }

            #middle-slider .swiper-pagination-bullet-active .progress-bar {
                position: absolute;
                top: 50%;
                left: calc(100% + 10px);
                transform: translateY(-50%);
                width: 40px;
                height: 4px;
                background-color: #1366b2;
                border-radius: 20px;
                border: 0px solid transparent;
            }

        /* Progress Bar Fill */
        #middle-slider .progress-bar-fill {
            width: 0;
            height: 100%;
            background-color: #89c2f8;
            transition: width 0.1s linear;
            border: 0px solid transparent;
        }
}

@media (max-width: 1424px) {
    .home-card-row {
        padding-left: 16px;
        padding-right: 16px;
        margin-bottom: 40px;
        max-width: fit-content;
    }

    .home-card-row-wrapper {
        gap: 40px;
        max-width: fit-content;
        display: inline-grid;
        justify-content: center;
        align-items: center;
    }

    .home-card-row .title {
        margin-bottom: 40px;
        justify-content: start;
        background: transparent;
        font-family: "ubuntu-bold" !important;
        color: #003971;
        line-height: 32px;
        display: inline-flex;
        align-items: center;
        font-size: 24px;
        letter-spacing: 0;
        vertical-align: middle;
        text-decoration: none;
    }

    .home-card-row-wrapper .card-wrapper {
        justify-content: space-between;
        display: flex;
        gap: 24px;
        overflow-x: auto;
    }

    .card-wrapper .home-card {
        background-color: #f3f7fb;
        border-radius: 12px;
        width: 252px;
        height: 200px;
        gap: 24px;
        display: flex; /* Use flexbox for layout */
        flex-direction: column; /* Stack children vertically */
        justify-content: space-between;
        align-items: center;
        padding-right: 10px;
        padding-left: 10px;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .home-card-row-wrapper .card-wrapper .home-card .icon {
        width: 76px;
        object-fit: cover;
        height: 76px;
        display: flex;
    }

    .home-card-row-wrapper .card-wrapper .home-card .name {
        background: transparent;
        font-family: "ubuntu-bold" !important;
        color: #212121;
        line-height: 24px;
        font-size: 18px;
        letter-spacing: 0;
        text-align: center; /* Center text within div */
        word-wrap: break-word; /* Allow long words to break onto new lines */
    }

    .middle-banner-wrapper {
        margin-bottom: 40px;
        height: 768px;
        width: 100%;
        align-items: center;
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0;
        background-image: url("/assets/img/middle_banner_bg.svg");
        background-size: cover;
        background-position: bottom;
    }

    .card-box-row {
        margin-bottom: 40px;
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .card-box-wrapper {
        width: 100%;
        display: inline-grid;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding-top: 24px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 24px;
        gap: 24px;
        background-image: url("/assets/img/home-bulten-bg.png");
        background-size: cover;
        background-position: start;
    }

        .card-box-wrapper .text-row {
            width: 100%;
            align-items: center;
            display: inline-grid;
            gap: 24px;
            justify-content: start;
        }

        .card-box-wrapper .detail-button {
            background: transparent;
            font-family: "ubuntu-medium" !important;
            color: #ffffff;
            line-height: 24px;
            display: flex;
            min-width: 182px;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            gap: 12px;
            padding: 16px 24px;
            text-decoration: none;
            border: 1px solid #ffffff;
            border-radius: 40px;
        }

            .card-box-wrapper .detail-button .button-icon {
                width: 20px;
                object-fit: cover;
                height: 20px;
                display: flex;
                margin-left: 10px;
            }

        .card-box-wrapper .text-row .text-box {
            gap: 16px;
            width: 100%;
            align-items: center;
            display: inline-grid;
            gap: 16px;
            justify-content: start;
        }

            .card-box-wrapper .text-row .text-box .title {
                background: transparent;
                font-family: "ubuntu-regular", sans-serif;
                color: #ffffff;
                line-height: 36px;
                font-size: 28px;
                letter-spacing: 0;
                text-align: start; /* Center text within div */
                word-wrap: break-word; /* Allow long words to break onto new lines */
            }

            .card-box-wrapper .text-row .text-box .description {
                background: transparent;
                font-family: "ubuntu-regular", sans-serif;
                color: #ffffff;
                line-height: 22px;
                font-size: 16px;
                letter-spacing: 0;
                text-align: start; /* Center text within div */
                word-wrap: break-word;
            }

        .card-box-wrapper .card-row {
            width: 100%;
            margin-right: auto;
            margin-left: auto;
            max-width: fit-content;
            overflow-x: auto;
            align-items: stretch;
            display: inline-grid;
            justify-content: space-evenly;
            gap: 24px;
        }

            .card-box-wrapper .card-row .white-card {
                height: 100%;
                align-items: start;
                display: flex;
                border-radius: 16px;
                background-color: #f3f7fb;
                padding: 24px;
                justify-content: space-between;
                gap: 24px;
            }

                .card-box-wrapper .card-row .white-card .icon {
                    width: 55px;
                    height: 55px;
                    align-items: start;
                    display: grid;
                    background-color: transparent;
                }

                .card-box-wrapper .card-row .white-card .text-wrap {
                    align-items: start;
                    display: grid;
                    gap: 16px;
                    background-color: transparent;
                }

                    .card-box-wrapper .card-row .white-card .text-wrap .title {
                        background: transparent;
                        font-family: "ubuntu-bold" !important;
                        color: #212121;
                        line-height: 32px;
                        font-size: 24px;
                        letter-spacing: 0;
                        text-align: start;
                        word-wrap: break-word;
                    }

                    .card-box-wrapper .card-row .white-card .text-wrap .desc {
                        background: transparent;
                        font-family: "ubuntu-regular", sans-serif;
                        color: #212121;
                        line-height: 22px;
                        font-size: 15px;
                        letter-spacing: 0;
                        text-align: start; /* Center text within div */
                        word-wrap: break-word;
                    }

    .social-media-row {
        margin-bottom: 40px;
        max-width: 100%;
    }

    .social-media-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding-left: 16px;
        padding-right: 16px;
        gap: 24px;
        background-color: transparent;
    }

        .social-media-wrapper .image-card {
            display: inline-block;
            margin-bottom: 24px;
            justify-content: center;
            align-items: center;
            border-radius: 16px;
            background-color: white;
            box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.05);
        }

            .social-media-wrapper .image-card .image {
                display: block;
                border-radius: 16px;
                width: 100%;
                height: fit-content;
                justify-content: center;
                align-items: center;
                gap: 10px;
            }

                .social-media-wrapper .image-card .image img {
                    width: 100%;
                    height: fit-content;
                }

            .social-media-wrapper .image-card .video {
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                height: max-content;
                border-left: 1px;
                border-right: 1px;
                border-bottom: 1px;
                gap: 24px;
                padding: 24px 16px;
                background-color: transparent;
            }

                .social-media-wrapper .image-card .video .header {
                    background: transparent;
                    font-family: "ubuntu-bold" !important;
                    color: #212121;
                    line-height: 28px;
                    font-size: 20px;
                    letter-spacing: 0;
                    text-align: start;
                    word-wrap: break-word;
                }

                .social-media-wrapper .image-card .video .bt {
                    background: transparent;
                    font-family: "ubuntu-medium" !important;
                    color: #212121;
                    line-height: 24px;
                    display: flex;
                    gap: 12px;
                    justify-content: center;
                    align-items: center;
                    font-size: 18px;
                    padding: 16px 24px;
                    text-decoration: none;
                    border: 1px solid #212121;
                    border-radius: 40px;
                }

        .social-media-wrapper .social-card {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 24px;
            padding: 24px 16px;
            border-radius: 16px;
            height: 100%;
            background-color: white;
            box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.05);
        }

            .social-media-wrapper .social-card .text-wrap {
                width: 100%;
                display: inline-grid;
                justify-content: start;
                align-items: center;
                gap: 16px;
            }

                .social-media-wrapper .social-card .text-wrap .header {
                    background: transparent;
                    font-family: "ubuntu-medium" !important;
                    color: #212121;
                    line-height: 36px;
                    font-size: 28px;
                    letter-spacing: 0;
                    text-align: start;
                    word-wrap: break-word;
                }

                .social-media-wrapper .social-card .text-wrap .desc {
                    background: transparent;
                    font-family: "ubuntu-regular", sans-serif;
                    color: #212121;
                    line-height: 22px;
                    font-size: 15px;
                    letter-spacing: 0;
                    text-align: start;
                    word-wrap: break-word;
                }

            .social-media-wrapper .social-card .link-button-wrap {
                width: 100%;
                display: flex;
                justify-content: space-evenly;
                align-items: center;
                gap: 24px;
            }

            .social-media-wrapper .social-card .link-button {
                display: flex;
                align-items: center;
                height: 80px;
                padding: 20px 24px;
                border-radius: 100px;
                justify-content: center;
                border: 1px solid #e0e0e0;
                align-items: center;
                gap: 10px;
            }

                .social-media-wrapper .social-card .link-button img {
                    width: 100%;
                    height: 100%;
                }

    .custom-footer {
        padding: 0;
        background-image: url("/assets/img/footer_bg.svg");
        background-size: cover;
        background-position: right;
    }

    #middle-slider {
        margin-bottom: 40px;
        background-image: url("/assets/img/middle-slider-bg.png");
        background-size: cover;
        background-position: top;
        min-height: 614px;
    }

        /* Swiper Container */
        #middle-slider .swiper-container {
            height: fit-content;
            position: relative;
            overflow: hidden;
            padding-top: 50px;
            padding-bottom: 100px;
        }

        /* Each Slide */
        #middle-slider .swiper-slide {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: start;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease-in-out;
        }

        /* Only active slide visible */
        #middle-slider .swiper-slide-active {
            opacity: 1;
            visibility: visible;
        }

        /* Slide Image */
        #middle-slider .swiper-slide img {
            max-height: auto;
            width: 80dvw;
            max-width: 600px;
            height: auto;
        }

        /* Slide Content Layout */
        #middle-slider .swiper-box {
            margin-bottom: 50px;
            margin-top: 56px;
            justify-content: center;
            width: 100%;
        }

            /* Image Container */
            #middle-slider .swiper-box .img {
                width: 100%;
                min-width: unset;
            }

        /* Text Box */
        #middle-slider .swiper-text-box {
            position: relative;
            display: flex;
            width: 100%;
            text-align: center;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

            /* Slide Title */
            #middle-slider .swiper-text-box .text {
                font-family: "ubuntu-regular" !important;
                font-size: 26px;
                line-height: 32px;
                color: #002a53;
                padding: 10px;
                width: 100%;
                margin: 20px 0px;
                text-align: center;
                word-wrap: break-word;
            }

                #middle-slider .swiper-text-box .text span {
                    color: #1366b2;
                    font-size: 26px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: 32px;
                }
        /* Detail Button */
        #middle-slider .header-detail-button {
            width: 100%;
            height: 66px;
            border-radius: 40px;
            border: 1px solid var(--Neutral-White, #fff);
            background: var(--Primary-800, #003971);
            display: flex;
            padding: 16px 24px;
            justify-content: center;
            align-items: center;
            gap: 12px;
            color: var(--Neutral-White, #fff);
            text-align: center;
            font-family: "ubuntu-medium" !important;
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            word-wrap: normal;
            white-space: nowrap;
        }

        /* Button Icon */
        #middle-slider .header-detail-button-icon {
            width: 20px;
            height: 20px;
            padding: 3px;
            display: flex;
            object-fit: cover;
            margin-left: 8px;
        }

        #middle-slider .middle-account-button {
            display: flex;
            width: 100%;
            height: 66px;
            padding: 16px 24px;
            justify-content: center;
            align-items: center;
            gap: 12px;
            background: #237bcb;
            font-family: "ubuntu-medium" !important;
            border: 0px solid #ffffff;
            border-radius: 40px;
            color: #fff;
            text-align: center;
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            word-wrap: normal;
            white-space: nowrap;
        }

        /* Button Icon */
        #middle-slider .middle-account-button-icon {
            width: 20px;
            height: 20px;
            display: flex;
            object-fit: cover;
            margin-right: 10px;
        }
        /* Swiper Pagination */
        #middle-slider .swiper-pagination {
            display: flex !important;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: calc(50dvw - 70px) !important;
            z-index: 999;
            width: fit-content;
            flex-wrap: wrap;
            bottom: 100px !important;
        }

        /* Pagination Bullet */
        #middle-slider .swiper-pagination-bullet {
            position: static;
            z-index: 99999;
            align-items: center;
            background-color: #1366b2 !important;
            opacity: 1 !important;
        }

        /* Active Bullet & Progress Bar */
        #middle-slider .swiper-pagination-bullet-active {
            background-color: #1366b2 !important;
            margin-right: 58px !important;
        }

            #middle-slider .swiper-pagination-bullet-active .progress-bar {
                position: relative;
                top: 50%;
                left: calc(100% + 10px);
                transform: translateY(-50%);
                width: 40px;
                height: 4px;
                background-color: #89c2f8;
                border-radius: 20px;
            }

        /* Progress Bar Fill */
        #middle-slider .progress-bar-fill {
            width: 0;
            height: 100%;
            background-color: #1366b2;
            transition: width 0.1s linear;
        }
}
