/* Student Success Section Styling */
.student-success-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.student-success-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.student-photo-wrapper {
    position: relative;
    aspect-ratio: 1/1.2;
    overflow: hidden;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.student-img-placeholder {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.student-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 60, 93, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.student-success-card:hover .student-overlay {
    opacity: 1;
}

.student-info {
    padding: 15px;
}

.student-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
}

.student-course {
    font-size: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.student-university {
    font-size: 11px;
    color: #444;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.3;
}

.bidyarthi-tag-minimal {
    font-size: 9px;
    color: var(--trust-icon-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-tabs {
    margin-bottom: 20px;
    border: none;
    justify-content: center;
    gap: 15px;
}

.success-tabs .nav-link {
    border: none;
    background: #f1f5f9;
    color: var(--text-light);
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
}

.success-tabs .nav-link.active {
    background: var(--primary-color);
    color: white;
}

.student-success-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Pagination Styling */
.student-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f1f5f9;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.page-item:hover {
    background: #e2e8f0;
}

.page-item.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(11, 60, 93, 0.2);
}

.page-arrow {
    background: white;
    border: 1px solid #e2e8f0;
}

.page-arrow:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
