.secEyebrow {
    background: #F0F9FF;
    display: flex;
    border-radius: 100rem;
    padding: 6px 15px;
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #4E698B;
    max-width: max-content;
    width: 100%;
    margin: 0 auto 28px;
}

.subjectWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1152px;
    margin: 80px auto 0;
    width: 100%;
    gap: 20px;
    row-gap: 38px;
}

.sujectcard {
    background: #FFFFFF;
    box-shadow: 0px 0px 16px 0px #469FDF33;
    border: 1px solid #CFDEF0;
    border-radius: 30px;
    transition: all ease-in 0.3s;
    padding: 35px 20px 25px;
    max-width: 273px;
    width: 100%;
}

.sujectcard:hover {
    transform: translateY(-4px);
    border-color: #0654E6;
}

.cardIcon {
    width: 40px;
    height: 40px;
    display: inline-block;
    margin-bottom: 10px;
}

.subjectTitle {

    font-weight: 500;
    color: #464860;
    font-size: 16px;

    line-height: 130%;
    margin-bottom: 20px;

}

.sujectcard ul {
    list-style: none;
}

.sujectcard ul li {
    position: relative;

    font-weight: 400;

    font-size: 13px;

    line-height: 150%;
    display: flex;
    align-items: center;
    color: #60738A;
}

.sujectcard ul li+li {
    padding-top: 17px;
}
.sujectcard ul li::before{
    content: '';
    background: url(./image/subjectArrow.svg);
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 5px;
}
@media (max-width:575px){
    .secEyebrow{
            margin: 0 auto 20px;
    }
    .subjectWrap{
        margin: 30px auto 0;
        row-gap: 20px;
        padding: 20px 0;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    /* Webkit browsers (Chrome, Safari, Edge) */
.subjectWrap::-webkit-scrollbar {
  width: 6px;                  /* Very thin – matches your image */
  height: 6px;
}

.subjectWrap::-webkit-scrollbar-track {
 background: #E9F4FF;     /* Fully transparent track */
  border-radius: 10px;
}

.subjectWrap::-webkit-scrollbar-thumb {
  background: #0554E6;        /* Very light blue-gray when inactive */
  border-radius: 10px;
  transition: background 0.2s ease;
}

.subjectWrap::-webkit-scrollbar-thumb:hover,
.subjectWrap::-webkit-scrollbar-thumb:active {
  background: #0554E6         /* Bright blue when hovering or scrolling (exactly like your image) */
}

/* Optional: make corner fully clean */
.subjectWrap::-webkit-scrollbar-corner {
  background: #E9F4FF;
}
    .sujectcard{
            max-width: 283px;
            flex:0 0 283px;
    }
}