.partner-card {
    transition: 0.3s ease;
    border: 1px solid #f1f1f1;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.partner-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.partner-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #17a2b8;
    transition: 0.3s;
}

.partner-more:hover span {
    margin-left: 5px;
}

.partner-more i {
    transition: 0.3s;
}
.partner-more:hover i {
    transform: translateX(3px);
}

  .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title p {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid #0d6efd;
    border-radius: 30px;
    color: #0d6efd;
    font-weight: 600;
    background: #eef4ff;
}

.content-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
    transition: .3s;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.content-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.content-list li {
    margin-bottom: 10px;
}

.icon-badge {
    background: #0d6efd;
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.pkl-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: .3s;
    height: 100%;
}

.pkl-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.company-logo {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 10px;
}

.badge-pkl {
    background: #0d6efd;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.btn-more {
    color: #0d6efd;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: .3s;
}

.btn-more span {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: .3s;
}

.btn-more:hover span {
    opacity: 1;
    max-width: 200px;
}

.teacher-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.teacher-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #efefef;
    transition: .25s;
}

.teacher-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.teacher-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.teacher-info h5 {
    font-size: 1.05rem;
}