 /* Custom CSS untuk efek tambahan */
 /* style.css */

/* Style ikon guru */
.ts-facts-img i {
    font-size: 50px;        /* ukuran ikon, bisa diubah */
    color: #e49a05;         /* warna ikon */
    padding: 15px;          /* ruang di sekitar ikon */
    border-radius: 50%;     /* buat bulat */
    display: inline-block;   /* supaya padding & border-radius bekerja */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* bayangan */
    transition: transform 0.3s;
}

/* efek hover */
.ts-facts-img i:hover {
    transform: scale(1.2);   /* membesar saat hover */
}


    .ts-team-wrapper {
        transition: all 0.3s ease;
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid #e0e0e0;
        background-color: #ffffff;
    }

    .ts-team-wrapper:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        border-color: #0d6efd;
    }

    .team-img-wrapper {
        overflow: hidden;
        position: relative;
        background-color: #f8f9fa;
    }

    .team-img-wrapper img {
        transition: all 0.5s ease;
        height: 250px;
        object-fit: cover;
        width: 100%;
    }

    .ts-team-wrapper:hover .team-img-wrapper img {
        transform: scale(1.1);
        filter: brightness(0.9);
    }

    .ts-name {
        font-weight: 600;
        color: #333;
        transition: all 0.3s ease;
        position: relative;
        display: inline-block;
    }

    .ts-name:hover {
        color: #0d6efd;
    }

    .ts-name::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #0d6efd;
        transition: width 0.3s ease;
    }

    .ts-name:hover::after {
        width: 100%;
    }

    .ts-designation {
        font-size: 0.9rem;
        color: #0d6efd;
        margin-bottom: 15px;
        font-weight: 500;
    }

    .ts-team-content-classic {
        position: relative;
        z-index: 2;
        background-color: #ffffff;
        padding: 20px;
        border-top: 1px solid #f0f0f0;
    }

    /* Style untuk tombol Muat Lebih Banyak */
    .load-more-container {
        text-align: center;
        margin-top: 30px;
    }

    .btn-load-more {
        display: inline-block;
        padding: 12px 30px;
        background-color: #0d6efd;
        color: white;
        border: none;
        border-radius: 50px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    }

    .btn-load-more:hover {
        background-color: #0b5ed7;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
    }

    /* Animasi untuk card yang muncul */
    .fade-in {
        animation: fadeIn 0.5s ease-in;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    
    