* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


body {
    font-family: "Hind Siliguri", sans-serif;
}

li {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}


.slick-slide {
    height: auto !important;
}

.contact_page {
    background: linear-gradient(#010009, #0A00F1);
    padding: 30px 0;
}

.contact_page .title {
    font-size: 50px;
    font-weight: bold;
    color: white;
    font-style: italic;
    margin-top: 30px;
}

.contact_page .contact_page_form_wrapper form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact_page .contact_page_form_wrapper form input,
.contact_page .contact_page_form_wrapper form textarea {
    padding: 10px;
    background-color: white;
    outline: none;
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.contact_page .contact_page_form_wrapper form textarea {
    resize: none;
    height: 150px;
}

.contact_page .contact_page_form_wrapper form button {
    padding: 12px;
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact_page .contact_page_form_wrapper form button:hover {
    background-color: #333;
}



.instructor_page_banner {
    background-color: rgb(53, 103, 241);
}


.instructor_page_banner .instructor_page_banner_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.instructor_page_banner .instructor_page_banner_wrapper .title {
    font-size: 60px;
    font-weight: bold;
    color: white;
}


.instructor_page_banner .instructor_page_banner_wrapper img {
    width: 250px;
}






.about-page {
    background: var(--bg);
    color: black;
}

.card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

/* Hero */
.hero {
    background: radial-gradient(1200px 400px at 50% -20%, rgba(255, 8, 8, 0.18), transparent), radial-gradient(800px 300px at 10% -10%, rgba(148, 93, 214, .18), transparent);
    padding: 56px 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}



.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.stat {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 14px 12px;
    border-radius: 12px;
    color: black;
    font-weight: 600;
}

.stat span {
    display: block;
    font-size: 22px;
    color: black;
    margin-bottom: 4px;
}


.about-copy h2,
.why-us h2,
.courses h2,
.vision h2,
.cta h2,
.contact h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.about-copy p,
.vision p {
    color: black;
    line-height: 1.9;
    font-size: 17px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.why-list li {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 12px 14px;
    border-radius: 10px;
    color: black;
}

.why-list span {
    margin-right: 8px;
}

/* Courses */
.course-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.course {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 14px;
}

.course h3 {
    font-size: 18px;
    margin: 0 0 6px;
    color: black;
}

.course p {
    color: black;
    margin: 0;
    line-height: 1.7;
}

/* CTA */
.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #00112e;
    box-shadow: 0 0 0 0 rgba(79, 140, 255, 0);
    transition: box-shadow .2s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 0 6px var(--ring);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .2);
    color: black;
}

/* Contact */
.contact ul {
    margin: 0;
    padding-left: 18px;
    color: black;
    line-height: 1.9;
}

/* Layout spacing */
.about-copy,
.why-us,
.courses,
.vision,
.cta,
.contact {
    margin-top: 18px;
}






/* === Instructor Boxes === */
.instructor_page_box_wrapper {
    background-color: #ffffff;
    padding: 0px 0;
}


.instructor_page_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}


.instructor_page_box img {
    width: 400px;
}

.content_area .title {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--title);
}

.content_area .content {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}




/* === General Styles === */
.courses_page {
    background-color: #fcf8f7;
    padding: 50px 0;
}

.courser_page_wrapper {
    display: flex;
    gap: 30px;
}

.filter_area {
    width: 300px;
}

.form_group {
    margin-bottom: 25px;
}

.form_group .title {
    font-size: 20px;
}

.search_title {
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 10px;
}

.search_input {
    outline: none;
    padding: 6px 10px;
    width: 100%;
}

/* .title {
    font-size: 20px;
    font-weight: 600;
} */

.courses_page ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.courses_page ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check {
    height: 20px;
    width: 20px;
}

.filter_clear_btn {
    border: 1px solid black;
    padding: 7px;
    background-color: transparent;
    border-radius: 5px;
    transition: all .2s;
}

.filter_clear_btn:hover {
    background-color: black;
    color: white;
}

.content_area {
    padding-top: 50px;
    width: 100%;
}

.short_area {
    text-align: right;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.sort_form select {
    padding: 6px 10px;
}

.course_page_course_box {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0 2px 0 black;
}

.course_page_course_box:hover {
    box-shadow: 0 8px 10px rgb(0, 0, 0);
    transform: translateY(-5px);
}

.course_page_course_box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.course_page_course_box .title {
    padding: 10px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    border-bottom: 1px solid rgb(151, 151, 151);
}

.footer_area {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    align-items: center;
}

.offer_price {
    font-weight: bold;
}

.add_to_cart_btn {
    background-color: #1F1F1F;
    color: #fff;
    padding: 7px;
    border-radius: 5px;
    font-size: 13px;
}

/* === Overlay === */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9997;
    transition: opacity .3s ease;
}

