@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
body{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
.select-course{
    margin-top: 20px;
}
.select-course ul{
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.select-course ul li{
    background: #ffffff;
    color: #000;
    border: 1px solid #fff;
    font-weight: 600;
    outline: 0;
    margin: 0;
    border-radius: 6px;
    padding: 18px 10px 10px 10px;
    border-radius: 0;
    text-align: center;
    text-transform: capitalize;
    font-size: 12px;
    border: 1px solid #b9b9b9;
    list-style: none;
    box-shadow: 0 2px 4px 2px rgba(0, 0, 0, .1);
    border-radius: 6px;
    color: #495057;
    width: 20%;
    position: relative;
    text-align: center;
    cursor: pointer;
}
.select-course ul li img{
    display: inline-block;
    max-width: 35px;
}
.select-course ul li span{
    display: flex;
    font-size: 13px;
    padding: 0;
    text-align: left;
    margin: 12px 0;
    text-align: center;
    min-height: 38px;
    justify-content: center;
    align-items: center;
}
.select-course ul li .trending{
    margin: 0;
    font-size: 11px;
    background: linear-gradient(90deg, #fff 0%, #006614 25%, #00661475 50%, #006614 75%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3.5s linear infinite;
}
.courses-trending{
    margin: 0;
    font-size: 13px;
    background: linear-gradient(90deg, #fff 0%, #006614 25%, #00661475 50%, #006614 75%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3.5s linear infinite;
    font-weight: 600;
}

@keyframes shine{
    0%{
        -position: -200% center;
    }
    100%{
        background-position: 200% center;
    }
}
.flex-wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    margin-bottom: 5px;
}
.single-chart {
    width: 45%;
    justify-content: space-around ;
}
.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    max-height: 250px;
}
.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}
.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}
@keyframes progress {
    0% {
    stroke-dasharray: 0 100;
    }
}
.circular-chart.orange .circle {
    stroke: #071d5b;
}
.circular-chart.green .circle {
    stroke: #4CC790;
}
.circular-chart.blue .circle {
    stroke: #3c9ee5;
}
.percentage {
    fill: #071d5b;
    font-family: sans-serif;
    font-size: 0.5em;
    text-anchor: middle;
}
.college-box .college-details .dropdown ul{
    top: 56px !important;
}

.extra-colleges-category-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin: 10px 45px;
    border-top: 1px solid #071d5b;
    padding-top: 8px;
}

.extra-colleges-category {

    overflow-x: scroll;
    flex: 1;

    scroll-behavior: smooth; /* smooth scrolling */
    -webkit-overflow-scrolling: touch; /* better on iOS */

    scrollbar-width: none;

}

.extra-colleges-category::-webkit-scrollbar {
    display: none;
}


.extra-colleges-category ul {
    display: flex;          /* make li inline-flex */
    gap: 12px;              /* spacing between li */
    padding: 0;
    margin: 0;
    list-style: none;
}

.extra-colleges-category li {
    flex: 0 0 auto;         /* prevent shrinking */
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9f9f9;    /* li background color */
    border-radius: 10px;
    padding: 8px 12px;
    min-width: 200px;       /* adjust width */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: background 0.2s ease;
    cursor: pointer;
    border: 1px solid #ddd;
}

.extra-colleges-category li:hover {
    background: #eef4ff;    /* hover effect */
}

.extra-colleges-category img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.extra-colleges-category li div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.extra-colleges-category li span {
    font-weight: 600;
    font-size: 12px;
    color: #333;
    display: block;
    /* width: 50%;
    overflow: hidden;
    text-overflow: ellipsis; */
}

.extra-colleges-category li p{
    font-size: 10px;
}

.scroll-arrow {
    /* position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 123, 255, 0.9); */
    color: #071d5b;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.scroll-arrow.left {
    margin-right: 10px; 
}

.scroll-arrow.right {
    margin-left: 10px;
}

.fetch-fees{
    cursor: pointer;
    text-decoration: underline;
}

.college-box .college-action button.apply-now {
    background: #f34f4f !important;
    border-color: #f34f4f !important;
    border-radius: 2px !important;
    padding: 6px 24px !important;
    font-size: 16px;
    outline: none !important;
    width: 100%;
    margin-bottom: 12px;
}

#appointmentModal .modal-content{
    padding: 15px;
    background-color: #f0f0f5;
    margin-top: 10%;
}
.appointment-form-box{

}
.appointment-form-box h5{
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #414146;
    margin-bottom: 20px;
    margin-top: 20px;
}
.appointment-form-box label{
    font-size: 14px;
    line-height: 1.4;
    color: #414146;
    font-weight: 500;
    margin-bottom: 5px;

}
.appointment-form-box label span{
    color: red;
}
.appointment-form-box input, .appointment-form-box textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid #b4b4be !important;
    border-radius: 2px;
    outline: none;
    background-color: #fff;
    color: #414146;
    font-size: 14px;
    box-shadow: none !important;
}
.appointment-form-box button{
    margin: 20px 0;
    width: 100%;
    color: #fff;
    padding: 6px;
    width: 100%;
    background-color: #b4b4be;
    border: 1px solid #b4b4be;
    cursor: default;
    pointer-events: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 15px;
    outline: none !important;
}
.appointment-form-box button.active{
    background-color: #14bef0;
    border: 1px solid #14bef0;
    cursor: pointer;
    pointer-events: visible;
}

@media only screen and (max-width: 600px) {

    #main-filter .form-group:first-child{
        width: 100% !important;
    }
    .select-course{
        margin-top: 10px;
    }
    .select-course ul li{
        width: 44%;
    }
    .select-course ul li span{
        font-size: 11px;
        min-height: 40px;
    }
    .college-box .scholarship-div .assured-scholarships{
        text-align: center !important;
    }
    .college-box .scholarship-div .assured-scholarships{
        font-size: 11px;
    }
    .college-box .college-details{
        margin-top: 20px;
    }
    .single-chart{
        width: 30%
    }
    .extra-colleges-category-wrapper{
        margin: 10px 10px;
    }
    .scroll-arrow.left, .scroll-arrow.right{
        margin-left: 5px;
    }
    .scroll-arrow{
        font-size: 15px;
        width: 30px;
        height: 30px;
    }
    .extra-colleges-category img{
        width: 25px;
        height: 25px;
    }
    .extra-colleges-category li span{
        font-size: 10px;
    }
    .extra-colleges-category li p{
        font-size: 8px;
    }
    .college-box .college-all-details{
        padding-bottom: 0;
    }

}