
.profile-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.page-title {
    text-align: center;
    margin-bottom: 35px;
    font-size: 32px;
    font-weight: 600;
}

.profile-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.profile-card:hover {
    transform: translateY(-8px);
}

.profile-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.profile-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.profile-card .course {
    font-size: 14px;
    color: #777;
}

.profile-card .remarks {
    font-size: 13px;
    color: #555;
    margin-top: 8px;
}

/* Arrow color */
.swiper-button-next,
.swiper-button-prev {
    color: #000;
}

/* Prevent swiper from breaking Bootstrap grid */
.profile-slider-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Force swiper to stay inside column */
.profile-slider-wrapper .swiper {
    width: 100%;
}

/* Prevent slides from expanding grid */
.profile-slider-wrapper .swiper-wrapper {
    box-sizing: border-box;
}

/* Fix Bootstrap row conflict */
/*.row {
    overflow-x: hidden;
}*/

