﻿/* Import Prompt from Google Fonts */
/*@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@400;500;600;700&display=swap');*/

@font-face {
    font-family: 'Prompt';
    src: url('/assets/fonts/Prompt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Prompt';
    src: url('/assets/fonts/Prompt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

header {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    height: 90px;
}

body, form {
    font-family: 'Prompt', sans-serif !important;
    font-size: 22px;
    margin: 0px auto;
    min-width: 375px;
    background: white;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

button,
select,
textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="button"],
input[type="submit"] {
    font-family: 'Prompt', sans-serif;
}

.top-margin {
    margin-top: 45px;
}

.top-margin-30 {
    margin-top: 30px;
}


.display-center {
    text-align: center;
}

.twilight-blue-color {
    color: #2737A2 !important;
}


.red-color {
    color: #FF0000 !important;
}

.gold-color {
    color: #8A653A !important;
}

.black-color {
    color: #000000 !important;
}

.icx-textbox {
    width: 100%;
    height: 50px;
    padding: 12px 50px 13px 16px;
    border-radius: 48px 48px 48px 48px;
    border: 1px solid #D7D7D7;
}

.icx-textbox-multi {
    width: 100%;
    height: 120px;
    padding: 12px 16px 13px 16px;
    border-radius: 24px 24px 24px 24px;
    border: 1px solid #D7D7D7;
}




.has-submenu {
    position: relative;
}

    .has-submenu > a {
        /*display: inline-block;*/
        padding: 10px 15px;
    }

.submenu {
    display: none !important;
    position: absolute;
    top: 100%; /* right below the parent */
    left: -20px;
    background: white;
    padding: 10px 0;
    list-style: none;
    min-width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    margin-top: 7px !important;
}

.has-submenu:hover .submenu {
    display: block !important;
}

.has-submenu:hover > a {
    color: #2737A2;
    background-color: white;
    border: 2px solid #2737A2;
    border-radius: 9999px;
    padding: 6px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.submenu li {
    padding: 0px 5px;
}

    /*.submenu li a {
        color: black !important;
        text-decoration: none;
        display: block;
    }*/

    .submenu li a {
        position: relative;
        display: inline-block;
        padding: 6px 20px;
        text-align: center;
        font-size: 16px;
        font-weight: 400;
        text-decoration: none;
        color: black !important;
        transition: all 0.3s ease;
    }

        .submenu li a:hover {
            font-weight: 600;
            color: #000;
        }


            /* Add hyphens visually */
            .submenu li a:hover::before,
            .submenu li a:hover::after {
                content: "-";
                color: #C69C6D;
                font-weight: 500;
                margin: 0 5px;
                display: inline-block !important;
                position: initial !important;
            }

            .submenu li a:hover::before {
                position: absolute;
                left: 0;
            }

            .submenu li a:hover::after {
                position: absolute;
                right: 0;
            }


/*.submenu li a:hover {
            font-weight: 600;
            color: #000;
        }

            .submenu li a:hover::before,
            .submenu li a:hover::after {
                content: "-";
                color: #C69C6D;
                font-weight: 500;
            }*/



.login-form {
    height: 100vh;
    background-color: #f8f9fc;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Background Typography */
.bg-text {
    position: absolute;
    font-size: 8vw;
    color: rgba(0, 0, 0, 0.05);
    font-weight: bold;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}


.top-left {
    top: 20px;
    left: 20px;
    color: white; /* Fill color */
    -webkit-text-stroke: 2px rgba(39, 55, 162, 0.15); /* Border */
    text-stroke: 2px rgba(39, 55, 162, 0.15); /* For future compatibility */
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.bottom-right {
    bottom: 20px;
    right: 20px;
    color: white; /* Fill color */
    -webkit-text-stroke: 2px rgba(39, 55, 162, 0.15); /* Border */
    text-stroke: 2px rgba(39, 55, 162, 0.15); /* For future compatibility */
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

/* Login Container */
.login-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.6); /* <-- Transparent white */
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    text-align: center;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    position: relative;
}

.login-logo {
    height: 60px;
    margin-bottom: 20px;
}


.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/*    .login-form label {
        text-align: left;
        font-weight: 600;
        color: #233;
    }

    .login-form input {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 8px;
    }*/

.login-label {
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #2737A2;
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}

.login-forgot-password-label a {
    text-align: right;
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
    color: #A1A1AA !important;
    width: 100%;
}


.password-wrapper {
    position: relative;
}


    .password-wrapper img {
        position: absolute;
        top: 50%;
        right: 12px;
        width: 24px;
        height: 24px;
        transform: translateY(-50%);
        cursor: pointer;
    }


.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #666;
}
/*
.toggle-password {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

p {
    margin-top: 20px;
    font-size: 14px;
}

a {
    color: #293fa3;
    text-decoration: none;
    font-weight: 600;
}
*/





















.full-button {
    width: 100%;
}

.icx-blue-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px; /*30px;*/
    width: 230px;
    min-width: 80px;
    padding: 2px 16px;
    background-color: #2737A2; /* Twilight Blue */
    color: #FFFFFF; /* White */
    border: 2px solid #2737A2;
    border-radius: 9999px; /* Extra-large pill shape */
    font-weight: 600;
    font-size: 16px;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

    .icx-blue-button:hover {
        background-color: #1f2d85; /* Slightly darker blue on hover */
    }

    .icx-blue-button:active {
        background-color: #1a266e; /* Even darker blue on active */
    }


.icx-blue-small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    min-width: 80px;
    padding: 2px 25px;
    background-color: #2737A2; /* Twilight Blue */
    color: #FFFFFF; /* White */
    border: 2px solid #2737A2;
    border-radius: 9999px; /* Extra-large pill shape */
    font-weight: 600;
    font-size: 16px;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

    .icx-blue-small-button:hover {
        background-color: #1f2d85; /* Slightly darker blue on hover */
    }

    .icx-blue-small-button:active {
        background-color: #1a266e; /* Even darker blue on active */
    }



/* Standard Buttons */
.icx-white-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    min-width: 80px;
    padding: 2px 16px;
    background-color: #FFFFFF;
    color: #2737A2; /* Twilight Blue */
    border: 2px solid #2737A2;
    border-radius: 9999px; /* Extra-large pill shape */
    font-weight: 600;
    font-size: 16px;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .icx-white-button:hover {
        background-color: #2737A2;
        color: white;
    }

    .icx-white-button:active {
        background-color: #e0e6ff;
    }

    .icx-white-button .button-icon {
        width: 18px;
        height: 18px;
        transition: all 0.3s ease;
    }

.icx-white-small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 70px;
    padding: 2px 16px;
    background-color: #FFFFFF;
    color: #2737A2; /* Twilight Blue */
    border: 2px solid #2737A2;
    border-radius: 9999px; /* Extra-large pill shape */
    font-weight: 600;
    font-size: 12px;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

    .icx-white-small-button:hover {
        background-color: #f0f2ff; /* Slight blue tint on hover */
    }

    .icx-white-small-button:active {
        background-color: #e0e6ff;
    }





.top-container {
    z-index: 20000; /*20000;*/
    position: fixed;
    top: 0px;
    width: 100%;
    min-width: 375px;
    /*max-width: 1162px;*/
    height: 90px;
    margin: 0px auto;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}

    .top-container.transparent {
        background-color: rgba(0, 0, 0, 0.5);
    }


.main-container {
    position: relative;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    margin-top: 0px;
    min-height: 100vh;
    min-height: 100vh;
    padding-bottom: 0px;
}

.icx-top-logo {
    width: 90px;
    margin-top: 10px;
}

.top-logo {
    flex: 1; /* Allow logo to take space */
    text-align: right;
    margin-right: 50px;
    /*padding: 0px 0px 0px 100px;*/
}

.top-menu {
    /*flex: 2;*/ /* Give more space to the menu */
    display: flex;
    justify-content: center; /* Center the menu items */
    align-items: center;
}

    .top-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
    }

        .top-menu ul li {
            margin: 0 15px;
        }

            .top-menu ul li a {
                color: #BE976A;
                text-decoration: none;
                font-size: 18px;
                font-weight: 400;
                padding: 5px 0;
                position: relative;
                transition: color 0.3s ease;
            }

                .top-menu ul li a::after {
                    /*content: '';*/
                    display: block;
                    width: 0;
                    height: 5px;
                    background-color: #FCD700; /* Line color below the label */
                    transition: width 0.3s ease;
                    position: absolute;
                    bottom: -5px;
                    left: 50%; /* Start the line at the center */
                    transform: translateX(-50%); /* Center the line */
                    border-radius: 10px; /* Add border-radius for rounded corners */
                }

                .top-menu ul li a.active {
                    /*font-weight: bold;*/
                    color: #2737A2;
                    background-color: white;
                    border: 2px solid #2737A2;
                    border-radius: 9999px;
                    padding: 6px 16px;
                    font-weight: 500;
                    transition: all 0.3s ease;
                }

                    .top-menu ul li a.active::after {
                        /*width: 50%;*/
                    }

    .top-menu > ul > li > a:hover {
        color: #2737A2;
        background-color: white;
        border: 2px solid #2737A2;
        border-radius: 9999px;
        padding: 6px 16px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
/*.top-menu ul li a:hover,
                .top-menu ul li a.active {
                    color: #2737A2;*/ /* Blue text */
/*background-color: white;
                    border: 2px solid #2737A2;
                    border-radius: 9999px;*/ /* pill shape */
/*padding: 6px 16px;
                    font-weight: 500;
                    transition: all 0.3s ease;
                }*/

.top-login {
    /*text-align: -webkit-right;*/
    flex: 1; /* Allow login button to align to the right */
    text-align: left;
    margin-left: 50px;
    /*padding: 0px 100px 0px 0px;*/
}


.top-login-button {
    width: auto; /* Hug width */
    min-width: 80px;
    height: 40px; /* Fixed height */
    min-height: 40px;
    max-height: 40px;
    border-radius: 2rem;
    cursor: pointer;
    display: flex;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    background-color: #2737A2;
    color: white;
    padding: 2px 16px;
}



/* Footer */


.icx-footer {
    background-color: #e7e7ea;
    padding: 10px;
    font-size: 14px;
    color: #000;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    width: 90px;
    height: auto;
    margin-bottom: 16px;
}

.footer-left p {
    margin: 0 0 10px;
    color: #2737A2;
    font-size: 14px;
    line-height: 1.6;
}

.footer-left .copyright {
    margin-top: 10px;
    font-size: 12px;
    color: #8A653A;
}

.footer-right {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-column {
    min-width: 120px;
}

    .footer-column h4 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-column ul li {
            margin-bottom: 8px;
        }

            .footer-column ul li a {
                color: #2737A2;
                text-decoration: none;
            }

                .footer-column ul li a:hover {
                    text-decoration: underline;
                }





/* LINE */
.line-float {
    position: fixed;
    bottom: 80px; /* Adjust spacing above footer if needed */
    right: 40px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    color: #111;
    font-weight: 500;
}

    .line-float img {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        transition: transform 0.3s ease;
    }

        .line-float img:hover {
            transform: scale(1.1);
        }

    .line-float span {
        margin-top: 8px;
        font-size: 14px;
        color: #000;
    }












.top-section {
    width: 100%;
    max-width: 1366px;
    height: 691px;
    background: #2737A2;
    /*padding: 60px 20px;*/
    color: white;
    display: flex;
    align-items: center;
}

.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 60px;
}


.left {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

    .left h1 {
        font-size: 42px;
        font-weight: 600;
        line-height: 1;
        margin-bottom: 20px;
    }

    .left p {
        font-size: 24px;
        font-weight: 400;
        margin-bottom: 30px;
    }


.right {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}



.tab-1-info-content {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

    .tab-1-info-content .right {
        /*max-width: 535px;*/
        width: 100%;
        /*padding: 24px;*/
        border-radius: 8px;
        background-color: #fff;
        box-sizing: border-box;
        align-items: flex-start;
        justify-content: center;
        flex-wrap: wrap;
        line-height: 1.3;
    }

        .tab-1-info-content .right h1 {
            font-size: 42px;
            font-weight: 600;
            color: #2737A2; /* matches your main theme */
            margin-bottom: 16px;
        }

        .tab-1-info-content .right p {
            font-size: 24px;
            font-weight: 400;
            line-height: 1.3;
            color: #333;
            text-align: justify;
        }

.tab-2-info-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 10px;
}


    /* Optional Layout Styling */
    .tab-2-info-content .image-row {
        display: flex;
        justify-content: center;
        width: 100%;
        /*gap: 0px;*/
    }

        .tab-2-info-content .image-row img {
            /*width: 200px;*/
            height: auto;
            /*border-radius: 8px;*/
        }

    .tab-2-info-content .slogan {
        display: inline-block;
        font-size: 24px;
        font-weight: 400;
        text-align: center;
        width: 1000px;
        margin: 0 auto;
    }


    .tab-2-info-content p {
        font-size: 24px;
        font-weight: 400;
        text-align: justify;
        margin: 0px;
    }


.tab-3-info-content {
    /*    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;*/
    max-width: 1200px;
    margin: 0 auto;
}

    .tab-3-info-content h2 {
        text-align: center;
        padding: 20px 0px;
        font-size: 20px;
        text-align: center;
        background: linear-gradient(90deg, #2737A2 -5.96%, #131832 107.95%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    row-gap: 40px;
    column-gap: 90px;
    text-align: justify;
}

.card {
    border: 1px solid #8A653A;
    padding: 12px;
    border-radius: 12px;
    height: 130px;
}

    .card h3 {
        font-size: 18px;
        font-weight: 500;
        color: #2737A2;
        margin-bottom: 0px;
    }

    .card p {
        font-size: 14px;
        font-weight: 400;
        margin-top: 5px;
    }

        .card p .bold-style {
            font-size: 16px;
            font-weight: 500;
        }




.top-section-image {
    width: 679px;
    height: auto;
}

.our-experience-image {
    width: 600px;
    height: auto;
}









.tabs {
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Prompt', sans-serif;
}

.tab-buttons {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 0 10px;
}

.tab-btn {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    color: #888888;
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
}

    .tab-btn:hover {
        color: #2737A2;
    }

    .tab-btn::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 3px;
        background: transparent;
        transition: all 0.3s ease;
    }

    .tab-btn.active {
        color: #2737A2;
        font-weight: 600;
    }

        .tab-btn.active::after {
            background: #C69C6D; /* Highlight underline color */
        }

.tab-content {
    position: relative;
    min-height: 200px;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    position: absolute;
    width: 100%;
}

    .tab-panel.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
        position: relative;
    }


.our-partner-section {
    background: #FAFAFA;
    height: 162px;
    padding: 10px 0px;
}

    .our-partner-section h2 {
        font-size: 20px;
        text-align: center;
        background: linear-gradient(90deg, #2737A2 -5.96%, #131832 107.95%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .our-partner-section .partner-marquee {
        overflow: hidden;
        width: 900px;
        position: relative;
        margin: 0 auto;
    }

    .our-partner-section .partner-track {
        display: flex;
        gap: 40px;
        animation: scroll-left 20s linear infinite;
        width: fit-content;
    }

        .our-partner-section .partner-track img {
            height: 60px;
            object-fit: contain;
            user-select: none;
            pointer-events: none;
        }

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}



.recommended-courses-section {
    width: 100%;
    max-width: 1366px;
    text-align: center;
    padding: 40px 20px;
}

    .recommended-courses-section h2 {
        font-size: 42px;
        font-weight: 500;
        /*color: #2737A2;*/
        margin-top: 0px;
        margin-bottom: 20px;
        text-align: center;
        background: linear-gradient(90deg, #2737A2 -5.96%, #131832 107.95%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .recommended-courses-section .course-tabs {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-bottom: 30px;
    }

        .recommended-courses-section .course-tabs .tab {
            background: none;
            border: none;
            font-size: 16px;
            color: #2737A2;
            cursor: pointer;
            position: relative;
            font-weight: 500;
        }

            .recommended-courses-section .course-tabs .tab.active::after {
                content: "";
                width: 28px;
                height: 3px;
                background: #c69c6d;
                position: absolute;
                left: 50%;
                bottom: -8px;
                transform: translateX(-50%);
                border-radius: 2px;
            }

    .recommended-courses-section .carousel-wrapper {
        position: relative;
        overflow: hidden;
        max-width: 1240px;
        margin: 0 auto;
        padding: 0px 85px;
    }

    .recommended-courses-section .carousel-track {
        /*display: flex;
        gap: 120px;
        transition: transform 0.5s ease;*/
        display: flex;
        gap: 120px;
        transition: transform 0.5s ease-in-out;
    }


.course-card {
    position: relative;
    width: 320px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-shrink: 0;
    flex: 0 0 calc((100% - (gap * (cardsPerPage - 1))) / cardsPerPage);
    box-sizing: border-box;
}

.course-img {
    width: 100%;
    height: auto;
}

.course-info {
    position: relative;
    bottom: 100px;
    height: 100px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-sizing: border-box;
    padding: 7px;
}

.left-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
}

    .left-info h3 {
        font-size: 16px;
        font-weight: 500;
        margin: 0px;
        color: #fff;
    }

    .left-info p {
        font-size: 14px;
        color: #ddd;
        margin: 0 0 4px;
    }

    .left-info .rating {
        font-size: 14px;
        color: #ffd700;
    }

.right-info {
    flex-shrink: 0;
}

    .right-info .btn {
        background-color: #fff;
        color: #2737A2;
        font-weight: 600;
        font-size: 14px;
        padding: 6px 14px;
        border-radius: 24px;
        text-decoration: none;
        border: 2px solid #2737A2;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

        .right-info .btn:hover {
            background-color: #2737A2;
            color: white;
        }



.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
}

    .nav.prev {
        left: 5px; /* Adjust depending on spacing */
        background-color: #C0966A; /* gold */
    }

    .nav.next {
        right: 5px; /* Adjust accordingly */
        background-color: #C0966A; /* gold */
    }

    .nav.disabled {
        background-color: #E5E5E5;
        cursor: default;
        pointer-events: none;
        opacity: 0.5; /* Optional visual cue */
    }

.recommended-courses-section .pagination-dots .dot {
    width: 10px;
    height: 10px;
    background: #e0cdb0;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .recommended-courses-section .pagination-dots .dot.active {
        width: 40px;
        background: #916738;
        border-radius: 10px;
    }




.our-experience-section {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

    .our-experience-section .right {
        max-width: 535px;
        width: 100%;
        /*padding: 24px;*/
        border-radius: 8px;
        background-color: #fff;
        box-sizing: border-box;
        align-items: flex-start;
        justify-content: center;
        flex-wrap: wrap;
        line-height: 1.3;
    }

        .our-experience-section .right h2 {
            color: #2737A2;
            font-size: 26px;
            font-weight: 500;
            margin-top: 0px;
            margin-bottom: 10px;
        }

        .our-experience-section .right p {
            font-size: 24px;
            font-weight: 400;
            color: #27272A;
            text-align: justify;
            margin: 16px 0px;
        }



.our-review-section {
    width: 100%;
    max-width: 1366px;
    text-align: center;
    padding: 40px 20px;
}

    .our-review-section h2 {
        width: 1200px;
        font-size: 42px;
        font-weight: 500;
        margin: 0 auto;
        text-align: left;
        background: linear-gradient(90deg, #2737A2 -5.96%, #131832 107.95%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .our-review-section .carousel-wrapper {
        position: relative;
        overflow: hidden;
        max-width: 1240px;
        margin: 0 auto;
        padding: 0px 60px;
    }

    .our-review-section .review-carousel-track {
        display: flex;
        gap: 100px;
        transition: transform 0.5s ease;
    }


.review-card {
    border: 3px solid transparent;
    border-radius: 0 24px 0 24px;
    background-clip: padding-box;
    background-color: white;
    position: relative;
    padding: 10px;
    width: 320px;
    margin: 2rem auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

    .review-card::before {
        content: "";
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: 0 24px 0 24px;
        background: linear-gradient(90deg, #2737A2 -5.96%, #131832 107.95%);
        z-index: -1;
    }

    .review-card .quote-title {
        font-size: 18px;
        font-weight: 600;
        color: #2737A2;
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .review-card .review-desc {
        font-size: 14px;
        color: #333;
        text-align: justify;
        margin-bottom: 20px;
    }

    .review-card hr {
        border: none;
        border-top: 1px solid #ddd;
        margin-bottom: 15px;
    }


    .review-card .reviewer {
        display: flex;
        gap: 15px;
        align-items: center;
        justify-content: left;
    }

        .review-card .reviewer .reviewer-image {
            width: 25px;
            height: 25px;
        }

        .review-card .reviewer .reviewer-info {
        }

        .review-card .reviewer .name {
            font-size: 14px;
            font-weight: 600;
            color: #2737A2;
            text-align: left;
        }

        .review-card .reviewer .position {
            font-size: 12px;
            color: #999;
            text-align: left;
        }


.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
}

    .review-nav.prev {
        left: 5px; /* Adjust depending on spacing */
        background-color: #C0966A; /* gold */
    }

    .review-nav.next {
        right: 5px; /* Adjust accordingly */
        background-color: #C0966A; /* gold */
    }

    .review-nav.disabled {
        background-color: #E5E5E5;
        cursor: default;
        pointer-events: none;
        opacity: 0.5; /* Optional visual cue */
    }

.review-pagination-dots .dot {
    width: 10px;
    height: 10px;
    background: #e0cdb0;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .review-pagination-dots .dot.active {
        width: 40px;
        background: #916738;
        border-radius: 10px;
    }



.about-us-container {
}

.about-us-top-section {
    width: 100%;
    max-width: 1366px;
    height: 438px;
    background: url('../../assets/images/about-us.png') no-repeat center center;
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
}

    .about-us-top-section::before {
        content: "";
        position: absolute;
        height: 438px;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.4); /* semi-transparent black */
        z-index: 1;
    }

    .about-us-top-section h1 {
        width: 100%;
        font-size: 42px;
        font-weight: 600;
        text-align: center;
        z-index: 2;
    }



.icx-business-solution-image {
    width: 638px;
    height: auto;
}

.our-mission-section {
}

    .our-mission-section h1 {
        font-size: 42px;
        font-weight: 500;
        /*color: #2737A2;*/
        margin-bottom: 20px;
        text-align: center;
        background: linear-gradient(90deg, #2737A2 -5.96%, #131832 107.95%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }


.our-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
    gap: 100px;
    justify-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.our-mission-card {
    background-color: #EAD9C8;
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

    .our-mission-card h2 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .our-mission-card h3 {
        font-size: 16px;
        font-weight: 400;
        margin-top: 0px;
    }

    .our-mission-card img {
        width: 40px;
        height: 40px;
        background: white;
        border-radius: 50%;
        padding: 6px;
        object-fit: contain;
    }

    .our-mission-card span {
        font-size: 16px;
        font-weight: 500;
        color: #27272A;
        text-align: left;
    }


.about-us-partner-section {
}

    .about-us-partner-section h1 {
        font-size: 42px;
        font-weight: 600;
        margin-bottom: 20px;
        text-align: center;
        background: linear-gradient(90deg, #2737A2 -5.96%, #131832 107.95%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .about-us-partner-section p {
        font-size: 24px;
        font-weight: 400;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        text-align: justify;
    }

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    column-gap: 110px; /* horizontal gap */
    row-gap: 30px; /* smaller vertical gap */
    justify-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-icon {
    width: 103px;
    height: 103px;
    object-fit: contain;
    border-radius: 12px;
}


.our-team-container {
}


.our-team-top-section {
    width: 100%;
    max-width: 1366px;
    height: 438px;
    background: url('../../assets/images/our-team.png') no-repeat center center;
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
}

    .our-team-top-section::before {
        content: "";
        position: absolute;
        height: 438px;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.4); /* semi-transparent black */
        z-index: 1;
    }

    .our-team-top-section h1 {
        width: 100%;
        font-size: 42px;
        font-weight: 600;
        text-align: center;
        z-index: 2;
    }

.our-team-organization-list {
}

    .our-team-organization-list h1 {
        font-size: 42px;
        font-weight: 600;
        margin-bottom: 20px;
        text-align: center;
        background: linear-gradient(90deg, #2737A2 -5.96%, #131832 107.95%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }





.team-section {
    position: relative;
    padding: 100px 20px;
    background-color: white;
    overflow: hidden;
}

.team-bg-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 1.2;
    font-size: 120px;
    font-weight: 700;
    color: rgba(39, 55, 162, 0.05); /* twilight blue with low opacity */
    font-family: 'Prompt', sans-serif;
    z-index: 0;
    text-align: center;
    pointer-events: none;
    user-select: none;
}

    .team-bg-text div {
        white-space: nowrap;
    }



.our-team-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
    margin-top: 20px;
}

.our-team-filter-btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 999px;
    border: 2px solid #2737A2;
    color: #2737A2;
    background: white;
    cursor: pointer;
    min-width: 160px;
    transition: all 0.3s ease;
}

    .our-team-filter-btn:hover {
        background: #2737A2;
        color: white;
    }

    .our-team-filter-btn.active {
        background: #2737A2;
        color: white;
    }

.our-team-display-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.our-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    justify-items: center;
    text-align: center;
}

.our-team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.our-team-card h4 {
    margin-top: 10px;
    font-size: 16px;
    color: #2737A2;
    font-weight: 600;
}

.our-team-card p {
    font-size: 13px;
    color: #000;
    margin-top: 4px;
}





.online-course-search-section {
    width: 1124px;
    border: 1.5px solid #2737A2;
    border-radius: 12px;
    margin: 30px auto;
    padding: 10px;
    text-align: center;
}

    .online-course-search-section h2 {
        color: #2737A2;
        margin-bottom: 20px;
        margin-top: 5px;
        font-size: 20px;
        font-weight: 500;
    }


    .online-course-search-section .search-row {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .online-course-search-section input[type="text"] {
        width: 75% !important;
        font-size: 14px;
    }

.search-btn {
    background-color: #2737A2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, max-height 0.3s ease 0.2s; /* <- delay shrinking */
}

    .filters.show {
        max-height: 300px; /* match actual height */
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        margin-top: 20px;
    }


.filter-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 30%;
    min-width: 180px; /* ensures a consistent dropdown width */
}

    .filter-group label {
        margin-bottom: 4px;
        font-size: 14px;
        font-weight: 400;
        color: #2737A2;
    }

    .filter-group select {
        width: 100%;
        padding: 15px 40px 15px 16px;
        border-radius: 30px;
        border: 1px solid #000;
        font-size: 14px;
        appearance: none;
        background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='10' viewBox='0 0 20 20' width='10' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 20,0 10,10'/></svg>");
        background-repeat: no-repeat;
        background-position: right 17px top 23px;
        background-size: 12px;
    }

.toggle-advanced {
    margin-top: 20px;
}

    .toggle-advanced button {
        background: none;
        border: none;
        font-size: 16px; /* Bigger text */
        font-weight: 500;
        color: #333;
        cursor: pointer;
        display: inline-flex;
        align-items: center; /* ✅ vertically center */
        justify-content: center;
        gap: 6px; /* space between text and icon */
        padding: 10px 16px;
    }

        .toggle-advanced button img {
            transition: transform 0.3s ease;
        }

.filters.show ~ .toggle-advanced button img {
    transform: rotate(180deg);
}


#toggleIcon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    transform: translateY(1px); /* fine-tune vertical alignment */
}

.hidden {
    display: none;
}




.all-courses-section {
    margin: 20px auto;
    padding: 0 20px;
    max-width: 1200px;
}


.all-courses-header {
    display: flex;
    align-items: center;
    gap: 12px;
    /*margin-bottom: 24px;*/
}

    .all-courses-header .title {
        font-size: 33px;
        font-weight: 500;
        background: linear-gradient(90deg, #2737A2 -5.96%, #131832 107.95%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .all-courses-header .line {
        flex-grow: 1;
        height: 2px;
        background-color: #DECAB2; /* gold line */
        margin: 0 12px;
    }

    .all-courses-header .see-all {
        font-size: 16px;
        font-weight: 600;
        color: #2737A2;
        text-decoration: none;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 4px;
    }

.all-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
    row-gap: 40px;
    column-gap: 60px;
    text-align: justify;
}


.all-course-card {
    position: relative;
    width: 252px;
    height: 317px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.all-course-img {
    width: 100%;
    height: auto;
}

.all-course-info {
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
    color: white;
    position: relative;
    bottom: 100px;
    height: 100px;
}

    .all-course-info .course-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 6px;
        white-space: normal;
        position: inherit;
        margin: 5px;
        z-index: 2;
    }

    .all-course-info .card-bottom {
        position: relative;
        bottom: 40px;
        height: 130px;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
        box-sizing: border-box;
        padding: 7px;
    }

        .all-course-info .card-bottom .left-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            flex: 1;
        }

            .all-course-info .card-bottom .left-info p {
                font-size: 14px;
                color: #ddd;
                margin: 0 0 4px;
            }

            .all-course-info .card-bottom .left-info .rating {
                font-size: 14px;
                color: #ffd700;
            }

        .all-course-info .card-bottom .right-info {
            flex-shrink: 0;
        }

            .all-course-info .card-bottom .right-info .btn {
                background-color: #fff;
                color: #2737A2;
                font-weight: 600;
                font-size: 14px;
                padding: 6px 14px;
                border-radius: 24px;
                text-decoration: none;
                border: 2px solid #2737A2;
                transition: all 0.3s ease;
                white-space: nowrap;
            }

                .all-course-info .card-bottom .right-info .btn:hover {
                    background-color: #2737A2;
                    color: white;
                }



.online-course-detail-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    /* column-gap: 20px; */
}

.course-detail-header {
    display: flex;
    max-width: 1124px;
    height: 438px;
    border: 1px solid #cfd8dc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background-color: #fff;
}

.course-detail-image {
    position: relative;
    width: 50%;
}

    .course-detail-image .course-detail-image {
        width: 560px;
        height: 438px;
    }

    .course-detail-image .instructor-info {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        color: white;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        padding: 15px;
        box-sizing: border-box;
    }

        .course-detail-image .instructor-info .name {
            font-weight: bold;
            font-size: 16px;
        }

        .course-detail-image .instructor-info .title {
            font-size: 14px;
        }

        .course-detail-image .instructor-info .rating {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 20px;
            font-weight: 500;
            /*background-color: #222;*/
            padding: 3px 6px;
            border-radius: 8px;
        }



.course-detail-info {
    /*width: 55%;*/
    background-color: #D3D8F5;
    padding: 24px;
    position: relative;
    padding-bottom: 80px;
}

    .course-detail-info .tag {
        background-color: #C0986A;
        display: inline-block;
        padding: 4px 10px;
        font-size: 16px;
        font-weight: 400;
        color: #FFFFFF;
        border-radius: 20px;
        margin-bottom: 10px;
    }

    .course-detail-info .course-title {
        font-size: 33px;
        font-weight: 500;
        color: #2737A2;
        margin: 10px 0px;
    }

    .course-detail-info .course-meta {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 8px;
        font-size: 16px;
        font-weight: 400;
        color: #8A653A;
    }

        .course-detail-info .course-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

    .course-detail-info .meta-icon {
        width: 16px;
        height: 16px;
        display: inline-block;
    }

    .course-detail-info .course-description {
        margin: 20px 0;
        font-size: 14px;
        color: #333;
        line-height: 1.6;
        max-height: 110px;
        overflow: hidden;
        text-overflow: ellipsis;
    }


    .course-detail-info .course-detail-enroll-button {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

.course-detail-description-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1124px;
}

.course-detail-description-left {
    font-size: 18px;
    font-weight: 400;
    width: 60%;
    max-width: 675px;
}

    .course-detail-description-left nav {
    }

.course-detail-description-right {
    margin-top: 75px;
}

    .course-detail-description-right h2 {
        font-size: 20px;
        font-weight: 500;
    }

.course-detail-outcome-item {
    width: 100%;
    height: 78px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background: #EEE2D5;
    margin: 20px 0px 0px 0px;
    padding: 0px 20px;
    font-size: 16px;
    font-weight: 400;
    box-sizing: border-box;
}


.course-tabs {
    display: flex;
    gap: 45px;
    padding: 16px 0;
    border-bottom: 1px solid #ddd;
    background: white;
    /*position: sticky;*/ /*turn on if you want the tabs are on the top*/
    top: 0;
    z-index: 100;
}

    .course-tabs a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
        padding: 8px 0;
        position: relative;
        transition: color 0.3s ease;
    }

        .course-tabs a:hover,
        .course-tabs a.active {
            color: #2737A2;
        }

            .course-tabs a:hover::after,
            .course-tabs a.active::after {
                content: '';
                position: absolute;
                left: 50%;
                bottom: 0;
                transform: translateX(-50%);
                width: 36px;
                height: 4px;
                background-color: #b78a56; /* golden brown */
                border-radius: 4px;
            }


.course-detail-title {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .course-detail-title h2 {
        font-size: 20px;
        font-weight: 500;
    }


.line {
    flex-grow: 1;
    height: 2px;
    background-color: #DECAB2; /* gold line */
    margin: 0 12px;
}


.course-detail-content {
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
}




.chapter-list {
    font-family: 'Prompt', sans-serif;
    max-width: 800px;
    margin: auto;
    width: 100%;
}

.chapter {
    border-bottom: 1px solid #eee;
    cursor: pointer;
    padding: 15px 0;
}

.chapter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.chapter-title {
    font-size: 16px;
    font-weight: 400;
    flex-grow: 1;
}

.arrow {
    width: 25px;
    height: 25px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.lesson-list {
    /*max-height: 0;
    overflow: hidden;*/
    /*display: none;*/
    /*transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 16px;*/
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    transition: max-height 0.4s ease, padding 0.4s ease;
    display: none; /* default hidden */
}

    /*.lesson-list.expanded {*/
    /* max-height: 500px;*/
    /* display: block;*/
    /*max-height: 500px;*/ /* or use max-content if supported */
    /*visibility: visible;
        opacity: 1;
        padding: 10px 16px 16px;
    }*/


    .lesson-list.expanding,
    .lesson-list.collapsing {
        display: block; /* allow animation */
    }

    .lesson-list.expanding {
        max-height: 500px;
        padding: 10px 16px 16px;
    }

    .lesson-list.collapsing {
        max-height: 0;
        padding: 0 16px;
    }

    .lesson-list li {
        font-size: 14px;
        color: #333;
        line-height: 1.6;
        margin-left: 15px;
    }









.course-instructor-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.course-instructor-card-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.course-instructor-card-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.course-instructor-card-name {
    /*font-weight: 600;
    font-size: 18px;*/
    color: #8A653A;
}

.course-instructor-card-position {
    font-size: 12px;
    color: #A1A1AA;
}























.online-course-video-section {
    width: 100%;
    max-width: 1366px;
    min-height: 100vh;
    margin: 20px auto;
}

.online-course-video-detail-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
}

.online-course-video-left-section {
    /*padding: 10px;*/
    width: 60%;
    max-width: 800px;
    box-sizing: border-box;
}

.online-course-video-header-title {
}

.online-course-video-header-author {
}

.online-course-video-right-section {
    width: 40%;
    height: 64px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px 0px 20px;
    box-sizing: border-box;
    gap: 20px;
}

.online-course-video-player {
    /*position: relative;
    width: 70%;
    max-width: 800px;
    margin: 0px !important;*/
}

.video-frame {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: auto 16/9;
}





.online-course-video-status-section {
    width: 100%;
    height: 64px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px 0px 20px;
    border: 2px solid #2737A2;
    box-sizing: border-box;
}

.online-course-video-status-title {
}

.online-course-video-status-percent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    max-width: 200px;
}

.progress-percent {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.progress-ring {
    transform: rotate(-90deg); /* Start at 12 o'clock */
}

.progress-ring__track,
.progress-ring__circle {
    fill: none;
}

.progress-ring__track {
    stroke: #C69C6D; /* Brown base ring */
}

.progress-ring__circle {
    stroke: #2737A2; /* Blue progress ring */
    stroke-linecap: round;
    stroke-dasharray: 0 283;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.5s ease;
}

.progress-ring__dot {
    fill: #2737A2;
    transform-origin: 50px 50px;
    display: none;
}

.progress-text {
    position: absolute;
    font-size: 14px;
    font-weight: 600;
}


.online-course-video-courseoutline {
    width: 100%;
    /*width: 40%;
    max-width: 450px;*/
    /*height: 489px;
    overflow-y: auto;
    position: absolute;*/
}


.online-course-video-courseoutline-chapter {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.online-course-video-chapter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px;
    cursor: pointer;
}

.online-course-video-chapter-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.online-course-video-chapter-header-flex-info {
    font-size: 16px;
    font-weight: 500;
}

.online-course-video-chapter-detail {
    font-size: 14px;
    font-weight: 400;
}

.online-course-video-chapter-header-flex-collapse {
}

.online-course-video-chapter-icon-collapse {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    transition: transform 0.3s;
}

    .online-course-video-chapter-icon-collapse.collapsed {
        transform: rotate(180deg);
    }

.online-course-video-lesson-content {
}


    /* Custom scrollbar for WebKit browsers (Chrome, Safari) */
    .online-course-video-lesson-content::-webkit-scrollbar {
        width: 8px; /* Width of the scrollbar */
    }

    .online-course-video-lesson-content::-webkit-scrollbar-track {
        background: transparent; /* Transparent or light background for the track */
        border-radius: 8px; /* Rounded corners for the track */
    }

    .online-course-video-lesson-content::-webkit-scrollbar-thumb {
        background-color: #e14141; /* Color for the scrollbar thumb */
        border-radius: 4px; /* Rounded corners for the thumb */
        border: 2px solid #ffffff; /* Creates a space effect around the thumb */
    }

/* Custom scrollbar for Firefox */
.online-course-video-lesson-content {
    scrollbar-width: thin; /* Thin scrollbar */
    scrollbar-color: #e14141 transparent; /* Thumb color and track color for Firefox */
}

/* Optional: Smooth scrolling effect for the scroll container */
.online-course-video-lesson-content {
    scroll-behavior: smooth;
}

.online-course-video-lesson-item {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 4px;
    /* background-color: #fdf4d4; */
    /* margin-bottom: 8px; */
    cursor: pointer;
    transition: background-color 0.3s;
}

    .online-course-video-lesson-item.active {
        background-color: #fff3d2;
    }



.online-course-video-lesson-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.online-course-video-lesson-detail-play {
    display: flex;
    align-items: center;
    width: 35px;
}

    .online-course-video-lesson-detail-play input {
        padding: 0px !important;
    }

.online-course-video-lesson-detail-lesson {
    flex-grow: 1;
    display: block;
    text-align: left;
}

.online-course-video-lesson-detail-duration {
    flex-shrink: 0;
    margin-left: 12px;
    align-self: center;
}

.online-course-video-lesson-title {
    margin: 0;
    color: #333;
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.online-course-video-lesson-time,
.online-course-video-lesson-quiz {
    color: #888;
    display: block;
    font-size: 14px;
    font-weight: 400;
}


.quiz-div {
    display: inline-block;
}


.seminar-course-container {
}

    .seminar-course-container h1 {
        padding: 20px 0px;
        font-size: 42px;
        font-weight: 500;
        text-align: left;
        background: linear-gradient(90deg, #2737A2 -5.96%, #131832 107.95%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin: 10px 0px;
    }




.seminar-course-section {
    width: 100%;
    max-width: 1366px;
    height: 691px;
    background: url('../../assets/images/seminar-course.png') no-repeat center center;
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
}


.seminar-course-content-section {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-direction: row;
}

.seminar-course-card {
    background: #E5D5C3;
    padding: 10px 25px;
    border-radius: 16px;
    display: inline-block;
}

.seminar-course-image-section {
    width: 100%;
    max-width: 1366px;
    margin: 50px auto;
}

.seminar-image-description {
    width: 1366px;
    height: auto;
}

.seminar-course-info-section {
}

    .seminar-course-info-section h1 {
        font-size: 42px;
        font-weight: 500;
        background: linear-gradient(90deg, #2737A2 -5.96%, #131832 107.95%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin: 0px;
    }


.seminar-course-info-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-bottom: 30px;
}


.seminar-course-info-column {
}


.seminar-course-info-column {
    flex: 1 1 400px;
    max-width: 550px;
    font-size: 24px;
    font-weight: 400;
}

    .seminar-course-info-column p {
        margin-bottom: 20px;
        line-height: 1.4;
    }


    .seminar-course-info-column strong {
        color: #2737A2;
        font-size: 24px;
        font-weight: 600;
    }


.corporate-course-container {
}

    .corporate-course-container h1 {
        text-align: center;
        padding: 10px 0px;
        font-size: 42px;
        font-weight: 600;
        text-align: center;
        background: linear-gradient(90deg, #2737A2 -5.96%, #131832 107.95%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 0px;
    }

    .corporate-course-container p {
        font-size: 24px;
        font-weight: 500;
        text-align: center;
        margin: 0px;
    }


.corporate-course-section {
    width: 100%;
    max-width: 1366px;
    height: 691px;
    background: url('../../assets/images/corporate-course.png') no-repeat center center;
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
}

.corporate-course-image-list-section {
    width: 100%;
    max-width: 1366px;
    align-items: center;
    margin: 25px auto;
    display: flex;
    flex-direction: column;
}

    .corporate-course-image-list-section h2 {
        font-size: 33px;
        font-weight: 600;
        background: linear-gradient(90deg, #2737A2 -5.96%, #131832 107.95%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: center;
        width: 100%;
    }

    .corporate-course-image-list-section img {
        margin: 0 auto;
    }

.corporate-course-content-section {
    width: 100%;
    max-width: 1366px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 25px 0px;
}


/* Wrapper for content and bullets */
.course-slide-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /*position: relative;*/
    width: 100%;
}


/* Slide Items */
/*.slide-item {
    display: none;
    width: 100%;
}

    .slide-item.active {
        display: flex;*/ /* Or block depending on your layout */
/*}*/

.slide-item {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    width: 100%;
    justify-content: space-between;
}

    .slide-item.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        position: relative;
    }


/* Right-side bullet nav */
.corporate-bullet-nav {
    list-style: none;
    padding: 0;
    margin: 0 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

/* Bullets */
.bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .bullet.active {
        width: 10px;
        height: 30px;
        background-color: #2737A2;
        border-radius: 20px;
    }





.corporate-course-process-section {
    width: 100%;
    max-width: 1366px;
    display: flex;
    margin: 60px 0px;
}

.corporate-course-process-context-section {
    padding: 30px 60px;
}

    .corporate-course-process-context-section h2 {
        text-align: left;
        font-size: 42px;
        font-weight: 500;
        background: linear-gradient(90deg, #2737A2 -5.96%, #131832 107.95%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin: 15px 0px;
    }

    .corporate-course-process-context-section p {
        font-size: 24px;
        font-weight: 500;
        color: #2737A2;
        text-align: left;
        margin: 20px 0px;
    }

    .corporate-course-process-context-section ul {
        list-style: none;
        padding-left: 2.5em;
        line-height: 2.5em; /* Adjust this to get the desired spacing */
        margin: 0;
    }

        .corporate-course-process-context-section ul li::before {
            content: "•";
            color: #8A653A;
            font-size: 1.5em;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1.5em;
            vertical-align: middle;
        }


.corporate-course-image-section {
    /*width: 45%;*/
}

.corporate-course-context-section {
}

    .corporate-course-context-section h1 {
        font-size: 42px;
        font-weight: 600;
        text-align: center;
        color: #2737A2;
        margin: 0px 50px;
    }

    .corporate-course-context-section h3 {
        color: #2737A2;
        font-size: 28px;
        font-weight: 500;
    }

    .corporate-course-context-section p {
        font-size: 20px;
        font-weight: 500;
        text-align: left;
        max-width: 640px;
    }

.corporate-image {
}

.corporate-course-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    margin-top: 30px;
}

.corporate-course-icon {
    width: 48px;
    height: 48px;
}



.real-experience-container {
}

    .real-experience-container h1 {
        text-align: left;
        font-size: 42px;
        font-weight: 500;
        color: #2737A2;
        margin-bottom: 10px;
    }


.real-experience-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 50px;
}

.real-experience-context-section {
    width: 65%;
}

.real-experience-image-section {
    /*width: 35%;*/
}


.real-experience-image-profile {
    width: 360px;
    height: 360px;
    border-radius: 100px;
}

.real-experience-image-center {
    width: 1120px;
    height: auto;
    margin: 0 auto;
}

.real-experience-why-context {
    background: #EEE2D5;
    border-radius: 16px;
    padding: 15px;
    font-size: 28px;
    font-weight: 500;
}




.contact-us-container {
}

    .contact-us-container h1 {
        text-align: center;
        padding: 0px;
        margin: 10px;
        font-size: 42px;
        font-weight: 500;
        text-align: center;
        background: linear-gradient(90deg, #2737A2 -5.96%, #131832 107.95%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .contact-us-container h3 {
        text-align: center;
        font-size: 18px;
        font-weight: 400;
    }


.contact-us-section {
}


.contact-us-info {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

    .contact-us-info .contact-left-section {
        flex: 0 0 40%;
        background: #EEE2D5;
        padding: 20px;
        border-radius: 15px;
    }

        .contact-us-info .contact-left-section h3 {
            font-size: 30px;
            font-weight: 700;
            margin: 0px;
        }

.working-hour-info {
    color: #212124;
    text-align: center;
    width: 100%;
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
}

.contact-us-info .contact-right-section {
    flex: 1;
    background: #FAFAFA;
    border-radius: 15px;
    padding: 20px;
}

    .contact-us-info .contact-right-section h1 {
        font-size: 26px;
        font-weight: 500;
        margin: 10px 0px;
    }

.contact-us-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.contact-us-icon {
    width: 25px;
    height: 25px;
}

.contact-us-icon-text {
    margin-left: 10px;
}

.contact-us-google-map-label {
    font-size: 24px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

    .contact-us-google-map-label a {
        cursor: pointer;
        transition: all 0.2s ease;
        text-decoration: none;
    }

.contact-us-google-map-location {
    width: 400px;
    height: 250px;
    margin: 0 auto;
}

.contact-right-text-container {
    font-size: 16px;
    font-weight: 400;
}

.contact-rights-send-message-input {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.form-header {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 16px;
    font-weight: 400;
    margin-left: 10px;
}

    .form-header.center {
        justify-content: center;
    }


.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

    .form-row.center {
        justify-content: center;
    }

input, textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    /*width: 100%;*/
    box-sizing: border-box;
}

.half {
    flex: 1 1 calc(50% - 10px);
}

.full {
    flex: 1 1 100%;
}




/* The Modal (background) */

.modal {
    display: none;
    position: fixed;
    z-index: 5;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-header {
    /*background: #007bff;
    color: white;*/
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    /*display: flex;
    justify-content: space-between;
    align-items: center;*/
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-title {
    font-size: 20px;
    font-weight: 500;
    color: #2737A2;
}

.modal-close {
    cursor: pointer;
    font-size: 24px;
}

.modal-body {
    overflow-y: auto;
    padding: 0px 33px !important;
    flex: 1;
    font-size: 16px;
    font-weight: 400;
}


.modal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px; /*30px;*/
    /*width: 230px;*/
    min-width: 80px;
    padding: 2px 16px;
    background-color: #2737A2; /* Twilight Blue */
    color: #FFFFFF; /* White */
    border: 2px solid #2737A2;
    border-radius: 9999px; /* Extra-large pill shape */
    font-weight: 600;
    font-size: 16px;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

    .modal-button:hover {
        background-color: #1f2d85; /* Slightly darker blue on hover */
    }

    .modal-button:active {
        background-color: #1a266e; /* Even darker blue on active */
    }




.information-content {
    position: relative;
    height: 240px;
    top: 200px;
    background: #FFFFFF;
    box-shadow: 0px 4px 2px rgba(117, 117, 117, 0.35);
    border-radius: 5px;
    margin: 0px auto;
    width: 85%;
    max-width: 300px;
    min-width: 300px;
    text-align: center;
    padding: 20px;
}

.icon-success {
}




/*   Menu  Mobile  */
.mobile-menu {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    background-color: white;
    width: 260px;
    height: 100vh;
    z-index: 20000;
    padding-left: 20px;
    text-align: left;
}

    .mobile-menu ul {
        list-style: none;
        padding: 0;
    }

        .mobile-menu ul li {
            margin: 20px 0;
        }

            .mobile-menu ul li a {
                color: black;
                font-size: 24px;
                text-decoration: none;
                padding-left: 10px;
            }

                .mobile-menu ul li a.active {
                    font-weight: bold;
                    position: relative;
                    color: black; /* Change text color if needed */
                    left: 10px;
                }

                    .mobile-menu ul li a.active::before {
                        content: '';
                        position: absolute;
                        left: 0px; /* Adjust depending on the layout */
                        top: 6px;
                        width: 2px;
                        height: 18px;
                        background-color: #FCD700;
                        border-radius: 5px;
                    }

.hamburger {
    position: absolute;
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    left: 10px;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #2737A2;
        display: block;
    }

.back-menu-icon {
    position: relative;
    left: -2px;
    width: 8px;
}


.close-menu {
    display: block;
    color: #2737A2;
    font-size: 20px;
    font-weight: 40;
    text-decoration: none;
    margin-bottom: 20px;
    cursor: pointer;
}

    .close-menu:hover {
        color: #ff5a5a;
    }





@media (max-width: 1120px) {

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .mobile-menu ul li a {
        font-size: 16px;
    }

    .hamburger {
        display: flex;
    }

    .top-menu {
        display: none;
    }


    .top-logo {
        margin-left: 50px;
        margin-top: -12px;
    }

    .top-login {
        margin-right: 12px;
        text-align: -webkit-right;
    }


    .main-container {
        max-width: 100%;
        padding: 25px;
        box-sizing: border-box;       
    }

    .top-container {
        max-width: 100% !important;
        max-width: 100vw;
    }

    .top-content {
        max-width: 100%;
    }

    .footer-container {
        flex-direction: row;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    .footer-left {
        min-width: 0px;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-column {
        min-width: 0px;
    }

    .left h1 {
        font-size: 34px;
    }

    .left p {
        font-size: 20px;
    }

    .tabs {
        padding: 20px 0px;
    }

    .tab-buttons {
        padding: 0 0px;
    }

    .tab-btn {
        font-size: 14px;
    }

    .our-team-filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-group {
        width: 80%;
    }

    .top-section {
        /*height: 80vh;*/
    }

    .tab-1-info-content {
        max-width: 100%;
    }

        .tab-1-info-content .right h1 {
            font-size: 36px;
        }

        .tab-1-info-content .right p {
            font-size: 20px;
        }

    .recommended-courses-section {
        padding: 0px;
    }

        .recommended-courses-section h2 {
            font-size: 36px;
        }

        .recommended-courses-section .carousel-wrapper {
            padding: 0px 30px;
        }

    .tab-2-info-content {
        max-width: 100%;
    }

    .tab-3-info-content {
        max-width: 100%;
    }

    .tab-buttons {
        max-width: 100%;
    }

    .recommended-courses-section .carousel-wrapper {
        max-width: 100%;
    }

    .our-experience-section {
        max-width: 100%;
    }

    .our-review-section {
        padding: 20px 0px;
    }

        .our-review-section h2 {
            max-width: 100%;
            font-size: 28px;
            text-align: center;
        }

        .our-review-section .carousel-wrapper {
            max-width: 100%;
            padding: 0px 10px;
        }



    .our-mission-grid {
        max-width: 100%;
    }

    .about-us-partner-section p {
        max-width: 100%;
    }

    .our-team-display-section {
        max-width: 100%;
    }

    .all-courses-section {
        max-width: 100%;
    }

    .about-us-top-section::before {
        height: 463px;
    }

    .our-team-top-section::before {
        height: 463px;
    }


    .about-us-top-section h1 {
        font-size: 36px;
    }

    .our-experience-section .right p {
        font-size: 18px;
    }

    .our-mission-grid {
        gap: 30px;
    }

    .about-us-partner-section p {
        font-size: 18px;
    }



    .seminar-course-section {
        width: 100%;
        max-width: 100%;
        /*height: auto;*/
        background: url('../../assets/images/seminar-course.png') no-repeat center center;
        background-size: cover;
        color: white;
        display: flex;
        align-items: center;
    }


    .seminar-course-container h1 {
        font-size: 36px;
    }

    .seminar-course-content-section {
        flex-direction: column;
        gap: 30px;
    }

    .seminar-course-card {
        text-align: center;
    }

    .seminar-course-info-column {
        font-size: 18px;
    }

        .seminar-course-info-column strong {
            font-size: 20px;
        }

    .seminar-course-info-content {
        display: block;
    }

    .corporate-course-container h1 {
        font-size: 36px;
    }

    .corporate-course-container p {
        font-size: 20px;
    }

    .corporate-course-content-section {
        display: block;
    }

    .corporate-course-process-section {
        display: block;
    }

    .corporate-course-process-context-section {
        padding: 0px;
    }

        .corporate-course-process-context-section h2 {
            font-size: 36px;
        }

        .corporate-course-process-context-section ul {
            font-size: 16px;
        }

    .slide-item.active {
        flex-direction: column-reverse;
    }

    .course-slide-wrapper {
        position: relative;
    }

    .corporate-bullet-nav {
        /*list-style: none;
        padding: 0;
        margin: 0 20px 0 0;
        display: flex;*/
        flex-direction: row;
        gap: 20px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 10px;
        right: auto;
        /* right: 10px; */
        /* top: 50%; */
        /* transform: translateY(-50%);
        z-index: 10;*/
    }

    .bullet.active {
        width: 30px;
        height: 10px;
        background-color: #2737A2;
        border-radius: 20px;
    }

    .corporate-course-context-section h3 {
        font-size: 22px;
    }

    .corporate-course-container p {
        font-size: 16px;
    }

    .corporate-course-process-section {
        margin: 0px;
    }

    .corporate-course-image-list-section h2 {
        font-size: 30px;
    }

    .real-experience-section {
        /*display: flex;
        justify-content: space-between;
        align-items: center;*/
        margin: 20px 0px;
        flex-direction: column;
        gap: 20px;
    }

    .real-experience-context-section {
        width: 100%;
    }

    .real-experience-container h1 {
        font-size: 22px;
    }

    .real-experience-why-context {
        font-size: 18px;
    }

    .real-experience-image-profile {
        width: 150px;
        height: 150px;
    }

    .contact-us-info {
        flex-direction: column;
    }

    .contact-us-google-map-location {
        width: 100%;
    }


    .online-course-search-section {
        max-width: 100%;
        box-sizing: border-box;
    }

    .course-detail-header {
        max-width: 100%;
        height: auto;
        flex-direction: column;
    }

    .course-detail-image {
        width: 100%;
    }

        .course-detail-image .course-detail-image {
            width: 100%;
            height: auto;
        }

    .course-detail-description-left {
        font-size: 14px;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .course-detail-description-right {
        margin-top: 20px;
    }

    .course-detail-description-section {
        flex-direction: column-reverse;
    }

    .course-tabs {
        gap: 5px;
        justify-content: space-between;
    }

    .course-detail-content {
        font-size: 14px;
    }

    .lesson-list li {
        margin-left: 10px;
    }

    .chapter {
        padding: 5px 0;
    }

    .chapter-list {
        max-width: 100%;
    }
}