.filter_toggle_btn {
    display: none;
}




/* === Skeleton Loader === */
.skeleton_wrapper {
    margin-top: 20px;
}

.skeleton_card {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(128, 128, 128, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 5px;
}

.skeleton.thumbnail {
    height: 150px;
    width: 100%;
    border-radius: 10px;
}

.skeleton.title {
    height: 20px;
    width: 80%;
}

.skeleton.line {
    height: 12px;
    width: 100%;
}

.skeleton.line.short {
    width: 60%;
}

.skeleton.footer {
    height: 30px;
    width: 40%;
    margin-top: 10px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* === No Courses Found === */
.no_courses_wrapper {
    text-align: center;
    padding: 100px 20px;
    opacity: 0.8;
    animation: fadeInUp 0.6s ease-in-out;
}

.no_courses_icon {
    font-size: 80px;
    animation: bounce 1.5s infinite;
}

.no_courses_wrapper h3 {
    font-size: 24px;
    margin-top: 20px;
    font-weight: bold;
}

.no_courses_wrapper p {
    font-size: 16px;
    color: #666;
}

/* Animations */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}





/* ===== OFFER AREA START ===== */
.offer_area {
    padding: 20px 0;
    background: #F8F6F8;
}

.offer_wrapper {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: linear-gradient(135deg, rgb(0, 8, 29) 0%, rgb(0, 30, 180) 100%);
    width: 800px;
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
}

.offer_box {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}



@keyframes lineanimate {
    0% {
        width: 0;
    }

    10% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
}


.offer_wrapper .offer_box .offer_price {
    font-size: 40px;
    font-weight: bold;
    color: #FFFFFF;
}

.offer_wrapper .offer_box .offer_price span {
    position: relative;
}

.offer_wrapper .offer_box .offer_price span::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 5px;
    background-color: #ffffff;
    left: 0;
    bottom: 14px;
    border-radius: 10px;
    animation: carveanimate 5s infinite ease-in-out;
}



@keyframes carveanimate {
    0% {
        width: 0;
    }

    10% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
}


.offer_wrapper .offer_box .regular_price {
    font-size: 25px;
    color: #fff;
    font-weight: 500;
}



.offer_wrapper .offer_box .regular_price span {
    position: relative;
    font-family: sans-serif;
    color: red;
    display: inline-block;
}

.offer_wrapper .offer_box .regular_price span::after {
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    border-radius: 10px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #fff;
    animation: lineanimate 5s infinite ease-in-out;
}


.offer_wrapper .offer_box .title {
    font-size: 25px;
    color: #fff;
}


.offer_box .offer_count_box {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 20px;
    font-family: Sans-Serif;
}



.offer_count_box {
    display: flex;
    gap: 10px;
}

.offer_count_box .count_box {
    background: rgba(255, 255, 255, 0.08);
    /* transparent layer */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-direction: column;

    width: 100px;
    height: 70px;
    padding: 10px 0;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


.offer_count_box .count_box .number {
    font-size: 30px;
    line-height: normal;
    color: #fff;
    font-family: Sans-Serif;
}

.offer_count_box .count_box .text {
    margin-top: -20px;
    color: #fff;
}

.offer_area .enroll_now_btn {
    position: relative;
    display: inline-block;
    margin-top: 20px;
    padding: 10px 35px;
    background-color: #ff0000;
    color: #ffffff !important;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    animation: puls 2s infinite linear;
    overflow: hidden;
}

/* Text always upore thakbe */
.offer_area .enroll_now_btn span {
    position: relative;
    z-index: 3;
}

.offer_area .enroll_now_btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
        /* শেষ position, container থেকে বাহিরে */
    }
}

@keyframes puls {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.05);
        /* thoda boro, up effect */
    }

    50% {
        transform: scale(1);
        /* normal size */
    }

    75% {
        transform: scale(1);
        /* ektu boro, subtle */
    }

    100% {
        transform: scale(1);
        /* back to normal */
    }
}


/* ===== COURSE OUTLINE AREA START ===== */
.course_outline {
    padding: 20px 0;
    background: #ffffff;
}

