@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Inter:wght@400;600&display=swap');

.students {
    padding: 100px 20px;
    background: #fefefe;
    color: #333;
}



.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #c59d28);
    margin: 16px auto 0;
    border-radius: 2px;
}

.student-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.student-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.student-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.student-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4af37;
    
}

.student-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 4px;
}

.student-program {
    font-size: 0.95rem;
    color: #666;
}

/* Swiper Styles */
.student-slider {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.student-slider img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.swiper-pagination-bullet {
    background: #d4af37;
    opacity: 0.5;
}

.student-slider .swiper-slide {
    background-color: none !important;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}
