

        .student-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            transition: .3s;
            border: 1px solid #eee;
            height: 100%;
        }


        .student-image {
            position: relative;
        }

        .student-image img {
            width: 100%;
            height: 320px;
            object-fit: cover;
        }

        .course-badge {
            position: absolute;
            left: 15px;
            bottom: 15px;
            background: #12c53b;
            color: #fff;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
        }

        .student-info {
            padding: 20px;
        }

        .student-name {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .location {
            color: #666;
            margin-bottom: 18px;
        }

        .status {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #eee;
            padding-top: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .student-card .active {
            background: #d1fae5;
            color: #15803d;
            font-size: 12px;
            padding: 7px 16px;
            border-radius: 30px;
            font-weight: 600;
        }

        .swiper {
            padding: 20px 10px 60px;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: #12c53b;
        }

        .swiper-pagination-bullet-active {
            background: #12c53b;
        }