/*<!--filter css-->*/
.horizontal-filter{
    padding:20px 0px;
}

.filter-wrapper {
    border: 1px solid #e9ecef;
    border-radius:15px;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    width:110px;
}

.show-more-link {
    font-size: 0.85rem;
    color: #eba425;
    text-decoration: none;
    font-weight: 500;
}

.region-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    /*padding-bottom: 10px;*/
    padding-top:6px;
    scrollbar-width: none;
}

.region-grid::-webkit-scrollbar {
    display: none;
}

.region-card {
    min-width: 110px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-card img {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 8px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.region-card span {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6c757d;
}

.region-card:hover img {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.region-card.active img {
    border-color: #eba425;
    box-shadow: 0 8px 15px rgba(67, 97, 238, 0.2);
}

.region-card.active span {
    color: #eba425;
    font-weight: 600;
}

.region-card:hover span {
     color: #eba425;
}

.pill-btn {
    border: none;
    background: #f8f9fa;
    padding: 3px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pill-btn .badge {
    background: #e9ecef;
    color: #6c757d;
    font-weight: 400;
    border-radius: 50px;
    font-size: 12px;
}

.pill-btn:hover {
    background: #eef2ff;
    color: #eba425;
}

.pill-btn.active {
    background: #eba425;
    color: white;
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
}

.pill-btn.active .badge {
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 14px;
}

.pill-btn.outline {
    background: transparent;
    border: 1px solid #e9ecef;
}

.pill-btn.outline.active {
    background: #333;
    border-color: #333;
    color: white;
}
button:focus:not(:focus-visible){
    box-shadow:none;
}
/*<!--filter css end-->*/

/*<!--filter and listing css-->*/

            .f-20-sty {
                font-size: 20px;
            }

            .gold-c {
                color: #d2983e;
            }

            .roles {
                background-color: #fff2df;
                padding: 5px 11px;
            }

        

            .accordion-body {
                padding: 0;
            }

            .accordion-button::after {
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
            }

            .accordion-button:focus {
                z-index: 3;
                border-color: #86b7fe;
                outline: 0;
                box-shadow: 0 0 0 .25rem rgb(13 110 253 / 0%);
            }

            .accordion-button {
                padding: 0.45rem 1.25rem;
            }

            .accordion-button:not(.collapsed) {
                color: #222222;
                background-color: #fff7ed;
                box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
            }

            .sidebar {
                flex: 1;
                background: #fff;
                padding: 8px 4px;
                border-radius: 8px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            }

            .sidebar h3 {
                margin-bottom: 10px;
                color: #333;
            }
            
            .filter-section{
                display:flex;
            }

            .filter-section h4 {
                margin-top: 20px;
                margin-bottom: 10px;
                font-size: 16px;
            }

            .filter-section ul {
                list-style: none;
            }

            .filter-section li {
                margin-bottom: 1px;
                font-size: 14px;
            }

            /* Main Content */
            .main-content {
                flex: 3;
            }

            .search-bar {
                display: flex;
                margin-bottom: 20px;
            }

            .search-bar input {
                flex: 1;
                padding: 10px;
                border: 1px solid #ccc;
                border-right: none;
                border-radius: 6px 0 0 6px;
                font-size: 16px;
            }

            .search-bar button {
                padding: 10px 20px;
                background: #3470af;
                color: white;
                border: none;
                border-radius: 0 6px 6px 0;
                cursor: pointer;
            }

    .course-card-v2 {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    align-items: stretch;
}


.course-img {
    position: relative;
    width: 220px;
    flex-shrink: 0;
}

.course-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.img-top {
    position: absolute;
    top: 8px;
    left: 8px;
    color: #fff;
    font-size: 12px;
    display: flex;
    gap: 10px;
}

.rating-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #00000080;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
}

.course-info {
    flex: 1;
}

.top-header-dd {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.uni-logo {
    width: 30px;
    height: 30px;
}

.course-title {
    color: #0073e6;
    margin: 5px 0;
}

.course-meta span {
    display: inline-block;
    margin-right: 15px;
    font-size: 13px;
}

.course-tags span {
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 8px;
    cursor: pointer;
}

.course-tags span:hover {
    border-color: #eba425;
    color: #eba425;
}

.ranking-text {
    margin-top: 10px;
    font-size: 13px;
    color: #777;
}

.course-action {
    width: 220px;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-dd {
    color: #eba425;
    font-weight: bold;
    font-size: 16px;
    margin-bottom:30px;
}

.btn {
    padding: 10px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn.apply {
    background: #eba425;
    color: #fff;
}

.btn.outline {
    background: #fff;
    border: 1px solid #ddd;
}

.course-card-v2:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid #eba425;
    transform: scale(1);
}

.course-meta{
    display:flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.ranking-text svg{
    height:20px;
    margin-right:10px;
}
.course-img {
    position: relative;
}

.course-img img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.course-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 1;
}

.img-top,
.rating-badge {
    position: absolute;
    z-index: 2;
}
      .icondd-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 12px;
    background: rgba(0,0,0,0.4);
    padding: 4px 8px;
    border-radius: 20px;
}

.icon-dd {
    width: 14px;
    height: 14px;
    fill: #fff;
}     

/*<!--filter and listing css end-->*/


/*<!--Partner Colleges css-->*/

    /* SECTION BACKGROUND */
.courses-one {
    /*background: linear-gradient(180deg, #f4f6fb, #eef1f7);*/
    padding: 20px 0;
}

/* HORIZONTAL SCROLL */
.courses-scroll-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    padding-top:10px;
    scroll-behavior: smooth;
}

.courses-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.courses-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #c7cbd6;
    border-radius: 10px;
}

/* CARD */
.courses-one__single {
    min-width: 290px;
    max-width: 290px;
    background: #f7f9fc;
    border-radius: 16px;
    padding: 12px;
    border: 1px solid #dbe2ef;
    transition: all 0.3s ease;
}

.courses-one__single:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* IMAGE */
.courses-one__img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
}

/* CONTENT */
.courses-one__content {
    padding: 10px 5px 5px;
}

/* TAG + META */
.courses-one__meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.courses-one__meta li p {
font-size:14px;
}

.courses-one__meta li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #6c757d;
}

/* ICON FIX */
.courses-one__meta svg {
    width: 12px;
    height: 12px;
}

/* COLLEGE LOGO */
.home-cu-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* TITLE */
.courses-one__title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height:20px;
}

.courses-one__title a {
    color: #1b2b46;
    text-decoration: none;
}

.courses-one__title a:hover {
    color: #ff7a00;
}

/* RATING */
.courses-one__ratting-box {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
}

.courses-one__ratting-text {
    font-size: 13px;
    color: #444;
}

/* STAR */
.icondd-star {
    color: #f4b400;
    font-size: 14px;
}

/* SECTION TITLE */
.section-title-dd h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

/*<!--Partner Colleges css end-->*/