.course_outline_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.course_outline_list ul {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1px;
    justify-content: center;
    background: linear-gradient(145deg, #00081d 0%, #001eb4 100%);
    border: 1px solid rgba(191, 149, 63, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    width: 400px;
    padding: 40px 15px 25px 15px;
    border-radius: 25px;
}

.course_outline_list ul li {
    padding: 10px;
    border-radius: 10px;
    font-size: 15px;
    letter-spacing: 0.2px;
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: all 0.3s ease;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
}

/* default off */
.course_outline_list ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
}

/* animation only when active */
.course_outline_list ul li.active::before {
    animation: shine-s .5s linear;
}

@keyframes shine-s {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

.course_outline_list ul .title {
    color: #fcf6ba;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}





.course_outline_list ul li .sl_no {
    background: #bf953f;
    color: #000;
    min-width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}







/* ===== VIDEO SLIDER AREA START ===== */
.video_slider_wrapper {
    background-color: #ffffff;
    padding: 20px 0;
}

.video_slider_wrapper .videos_wrapper {
    background: linear-gradient(145deg, #00081d 0%, #001eb4 100%);
    border: 1px solid rgba(191, 149, 63, 0.4);
    padding: 20px;
    border-radius: 20px;
}

.video_slider_wrapper .slider_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.video_slider_wrapper .slider_header .title {
    color: #ffffff;
    font-size: 35px;
    font-weight: bold;
}



.video_slider_wrapper .video_items .slide .video_box {
    margin: 20px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}


.video_slider_wrapper .video_items .slide .video_box iframe {
    width: 100%;
    height: 100%;
}


.video_slider_wrapper .slider_header .video_slider_arrows {
    display: flex;
    gap: 10px;
}

.video_slider_wrapper .slider_header .video_slider_arrows .arrow {
    background-color: #ffffff;
    color: #000000;
    width: 40px;
    border-radius: 50px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    transition: all linear .2s;
}

.video_slider_wrapper .slider_header .video_slider_arrows .arrow:hover {
    background-color: red;
    color: white;
}



/* ===== IMAGE SLIDER AREA START =====  */
.image_slider_wrapper {
    padding: 20px 0;
}

.image_slider_wrapper .container {
    background: linear-gradient(145deg, #00081d 0%, #001eb4 100%);
    border: 1px solid rgba(191, 149, 63, 0.4);
    padding: 20px;
    border-radius: 20px;
}


.image_slider_wrapper img {
    width: 250px !important;
    border-radius: 10px;
    margin: 0 auto;
}


.image_slider_wrapper .slider_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image_slider_wrapper .slider_header .title {
    color: #fff;
    font-size: 35px;
    font-weight: bold;
}

.image_slider_wrapper .slider_header .image_slider_arrows {
    display: flex;
    gap: 10px;
}

.image_slider_wrapper .slider_header .image_slider_arrows .arrow {
    background-color: white;
    border: none;
    width: 40px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    transition: all linear .2s;
}

.image_slider_wrapper .slider_header .image_slider_arrows .arrow:hover {
    background-color: red;
    color: white;
}



/* ===== ACCORDIAN AREA START ===== */
.accordion {
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 20px 0;
    overflow: hidden;
}


.accordion_wrapper {
    background: linear-gradient(145deg, #00081d 0%, #001eb4 100%);
    border: 1px solid rgba(191, 149, 63, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    width: 400px;
    padding: 40px 15px 25px 15px;
    border-radius: 25px;
    margin: 0 auto;
}




.accordion_wrapper .accordion-item {
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion_wrapper .title {
    color: #fcf6ba;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}


.accordion-header {
    padding: 10px;
    border-radius: 10px;
    font-size: 15px;
    letter-spacing: 0.2px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    transition: all 0.3s ease;
    color: #fff;
    cursor: pointer;
}


.accordion-header h3 {
    margin: 0;
    font-size: 16px;
}

.accordion-header .icon {
    font-size: 20px;
    font-weight: bold;
    width: 24px;
    text-align: center;
}

.accordion-body {
    background-color: #091757;
    padding: 12px 16px;
    font-size: 15px;
    color: #c4c1c1;
    line-height: 1.5;
    text-align: center;
}

.accordion-body .arrow {
    color: #BF953F;
    margin-right: 8px;
}


/* ===== ENROLL AREA START ===== */

.enrol_form_wrapper {
    padding: 10px 0px 20px 0px !important;
    background-color: #fff;

}

.enrol_form_wrapper .enroll_form_title {
    font-size: 37px;
    text-align: center;
    font-weight: bold;
    color: #040068;
    margin-bottom: 15px;
    animation: color 2s infinite linear;
}

@keyframes color {

    25% {
        color: rgb(252, 17, 0);
    }

}

.enrol_form_wrapper .container .wrapper {
    background-color: #fff;
    border-radius: 10px;
    border: 3px solid black;
    padding: 30px;
    position: relative;
}

.enrol_form_wrapper .container .wrapper .preloader_enroll {
    display: none;
}

.enrol_form_wrapper .container .wrapper .preloader_wrapper {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.712);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #FFF #FFF transparent transparent;
    box-sizing: border-box;
    animation: rotation 0.5s linear infinite;
}

.loader::after,
.loader::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent #FF3D00 #FF3D00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}

.loader::before {
    width: 32px;
    height: 32px;
    border-color: #FFF #FFF transparent transparent;
    animation: rotation 0.3s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}


.enrol_form_wrapper .container .wrapper .form_area .form_header .title {
    font-size: 20px;
    font-weight: bold;
    color: #636464;
    color: var(--title);
}


.enrol_form_wrapper .container .wrapper .form_controll {
    margin-bottom: 15px;
}

.enrol_form_wrapper .container .wrapper label {
    font-size: 13px;
    font-weight: bold;
    color: black;
}

.enrol_form_wrapper .container .wrapper input {
    width: 100% !important;
    outline: none;
    padding: 8px 10px;
    border: 1px solid rgba(0, 0, 0, 0.349);
    border-radius: 5px;
}


.enroll_area .details_table_body .enrol_table {
    width: 100%;
    font-size: 13px;
}

.details_table_header .title {
    font-size: 20px;
    font-weight: bold;
    color: #636464;
    color: var(--title);
}

.enroll_area .details_table_body .enrol_table thead {
    border-bottom: 1px solid #afafaf;
}

.enroll_area .details_table_body .enrol_table thead th {
    padding: 15px 10px;
}

.enroll_area .details_table_body .enrol_table thead th.text-right {
    text-align: right;
}

.enroll_area .details_table_body .enrol_table tbody tr {
    border-bottom: 1px solid #afafaf;
}

.enroll_area .details_table_body .enrol_table tbody tr:last-child {
    border-bottom: 1px solid transparent;
}

.enroll_area .details_table_body .enrol_table tbody td {
    padding: 15px 10px;
}

.enroll_area .details_table_body .enrol_table tbody td.text-right {
    text-align: right;
}

.enroll_table_payment_method_box {
    background-color: #F7F7F7;
    padding: 10px 20px;
    border-radius: 10px;
}

.enroll_table_payment_method_box .title {
    font-size: 15px;
    margin-bottom: 20px;
}

.enroll_table_payment_method_box .payment_method {
    background-color: #EAEAEA;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.table_footer .enroll_btn {
    width: 100%;
    padding: 15px 10px;
    border: none;
    background: linear-gradient(#0E0E66, #080491);
    color: white;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
}

/* ================= END COURSE DETAILS AREA ================== */


.copyeight {
    background-color: #040068;
    padding: 7px 0;
    color: white;
}

.copyeight p {
    font-size: 14px;
    margin: 0 !important;
}

.footer {
    background: linear-gradient(to right, #0B00FC, #040073);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.315);
    padding: 50px 0;
}

.footer .footer_wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* সবসময় ৫ কলাম */
    gap: 30px;
}

.footer .footer_box .title {
    color: rgb(39, 236, 210);
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 2px solid rgb(39, 236, 210);
}

.footer .footer_box ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer .footer_box ul li.gov {
    color: #ffffff;
    font-size: 17px;
    line-height: 20px;
    transition: all linear .2s;
}

.footer .footer_box ul li a {
    color: #ffffff;
    font-size: 17px;
    transition: all linear .2s;
}

.footer .footer_box ul li a:hover {
    color: rgb(39, 236, 210);
}

.footer .footer_box .footer_logo {
    width: 100px;
    margin-bottom: 20px;
}

.footer .footer_box p {
    color: #e2e2e2;
    font-size: 13px;
    max-width: 220px;
}












.why_take_course {
    background: #ffffff;
    padding: 20px 0;
}

.why_take_course_wrapper .title {
    text-align: center;
    margin-bottom: 20px;
    color: #00081D;
    font-size: 35px;
    font-weight: bold;
}

.why_take_course_wrapper .title span {
    color: #D90429;
}

.why_take_course_content .box {
    position: relative;
    background: linear-gradient(135deg, #00081d 0%, #001eb4 100%);
    padding: 15px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    font-size: 20px;
    text-align: center;
    color: #FFF;
}

.why_take_course_content .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}






.top_video {
    padding: 30px 0;
    background-color: #EAEAEA;
}

.top_video_wrapper {
    width: 900px;
    height: 510px;
    border-radius: 30px;
    position: relative;
    padding: 10px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


.top_video_wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}






.course_details {
    padding: 10px 0 0 0;
    background-color: #EAEAEA;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.course_title {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #0A00CE;
}

.course_description {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}




.whatsapp_btn {
    margin-top: 10px;
    padding: 10px 70px;
    border-radius: 50px;
    background: linear-gradient(#2AC56C, #1E2F75);
    color: white;
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    transition: all linear .2s;
}

.whatsapp_btn:hover {
    transform: scale(1.1);
    font-size: 20px;
}


.course_details_table_wrapper {
    overflow-x: auto;
    margin: 20px 0;
}

.course_table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.course_table thead {
    background-color: #0d6efd;
    color: white;
    text-align: left;
}

.course_table thead th {
    padding: 12px 15px;
    font-size: 16px;
}

.course_table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s;
}

.course_table tbody tr:hover {
    background-color: #f1f5fb;
}

.course_table tbody td {
    padding: 10px 15px;
    font-size: 15px;
    color: #333;
}

.course_table tbody tr:last-child {
    border-bottom: none;
}







.user_dashboard {
    background-color: rgb(192, 192, 192);
    padding: 20px 0;
}

.user_dashboard .container {
    position: relative;
}

.user_dashboard_wrapper {
    display: flex;
    gap: 20px;
}

.user_dashboard .user_header_wrapper {
    background-color: white;
    height: 70px;
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user_dashboard .user_header_wrapper .short {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: white;
    font-size: 20px;
    font-weight: bold;
    background-color: black;
}

.user_dashboard .user_header_wrapper .profile_area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user_dashboard .user_header_wrapper .profile_area .user_details {
    line-height: 20px;
}


.user_dashboard .user_header_wrapper .profile_area .name {
    font-weight: bold;
    font-size: 20px;
    padding: 0;
    margin: 0;
}

.user_dashboard .user_dashboard_wrapper .user_dashboard_sidebar_area {
    background-color: #fff;
    border-radius: 10px;
    width: 300px;
    padding: 20px;
}

.user_dashboard .user_dashboard_wrapper .user_dashboard_sidebar_area ul li a {
    background-color: rgb(226, 226, 226);
    display: block;
    width: 100%;
    padding: 10px;
    color: #000;
    border-radius: 5px;
}

.user_dashboard .user_dashboard_wrapper .user_dashboard_sidebar_area ul li a.active {
    background-color: black;
    color: white;
}

.user_dashboard_wrapper .user_dashboard_content_area {
    background-color: #fff;
    border-radius: 10px;
    min-height: 400px;
    width: 100%;
    padding: 20px;
}


.user_dashboard_wrapper .user_dashboard_content_area .dashboard_header .title {
    font-size: 20px;
    font-weight: bold;
    background-color: #E2E2E2;
    padding: 7px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.user_dashboard_wrapper .user_dashboard_content_area .dashboard_count_box {
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    height: 150px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.user_dashboard_wrapper .user_dashboard_content_area .dashboard_count_box .title {
    font-size: 20px;
}

.user_dashboard_wrapper .user_dashboard_content_area .dashboard_count_box i {
    font-size: 20px;
}

.user_dashboard_wrapper .user_dashboard_content_area .dashboard_count_box .count_number {
    font-size: 30px;
}

.user_sidebar_tooggle {
    cursor: pointer;
    display: none;
}












.course_join {
    background: linear-gradient(#DF0000, #090000);
    padding: 10px 0;
    position: sticky;
    bottom: 0;
}

.course_join .course_join_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.course_join .course_join_wrapper .title {
    font-size: 25px;
    color: white;
}

.course_join .course_join_wrapper .course_join_count_box.offer_count_box .count_box {
    background-color: black;
    padding: 15px !important;
    height: 40px !important;
    width: auto !important;
}

.course_join .course_join_wrapper .course_join_count_box.offer_count_box .count_box .number {
    font-size: 15px !important;
    margin-bottom: 5px;
}

.course_join .course_join_wrapper .course_join_count_box.offer_count_box .count_box .text {
    font-size: 10px !important;
}


/* ======= REFUND PAGE STYLE  */
.refund-policy {
    font-family: 'Noto Sans Bengali', sans-serif;
    padding: 2rem;
    background: #f9f9f9;
    color: #222;
}

.refund-policy .container {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.refund-policy h1,
.refund-policy h2,
.refund-policy h3 {
    color: #0b3d91;
    margin-bottom: 1rem;
}

.refund-policy ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.refund-policy ul li {
    margin-bottom: 0.5rem;
}

.refund-policy p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.refund-policy .footer {
    margin-top: 2rem;
    font-style: italic;
    color: #555;
}

/* Responsive Design */



/* TERMS CONDITION PAGE */
.terms-page {
    font-family: 'Noto Sans Bengali', sans-serif;
    background: #f7f7f7;
    padding: 2rem;
    color: #333;
}

.terms-page .container {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.terms-page h1 {
    font-size: 2rem;
    color: #1a237e;
    border-bottom: 2px solid #ddd;
    margin-bottom: 1rem;
}

.terms-page h2 {
    color: #0d47a1;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.terms-page ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

ul li {
    margin-bottom: 0.5rem;
}

.terms-page p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.terms-page .footer {
    margin-top: 2rem;
    font-style: italic;
    color: #555;
}

/* Responsive design */





/* Contact Button Styles */
.contact-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.contact-options {
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 998;
}

.contact-options a {
    background-color: #fff;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-options a.whatsapp {
    background-color: #25D366;
    margin-bottom: 5px;
}

.contact-options a.facebook {
    background-color: #0084FF;
}

.contact-options a:hover {
    transform: scale(1.1);
}




.free_course{
    padding: 20px 0;
}

.free_course .free_course_wrapper{
    background-color: #fff;
    border: 1px solid #930000;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.free_course_preloader_wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.free_loader {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #232323;
    animation: spin_animate 1s linear infinite;
}

.free_loader::after{
    content: '';
    position: absolute;
    left: 7px;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
}

@keyframes spin_animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.free_course_wrapper .top_title_wrapper{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    animation: puls 2s infinite linear;
}


.free_course_wrapper .top_title_wrapper .top_title{
    background-color: #FF0401;
    position: relative;
    color: #fff;
    padding: 20px;
    overflow: hidden;
    border-radius: 20px;
}



.free_course_wrapper .top_title_wrapper .top_title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%; /* start offscreen */
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(214, 212, 212, 0.466) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(230, 227, 227, 0.562) 100%
    );
    transform: skewX(-20deg);
    animation: shinePause 2s infinite;
}

@keyframes shinePause {
    0% {
        left: -75%;
        opacity: 0;
    }
    30% {
        left: -50%;
        opacity: 0.8;
    }
    50% {
        left: 100%; /* shine fully across */
        opacity: 0.8;
    }
    60% {
        left: 100%;
        opacity: 0; /* pause */
    }
    100% {
        left: -75%; /* reset */
        opacity: 0;
    }
}


.free_course .free_course_wrapper .free_course_item{
    border-radius: 10px;
    padding: 10px;
    font-size: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: #fff;
    border: 1px solid #d1d5db;
}

.free_course .free_course_wrapper .free_course_item .image_area img{
    width: 80px;
    height: auto;
    border-radius: 5px;
}

.free_course .free_course_wrapper .free_course_item .content_area{
    padding: 0px;
    line-height: 25px;
}


.free_course .free_course_wrapper .free_course_item .content_area .title{
    font-size: 0.9375em;
    font-weight: 600;
    color: #2c2b2b;
}

.free_course .free_course_wrapper .free_course_item .content_area .regular_price{
    font-size: 1em;
    position: relative;
    display: inline-block;
    color: #404040;
    font-weight: bold;
}

.free_course .free_course_wrapper .free_course_item .content_area .regular_price::after{
    content: '';
    position: absolute;
    width: 0px;
    height: 2px;
    left: 0;
    top: 45%;
    background-color: rgb(0, 0, 0);
    animation: line-two 2s infinite linear;
}

@keyframes line-two {
    10% {
        width: 0;
    }

    30% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
    
}
.free_course .free_course_wrapper .free_course_item .content_area .offer_price{
    font-size: 1em;
    font-weight: bold;
    color: #404040;
}


.free_course .free_course_wrapper .free_course_item .content_area .price_area{
    display: flex;
    align-items: center;
    gap: 15px;
}


/*===================================== RESPONSIVE STYLE AREA START ========================================*/
@media (max-width: 991px) {

    .footer .footer_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact_page .row {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact_page .col-md-6 {
        width: 100%;
    }

    .contact_page .title {
        font-size: 32px;
        text-align: center;
    }

    .contact_page .contact_page_form_wrapper form input,
    .contact_page .contact_page_form_wrapper form textarea,
    .contact_page .contact_page_form_wrapper form button {
        font-size: 14px;
        padding: 10px;
    }


    .user_dashboard_wrapper {
        flex-direction: column;
    }

    .user_sidebar_tooggle {
        cursor: pointer;
        display: block;
    }


    .user_dashboard .user_dashboard_wrapper .user_dashboard_sidebar_area {
        width: 100%;
        left: 0;
        top: 75px;
        background-color: white;
        z-index: 9999;
        position: absolute;
        display: none;
    }

    .offer_wrapper {
        width: 100%;
    }

    .top_video_wrapper {
        position: relative;
        width: 100%;
        height: 420px;
        overflow: hidden;
        border-radius: 10px;
        margin: 0 auto;
    }

    .top_video_wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    .courses_page {
        padding: 0px 0px 20px 0px;
    }

    .courser_page_wrapper {
        flex-direction: column;
    }

    .filter_area {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100%;
        background-color: #fff;
        box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
        z-index: 9998;
        padding: 20px;
        overflow-y: auto;
        transition: right .3s ease;
    }

    .filter_area.mobile_open {
        right: 0;
    }

    .filter_close_btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
    }

    .filter_toggle_btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 6px 10px;
        border-radius: 5px;
        background-color: #3E64DE;
        color: white;
        border: none;
        cursor: pointer;
    }

    .instructor_page_banner_wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .instructor_page_banner_wrapper .title {
        font-size: 32px;
        text-align: center;
    }

    .instructor_page_banner_wrapper img {
        width: 100%;
        max-width: 250px;
    }

    .instructor_page_box {
        flex-direction: column !important;
        text-align: center;
    }


    .instructor_page_box.revers {
        flex-direction: column-reverse !important;
    }

    .instructor_page_box img {
        width: 80%;
        max-width: 250px;
        margin-bottom: 20px;
    }

    .instructor_page_box_wrapper {
        padding-bottom: 20px;
    }

    .instructor_page_box_wrapper .content_area .title {
        font-size: 30px;
    }

    .instructor_page_box {
        padding: 0;
        gap: 0;
    }

    .content_area .title {
        font-size: 30px;
    }

    .content_area .content {
        font-size: 14px;
        line-height: 24px;
    }




    .contact_page {
        padding: 20px 0;
    }

    .contact_page .contact_page_wrapper .row {
        flex-direction: column;
    }

    .contact_page .contact_page_wrapper .row .col-md-6 {
        width: 100%;
    }

    .contact_page .contact_page_wrapper .row .col-md-6 .title {
        font-size: 30px;
        margin-bottom: 1px;
        margin-top: 0px;
    }

    .contact_page_form_wrapper form input,
    .contact_page_form_wrapper form button {
        font-size: 14px;
        padding: 10px;
    }

    .instructor_page_banner .instructor_page_banner_wrapper .title {
        font-size: 30px;
        font-weight: bold;
        color: white;
    }


    .instructor_page_banner .instructor_page_banner_wrapper img {
        width: 200px;
    }
}


@media (max-width:870px) {
    .course_join .course_join_wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .course_join .course_join_wrapper .title {
        font-size: 15px !important;
        color: white;
    }
}


@media (max-width:767px) {
    .image_slider_wrapper .slider_header {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .video_slider_wrapper .slider_header {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .courses_lists .course_page_course_box img {
        height: 120px !important;
    }

    .enrol_form_wrapper .enroll_form_title {
        font-size: 30px;
    }

    .offer_price_enroll_btn {
        background-color: #2E98D2;
        color: white;
        font-size: 14px;
        padding: 8px 15px;
    }


    .top_video_wrapper {
        position: relative;
        width: 100% !important;
        height: 300px !important;
        overflow: hidden;
        border-radius: 10px;
        margin: 0 auto;
    }

    .top_video_wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 300px !important;
        border: none;
    }

    .course_title {
        text-align: center;
        font-size: 17px;
        font-weight: bold;
    }

    .course_description {
        text-align: justify;
        font-weight: bold;
        max-width: 700px;
        margin: 0 auto;
        font-size: 15px;
    }

    .videos {
        padding: 30px 0;
    }

    .course_outline {
        padding: 30px 0;
    }

}


@media (max-width: 640px) {
    .title {
        font-size: 34px;
    }

    .subtitle {
        font-size: 16px;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {
    .refund-policy .container {
        padding: 1rem;
    }

    .refund-policy h1 {
        font-size: 1.5rem;
    }

    .terms-page .container {
        padding: 1.2rem;
    }

    .terms-page h1 {
        font-size: 1.5rem;
    }

    .terms-page h2 {
        font-size: 1.1rem;
    }
}


@media (max-width: 576px) {
    .contact_page .title {
        font-size: 24px;
    }

    .contact_page .contact_page_form_wrapper form input,
    .contact_page .contact_page_form_wrapper form textarea,
    .contact_page .contact_page_form_wrapper form button {
        font-size: 13px;
        padding: 8px;
    }

    .footer {
        padding: 30px;
    }


    .footer .footer_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .instructor_page_banner_wrapper .title {
        font-size: 24px;
    }

    .content_area .title {
        font-size: 22px;
    }

    .content_area .content {
        font-size: 13px;
        line-height: 22px;
    }

    .contact_page .contact_page_wrapper .row .col-md-6 .title {
        font-size: 30px;
        margin-bottom: 15px;
        text-align: center;
    }
}


@media (max-width:582px) {
    .free_course_wrapper .top_title_wrapper .top_title{
        padding: 20px 10px;
    }

    .free_course_wrapper .top_title_wrapper .top_title h3{
        font-size: 16px;
        font-weight: bold;
    }

    .free_course_wrapper .top_title_wrapper .top_title .subtitme{
        font-size: 13px;
    }
}



@media (max-width:557px) {
    .course_outline .course_outline_wrapper .subtitle {
        font-size: 14px;
    }

    .course_outline .course_outline_list ul li {
        font-size: 14px;
    }

    .telegram_community .telegram_community_wrapper .content_area h2 {
        font-size: 20px;
        line-height: normal;
    }

    .telegram_community .telegram_community_wrapper .content_area p {
        font-size: 14px;
        line-height: normal;
    }

    .telegram_community .image_area img {
        width: 250px !important;
    }

    .whatsapp_btn {
        display: block;
        padding: 10px 15px;
        font-size: 15px;
    }

    .whatsapp_btn:hover {
        transform: scale(1) !important;
        font-size: 15px;
    }

    .enrol_form_wrapper .enrol_form_top .title {
        font-size: 20px;
    }

    .instructor_page_box_wrapper .instructor_page_box .image img {
        width: 200px;
    }

    .instructor_page_box_wrapper .instructor_page_box .content_area .title {
        font-size: 20px;
    }

    .contact_page .contact_page_wrapper .title {
        font-size: 20px !important;
    }

}


@media (max-width:538px) {
    .offer_box .offer_count_box {
        gap: 5px;
    }

    .offer_count_box .count_box .number {
        font-size: 20px !important;
    }

    .offer_count_box .count_box .text {
        margin-top: -20px;
        color: #fff;
    }

    .offer_count_box .count_box {
        width: 70px !important;
        height: 70px !important;
        padding: 5px 0px !important;
    }
}


@media (max-width:430px) {
    .top_video_wrapper {
        position: relative;
        width: 800px;
        height: 200px !important;
        overflow: hidden;
        border-radius: 10px;
        margin: 0 auto;
    }


    .top_video_wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 200px !important;
        border: none;
    }



}


@media (max-width:416px) {
    .course_outline_list ul {
        width: 100%;
    }

    .accordion_wrapper {
        width: 100%;
    }
    
        .free_course_wrapper .top_title_wrapper .top_title h3{
        font-size: 14px;
        font-weight: bold;
    }

    .free_course_wrapper .top_title_wrapper .top_title .subtitme{
        font-size: 13px;
    }
}


@media (max-width:377px) {

    .free_course_wrapper .top_title_wrapper .top_title h3{
        font-size: 12px;
        font-weight: bold;
    }

    .free_course_wrapper .top_title_wrapper .top_title .subtitme{
        font-size: 11px;
    }
}
