.partner-full{
    padding-top: 50px;
}
.slider-wrapper-partner{
    max-width: 88%;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    /* border: 1px solid #ccc; */
    position: relative;
}

.slider-title {
    font-size: 25px;
    font-weight: bold;
    color: #333;
    margin-top: 5px;
    margin-bottom: 15px;
}
.slider-title img{
    width: 50px;
    margin-right: 10px;
}
/* .slider-subtitle {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    margin-bottom: 15px;
} */

.slider-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding-bottom: 10px;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.card {
    flex: 0 0 250px;
    background: #fff;
    border-radius: 10px;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.08); */
    box-shadow: 0 25px 70px #1c397718;
    border: 1px solid #ccc;
}
.card .par-img{
    width: 100%;
    height: 100px;
    overflow: hidden;
    margin-bottom: 5px;
    border-radius: 5px;
    text-align: center;
}
.par-img img{
    height: 100%;
}
.par-des{
    padding: 15px;
}
.par-des a{
    text-decoration: none;
    color: #1c3977;
}
.card h3 {
    font-size: 16px;
    color: #103683;
    margin: 0 0 5px;
}

.card .location {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
}
.card .location i{
   color: var(--backgroundcolor);
   margin-right: 5px;
}
.card .info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #333;
    margin: 8px 0;
}

.info span {
    color: #f5a623;
}

.card .btn-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.btn-group .save,
.btn-group .brochure {
    padding: 6px 15px;
    font-size: 13px;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
}

.save {
    background: #eee;
    border: none;
}

.brochure {
    background: #1c3977;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.274);
    color: white;
    border: none;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ccc;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.arrow.left {
    left: -15px;
}

.arrow.right {
    right: -15px;
}

@media (max-width: 768px) {
    .partner-full {
    padding: 0px;
    }
    .slider-wrapper-partner{
    max-width: 90%;
    }
    .card {
    flex: 0 0 80%;
    }
}
@media (max-width: 500px) {
    .slider-wrapper-partner{
        max-width: 95%;
        padding: 10px;
    }
    .arrow.left {
        display: none;
    }
    .arrow.right {
        display: none;
    }
    .card {
    flex: 0 0 80%;
    }
}

.university-card-top {
    position: relative;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.university-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.university-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    color: white;
}

.university-logo {
    width: 35px;
    height: 35px;
    background: white;
    padding: 4px;
    margin-right: 10px;
    border-radius: 4px;
    object-fit: contain;
}

.university-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #3b5998;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: bold;
    z-index: 2;
}