/* ======================================================================
            SLIDER CSS START 
===================================================================== */
/* ==========================================
   SCHOOL HERO SWIPER
========================================== */

.schoolHero_58421 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.schoolHeroSwiper_58421 {
    width: 100%;
    height: 720px;
}

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

/* Background */

.schoolHeroBg_58421 {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.schoolHeroBg_58421 img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Overlay */

.schoolHeroOverlay_58421 {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.58) 42%,
            rgba(0, 0, 0, 0.20) 100%
        );
}

/* Container */

.schoolHeroContainer_58421 {
    width: min(1200px, calc(100% - 80px));
    height: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Content */

.schoolHeroContent_58421 {
    width: 58%;
    position: relative;
    z-index: 7;
    padding-top: 20px;
}

.schoolHeroTag_58421 {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 16px;
    margin-bottom: 18px;

    color: #fff;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

.schoolHeroTitle_58421 {
    margin: 0 0 20px;
    max-width: 720px;

    color: #fff;
    font-family: "Merriweather", serif;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.15;
    font-weight: 700;
}

.schoolHeroDesc_58421 {
    max-width: 650px;
    margin-bottom: 30px;

    color: rgba(255, 255, 255, 0.88);
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 400;
}

/* Buttons */

.schoolHeroButtons_58421 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.schoolHeroBtn_58421 {
    min-height: 52px;
    padding: 0 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 5px;

    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;

    transition: all 0.3s ease;
}

.schoolHeroBtnPrimary_58421 {
    color: #fff;
    background: #e4484e;
    border: 1px solid #e4484e;
}

.schoolHeroBtnPrimary_58421:hover {
    color: #e4484e;
    background: #fff;
    border-color: #fff;
}

.schoolHeroBtnOutline_58421 {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.schoolHeroBtnOutline_58421:hover {
    color: #222;
    background: #fff;
    border-color: #fff;
}

/* Foreground Visual */

.schoolHeroVisual_58421 {
    width: 42%;
    height: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    position: relative;
    z-index: 6;
}

.schoolHeroImageWrap_58421 {
    width: 100%;
    max-width: 500px;
    height: 570px;

    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.schoolHeroImageWrap_58421::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    filter: blur(2px);
}

.schoolHeroImageWrap_58421 img {
    width: 100%;
    height: 100%;

    position: relative;
    z-index: 2;

    object-fit: contain;
    object-position: center bottom;

    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.30));
}

/* Navigation */

.schoolHeroNext_58421,
.schoolHeroPrev_58421 {
    width: 48px;
    height: 48px;

    position: absolute;
    top: 50%;
    z-index: 20;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 50%;

    cursor: pointer;

    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.schoolHeroPrev_58421 {
    left: 25px;
}

.schoolHeroNext_58421 {
    right: 25px;
}

.schoolHeroNext_58421:hover,
.schoolHeroPrev_58421:hover {
    color: #e4484e;
    background: #fff;
}

/* Pagination */

.schoolHeroPagination_58421 {
    position: absolute;
    z-index: 20;
    bottom: 30px !important;
}

.schoolHeroPagination_58421 .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    opacity: 0.5;
    background: #fff;
    transition: all 0.3s ease;
}

.schoolHeroPagination_58421 .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 10px;
    opacity: 1;
    background: #e4484e;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .schoolHeroSwiper_58421 {
        height: 650px;
    }

    .schoolHeroContainer_58421 {
        width: min(100% - 50px, 850px);
        gap: 20px;
    }

    .schoolHeroContent_58421 {
        width: 60%;
    }

    .schoolHeroVisual_58421 {
        width: 40%;
    }

    .schoolHeroImageWrap_58421 {
        height: 480px;
    }

    .schoolHeroTitle_58421 {
        font-size: 42px;
    }

    .schoolHeroDesc_58421 {
        font-size: 15px;
        line-height: 1.7;
    }

    .schoolHeroNext_58421,
    .schoolHeroPrev_58421 {
        width: 42px;
        height: 42px;
    }

    .schoolHeroPrev_58421 {
        left: 15px;
    }

    .schoolHeroNext_58421 {
        right: 15px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .schoolHeroSwiper_58421 {
        height: 620px;
    }

    .schoolHeroOverlay_58421 {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.62) 0%,
                rgba(0, 0, 0, 0.76) 100%
            );
    }

    .schoolHeroContainer_58421 {
        width: calc(100% - 35px);
        padding: 40px 0 70px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .schoolHeroContent_58421 {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .schoolHeroTag_58421 {
        margin-bottom: 14px;
        font-size: 11px;
        padding: 7px 13px;
    }

    .schoolHeroTitle_58421 {
        margin: 0 auto 15px;
        font-size: 32px;
        line-height: 1.2;
    }

    .schoolHeroDesc_58421 {
        max-width: 520px;
        margin: 0 auto 24px;
        font-size: 14px;
        line-height: 1.65;
    }

    .schoolHeroButtons_58421 {
        justify-content: center;
        gap: 10px;
    }

    .schoolHeroBtn_58421 {
        min-height: 46px;
        padding: 0 18px;
        font-size: 13px;
    }

    .schoolHeroVisual_58421 {
        display: none;
    }

    .schoolHeroNext_58421,
    .schoolHeroPrev_58421 {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .schoolHeroPrev_58421 {
        left: 8px;
    }

    .schoolHeroNext_58421 {
        right: 8px;
    }

    .schoolHeroPagination_58421 {
        bottom: 20px !important;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .schoolHeroSwiper_58421 {
        height: 570px;
    }

    .schoolHeroContainer_58421 {
        width: calc(100% - 55px);
    }

    .schoolHeroTitle_58421 {
        font-size: 27px;
    }

    .schoolHeroDesc_58421 {
        font-size: 13px;
        line-height: 1.6;
    }

    .schoolHeroButtons_58421 {
        flex-direction: column;
        width: 100%;
    }

    .schoolHeroBtn_58421 {
        width: 100%;
        max-width: 210px;
    }
}

/* ===========================================================================
                COURSES CSS START
=========================================================================== */

.courseWrapper_84920 {
    background-color: #f8fafc;
    /* padding: 80px 0; */
    overflow: hidden;
}

.headerBadge_19384 {
    display: inline-block;
    background-color: #e0e7ff;
    color: #e4484e;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.mainHeading_74021 {
    color: #0f172a;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.subHeading_30291 {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.swiperContainer_91823 {
    padding: 20px 10px 60px 10px !important;
}

.courseCard_58293 {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.courseCard_58293:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
    border-color: #cbd5e1;
}

.imageBox_48201 {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
    background-color: #f1f5f9;
}

.courseImg_30492 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.courseCard_58293:hover .courseImg_30492 {
    transform: scale(1.04);
}

.categoryBadge_67210 {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    text-transform: capitalize;
}

.cardBody_29104 {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.metaRow_83920 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #64748b;
}

.metaItem_10293 {
    display: flex;
    align-items: center;
    gap: 6px;
}

.metaItem_10293 i {
    color: #475569;
}

.courseTitle_68392 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a !important;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* height: 3.36em; */
} 

.courseTitle_68392:hover{
    color:#e4484e;
    transition:all 0.3s ease-in-out;
}

.courseDesc_49201 {
    color: #64748b !important;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.instructorRow_39201 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    /* margin-bottom: 16px; */
    border-bottom: 1px solid #f1f5f9;
}

.instructorAvatar_77210 {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.instructorName_82910 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin: 0;
}

.ratingBox_61029 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.starIcons_40192 {
    color: #f59e0b;
}

.ratingScore_50192 {
    font-weight: 700;
    color: #0f172a;
}

.enrollCount_39102 {
    color: #94a3b8;
    font-size: 0.8rem;
}

.footerRow_90281 {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
}

.priceTag_29103 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
}

.actionBtns_71029 {
    display: flex;
    gap: 8px;
}

.btnView_59201 {
    background-color: #f1f5f9;
    color: #334155;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btnView_59201:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}

.btnEnroll_10293 {
    background-color: #E4484E;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btnEnroll_10293:hover {
    background-color: #E4484E;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Swiper Custom Navigation & Pagination Styling */
.sliderNavBox_83029 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.btnPrev_84920,
.btnNext_84920 {
    position: static !important;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    color: #E4484E !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.btnPrev_84920:after,
.btnNext_84920:after {
    font-size: 1rem !important;
    font-weight: 900;
}

.btnPrev_84920:hover,
.btnNext_84920:hover {
    background: #E4484E;
    color: #ffffff !important;
    border-color: #f0393f;
}

.swiperPagination_48102 {
    position: static !important;
    width: auto !important;
}

.swiperPagination_48102 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiperPagination_48102 .swiper-pagination-bullet-active {
    background: #E4484E;
    width: 26px;
    border-radius: 6px;
}

@media (max-width: 767.98px) {
    .courseWrapper_84920 {
        padding: 50px 0;
    }

    .mainHeading_74021 {
        font-size: 1.75rem;
    }

    .cardBody_29104 {
        padding: 18px;
    }

    .priceTag_29103 {
        font-size: 1.2rem;
    }

    .btnView_59201,
    .btnEnroll_10293 {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
}