.thumb-kegiatan {
    width: 120px;
    aspect-ratio: 3 / 2; /* 120x80 */
    flex-shrink: 0;      /* PENTING untuk flex */
}

.thumb-kegiatan img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}


.my-text-primary {
    color: #44a357 !important;
}

.my-bg-primary {
    background-color: #44a357 !important;
}

.my-bg-orange {
    background-color: #f8981d !important;
    color: #ffffff;
}

.my-bg-gray {
    background-color: #f9f6f3 !important;
    color: #333446;
}

@media (min-width: 1200px) {
    .hover-underline::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        /* Jarak dari teks */
        width: 0;
        height: 2px;
        background-color: #44a357;
        /* Warna garis */
        transition: width 0.5s ease;
    }
}

@media (min-width: 1024px) {
    /* .head-about{
    width: 35% !important;
  } */
    .pill-navbar {
        border-radius: 50px;
        /* atau 9999px untuk full pill */
    }

    .my-text-heading {
        font-size: 4.7rem !important;
    }

    .ppdb-section {
        margin-top: -400px !important;
    }

    .ppdb-section .container {
        margin-top: 400px !important;
    }
}

/* Efek saat hover */
.hover-underline:hover::after {
    width: 100%;
}

.hover-underline {
    position: relative;
    text-decoration: none;
    /* Hilangkan underline default */
}

.btn-white {
    background-color: #ffffff;
    /* putih */
    color: #44a357;
    /* hijau dari tombol sebelumnya */
    border: none;
    padding: 0.7rem 1.8rem;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hover */
.btn-white:hover {
    background-color: #44a357;
    /* abu-abu muda */
    color: #ffffff;
    /* hijau lebih gelap */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Active */
.btn-white:active {
    background-color: #eaeaea;
    /* abu-abu lebih gelap */
    color: #f8981d;
    /* hijau lebih gelap lagi */
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-green {
    /* Tampilan dasar tombol */
    background-color: #44a357;
    /* Warna hijau yang Anda berikan */
    color: white;
    /* Warna teks putih */
    border: none;
    padding: 0.7rem 1.8rem;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-white-transparent {
    /* Tampilan dasar tombol */
    background-color: transparent;
    /* Warna hijau yang Anda berikan */
    color: white;
    /* Warna teks putih */
    border: 3px solid #ffffff;
    padding: 0.7rem 1.8rem;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Efek saat kursor diarahkan (hover) */
.btn-green:hover,
.btn-white-transparent:hover {
    background-color: #ffffff;
    /* Warna hijau yang sedikit lebih gelap */
    color: #44a357;
    transform: translateY(-2px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

/* Efek saat tombol diklik (active) */
.btn-green:active,
.btn-white-transparent:active {
    background-color: #327541 !important;
    /* Warna hijau yang lebih gelap lagi */
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-orange {
    /* Tampilan dasar tombol */
    background-color: #f8981d;
    /* Warna oranye dasar */
    color: white;
    /* Warna teks putih */
    border: none;
    padding: 0.7rem 1.8rem;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hover */
.btn-orange:hover {
    background-color: #ffffff;
    /* Warna oranye sedikit lebih gelap */
    transform: translateY(-2px);
    color: #da7d12;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

/* Active */
.btn-orange:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-kids {
    /* Tampilan dasar tombol */
    background-color: #44a357;
    /* Warna hijau yang Anda berikan */
    color: white;
    /* Warna teks putih */
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Efek saat kursor diarahkan (hover) */
.btn-kids:hover {
    background-color: #3b8e4e;
    /* Warna hijau yang sedikit lebih gelap */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Efek saat tombol diklik (active) */
.btn-kids:active {
    background-color: #327541;
    /* Warna hijau yang lebih gelap lagi */
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-pulse {
    padding: 0.7rem 1.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    /* background-color: #44a357; */
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    animation: pulse 1.5s infinite;
    transition: transform 0.2s ease;
}

.btn-pulse i {
    vertical-align: middle;
    display: inline-block;
}

.jumbotron-head {
    width: 75%;
}

.btn-jumbotron {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    /* background-color: #44a357; */
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-jumbotron i {
    vertical-align: middle;
    display: inline-block;
}

/* Animasi berdetak */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Hover → berhenti animasi */
.btn-pulse:hover {
    animation-play-state: paused;
}

/* Klik → efek mengecil sebentar */
.btn-pulse:active {
    transform: scale(0.95);
}

.hero {
    transition: background-image 0.6s ease-in-out;
}

.w-75 {
    width: 75%;
}

.btn-anim {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* gap: 6px; jarak antara teks dan icon */
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.btn-anim i {
    position: absolute;
    right: 21px;
    opacity: 0;
    /* icon awal transparan */
    transform: translateX(-5px);
    /* agak geser kiri */
    transition: all 0.3s ease;
}

.btn-anim span {
    transition: all 0.3s ease;
}

.btn-anim:hover span {
    transform: translateX(-9px);
    /* teks geser kiri */
}

.btn-anim:hover i {
    opacity: 1;
    /* icon muncul */
    transform: translateX(5px);
    /* icon geser kanan */
}

.my-text-heading {
    font-size: 2.7rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* rasio 16:9 */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ppdb-section {
    margin-top: -200px;
}

.ppdb-section .container {
    margin-top: 180px;
}

.rotating {
    animation: spin 12s linear infinite;
    /* 8 detik per putaran */
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.img-right-pill {
    width: 100%;
    height: 408px;
    object-fit: cover;
    display: block;

    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 9999px;
}

/* Gambar kanan atas: lancip di kanan atas */
.img-left-top-pill {
    width: 200px;
    height: 200px;
    object-fit: cover;
    display: block;

    border-top-left-radius: 0;
    border-top-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
    border-bottom-right-radius: 9999px;
}

/* Gambar kanan bawah: lancip di kiri bawah */
.img-left-bottom-pill {
    width: 280px;
    height: 200px;
    object-fit: cover;
    display: block;

    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
    border-bottom-right-radius: 0;
}

.gap-kurikulum {
    gap: 8px !important;
}

/* Gambar kiri: lancip di kanan bawah */
.img-right-pill {
    aspect-ratio: 1 / 1;
    /* bentuk kotak */
    object-fit: cover;
    width: 100%;
    display: block;

    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 9999px;
}

/* Gambar kanan atas: lancip di kanan atas */
.img-left-top-pill {
    aspect-ratio: 1 / 1;
    /* bentuk kotak */
    object-fit: cover;
    width: 100%;
    display: block;

    border-top-left-radius: 0;
    border-top-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
    border-bottom-right-radius: 9999px;
}

/* Gambar kanan bawah: lancip di kiri bawah */
.img-left-bottom-pill {
    aspect-ratio: 1 / 1;
    /* bentuk kotak */
    object-fit: cover;
    width: 100%;
    display: block;

    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
    border-bottom-right-radius: 0;
}

.gap-kurikulum {
    gap: 8px !important;
}

.card-ppdb {
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-bottom: 1rem;
}

/* Tambahkan efek hover agar lebih interaktif */
.card-ppdb:hover {
    transform: translateY(-5px);
}

.testimonial-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 350px;
    /* opsional */
    overflow: hidden;
    border-radius: 10px;
}

.testimonial-img-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    /* transparan hitam */
    color: white;
}

.overlay-text h3,
.overlay-text h4,
.overlay-text p {
    margin: 5px 0;
}

.ppdb-section {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1472%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='url(%26quot%3b%23SvgjsLinearGradient1473%26quot%3b)'%3e%3c/rect%3e%3cpath d='M1440 0L1243.47 0L1440 264.16z' fill='rgba(255%2c 255%2c 255%2c .1)'%3e%3c/path%3e%3cpath d='M1243.47 0L1440 264.16L1440 387.69000000000005L620.83 0z' fill='rgba(255%2c 255%2c 255%2c .075)'%3e%3c/path%3e%3cpath d='M620.83 0L1440 387.69000000000005L1440 420.31000000000006L508.70000000000005 0z' fill='rgba(255%2c 255%2c 255%2c .05)'%3e%3c/path%3e%3cpath d='M508.70000000000005 0L1440 420.31000000000006L1440 477.13000000000005L503.61000000000007 0z' fill='rgba(255%2c 255%2c 255%2c .025)'%3e%3c/path%3e%3cpath d='M0 560L652.22 560L0 384.9z' fill='rgba(0%2c 0%2c 0%2c .1)'%3e%3c/path%3e%3cpath d='M0 384.9L652.22 560L1001.1600000000001 560L0 259.64z' fill='rgba(0%2c 0%2c 0%2c .075)'%3e%3c/path%3e%3cpath d='M0 259.64L1001.1600000000001 560L1202.41 560L0 129.5z' fill='rgba(0%2c 0%2c 0%2c .05)'%3e%3c/path%3e%3cpath d='M0 129.5L1202.41 560L1221.93 560L0 66.24000000000001z' fill='rgba(0%2c 0%2c 0%2c .025)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1472'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='15.28%25' y1='-39.29%25' x2='84.72%25' y2='139.29%25' gradientUnits='userSpaceOnUse' id='SvgjsLinearGradient1473'%3e%3cstop stop-color='rgba(68%2c 163%2c 87%2c 1)' offset='0'%3e%3c/stop%3e%3cstop stop-color='rgba(68%2c 163%2c 87%2c 1)' offset='1'%3e%3c/stop%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: cover;
    /* atau '100% 100%' kalau mau benar-benar stretch */
    background-position: center;
}

.parallax-bg {
    background-image: url("../images/sampul5.jpg");
    /* ganti dengan path gambar kamu */
    background-attachment: fixed;
    /* inti parallax */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding-top: 60px;
}

.parallax-bg-section {
    background-image: url("../images/sampul5.jpg");
    /* ganti dengan path gambar kamu */
    background-attachment: fixed;
    /* inti parallax */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

/* Opsional: beri overlay gelap biar teks lebih kontras */
.parallax-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.photo-stack {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

/* Style umum foto */
.taped-photo {
    position: relative;
    background-size: cover;
    background-position: center;
    border: 0.5rem solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: border 0.3s ease, transform 0.3s ease;
}

/* Efek pita */
.taped-photo::before,
.taped-photo::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 35px;
    background-color: rgba(224, 224, 224, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.taped-photo::before {
    top: -18px;
    left: -19px;
    transform: rotate(-15deg);
}

.taped-photo::after {
    bottom: -10px;
    right: -19px;
    transform: rotate(15deg);
}

/* Ukuran foto besar */
.big-photo {
    width: 300px;
    height: 300px;
    transform: rotate(3deg);
    z-index: 2;
}

/* Ukuran foto kecil */
.small-photo {
    width: 180px;
    height: 180px;
    z-index: 3;
}

/* Posisi foto kecil kiri */
.photo-stack .small-1 {
    position: absolute;
    bottom: 0;
    left: -65px;
    transform: rotate(-5deg);
}

/* Posisi foto kecil kanan */
.photo-stack .small-2 {
    position: absolute;
    bottom: 0;
    right: -85px;
    transform: rotate(8deg);
}

/* Hover efek seperti contoh */
.taped-photo:hover {
    border: 0.7rem solid #fff;
    transform: scale(1.05) rotate(0deg);
}

.img-kegiatan {
    height: 250px !important;
    width: 100%;
    object-fit: cover;
    /* potong gambar agar proporsional */
    object-position: center;
    /* fokus di tengah gambar */
}

.my-testi-img {
    width: 150px;
    /* ukuran lebar */
    height: 150px;
    /* tinggi sama dengan lebar */
    border-radius: 50%;
    /* membuat bulat */
    object-fit: cover;
    /* menjaga rasio gambar */
    object-position: center;
    /* fokus di tengah */
}

.circle-img {
    width: 370px;
    height: 370px;
    border-radius: 50%;
    object-fit: cover;
    border: 10px solid #f0f0f0;
    display: block;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

/* Gambar kecil posisi absolut */
.circle-img-small {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #f0f0f0;
    position: absolute;
}

/* Posisinya di pojok */
.small-img-1 {
    bottom: 10px;
    right: 10px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.small-img-2 {
    bottom: 10px;
    left: 10px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.circle-img:hover,
.circle-img-small:hover {
    border-color: #44a357;
    /* hijau Bootstrap */
    transform: scale(1.05);
}

.circle-img:hover,
.circle-img-small:hover {
    border-color: #44a357;
    box-shadow: 0 0 15px rgba(40, 167, 69, 0.5);
    transform: scale(1.05);
}

.square-img {
    position: relative;
    width: 190px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.square-img img {
    width: 190px;
    height: 190px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.square-img figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    color: #333446;
    text-align: center;
    /* font-size: 1.4rem; */
    font-weight: bold;
    transform: translateY(100%);
    /* default sembunyi */
    transition: transform 0.4s ease;
}

/* Efek hover 3D */
.square-img:hover {
    transform: rotateY(8deg) rotateX(4deg) scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.square-img:hover img {
    transform: scale(1.05);
}

.square-img:hover figcaption {
    transform: translateY(2%);
}

.profile-image-large {
    width: 400px;
    height: 400px;
    border: 10px solid #f0f0f0;
    /* putih agak abu-abu */
    transition: border 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image-small {
    width: 180px;
    height: 180px;
    transform: translate(20%, 0);
    border: 10px solid #f0f0f0 !important;
    transition: border 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image-wrapper img {
    object-fit: cover;
}

/* Hover effect - tambah border + warna + shadow */
.profile-image-large:hover {
    border: 10px solid #44a357;
    /* tambah tebal */
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
    transform: scale(1.05);
}

.profile-image-small:hover {
    border: 10px solid #44a357 !important;
    /* tambah tebal */
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
    transform: translate(20%, 0) scale(1.05);
}

.profile-img:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.fullwidth-photo-stack {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* Full layar */
    height: 730px;
    /* Tinggi area */
    overflow: hidden;
}

/* Style umum foto */
.stack-photo {
    position: relative;
    background-size: cover;
    background-position: center;
    border: 0.5rem solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: border 0.3s ease, transform 0.3s ease;
}

/* Efek pita */
.stack-photo::before,
.stack-photo::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 35px;
    background-color: rgba(224, 224, 224, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stack-photo::before {
    top: -18px;
    left: -19px;
    transform: rotate(-15deg);
}

.stack-photo::after {
    bottom: -10px;
    right: -19px;
    transform: rotate(15deg);
}

/* Ukuran foto */
.big-stack {
    width: 720px;
    height: 520px;
    transform: rotate(3deg);
    z-index: 2;
}

.small-stack {
    width: 320px;
    height: 320px;
    z-index: 3;
}

/* Posisi foto kecil */
.stack-left {
    position: absolute;
    bottom: 10%;
    left: 10%;
    transform: rotate(4deg);
}

.stack-right {
    position: absolute;
    bottom: 10%;
    right: 10%;
    transform: rotate(-5deg);
}

/* Hover efek untuk semua */
.stack-photo:hover {
    border: 0.7rem solid #fff;
    transform: scale(1.05) rotate(0deg);
}

.img-list-berita {
    width: 100%;
    /* lebar sesuai parent */
    height: 250px;
    /* tinggi tetap */
    object-fit: cover;
    /* crop agar proporsional */
}

.badge-tanggal {
    position: absolute;
    bottom: 10px;
    /* jarak dari bawah gambar */
    left: 10px;
    /* jarak dari kiri gambar */
    background-color: rgba(0, 0, 0, 0.7);
    /* hijau semi transparan */
    color: #fff;
    padding: 0.4rem 0.7rem;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 10;
}

.form-control {
    color: #444444;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border: 1px solid #44a357;
    box-shadow: 0 0 10px rgba(68, 163, 87, 0.5);
    color: #444444;
}

.contact-card {
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    background-color: #fff;
}

.contact-card i {
    font-size: 1.5rem;
    color: #198754;
    /* hijau */
    min-width: 30px;
    text-align: center;
}

.contact-card .text {
    flex: 1;
}

.contact-card .text small {
    display: block;
    color: #555;
}

.contact-card:hover {
    background-color: #e6f4ea;
}

.profile-wrapper {
    width: 280px;
    height: 280px;
}

.profile-img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.corner-icon {
    width: 80px;
    height: 80px;
    bottom: 0;
    right: 0;
}

.heading-cursor::after {
    content: "_";
    /* bentuk cursor underscore */
    animation: blink 1s steps(2, start) infinite;
    margin-left: 3px;
    /* jarak dari teks */
    font-weight: normal;
}
.wave-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}
.wave-bottom svg {
    width: 100%;
    height: 100px; /* kecilin biar gak makan banyak space */
    display: block;
}

@keyframes blink {
    to {
        visibility: hidden;
    }
}
.wave-top svg,
.wave-bottom svg {
    display: block;
    width: 100%;
    height: auto;
}

.wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    overflow: hidden;
}

#testimonials {
    position: relative;
    overflow: hidden;
}
.section-wave {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

/* graphic 1 */
.graphic-1,
.graphic-2,
.graphic-3,
.graphic-4,
.graphic-7,
.graphic-8,
.graphic-9,
.graphic-10 {
    position: absolute;
    z-index: 100;
    pointer-events: none;
}

.graphic-1 {
    transform: scaleX(-1);
    height: 80px;
    top: -80px;
    right: -68px;
}
.graphic-2 {
    height: 80px;
    left: 85px;
}
.graphic-3 {
    height: 80px;
    top: -80px;
    right: 100px;
}
.graphic-4 {
    height: 340px;
    top: 50px;
    left: -30px;
}
.graphic-7 {
    height: 400px;
    top: -20px;
    left: -10px;
}
.graphic-8 {
    height: 280px;
    top: -10px;
    left: 20px;
}
.graphic-9 {
    height: 620px;
    top: 50px;
    /* left: 170px; */
}
.graphic-10 {
    height: 45px;
    top: -30px;
    left: 50%; /* pindahkan ke tengah relatif parent */
    transform: translateX(-50%);
}
.thumbnail-kegiatan {
    /*height: 600px;*/
    width: 80%;
    object-fit: cover;
}
.img-rect {
    width: 200px; /* lebar tetap */
    height: 120px; /* tinggi tetap */
    object-fit: cover;
    border-radius: 0.5rem; /* opsional biar mirip rounded-4 bootstrap */
}

/* Responsif di layar kecil (mobile < lg) */
@media (max-width: 991px) {
    .profile-image-large {
        width: 250px;
        height: 250px;
    }

    .profile-image-small {
        width: 100px;
        height: 100px;
        transform: translate(15%, 15%);
    }

    .profile-image-small:hover {
        transform: translate(15%, 15%) scale(1.05);
    }

    .fullwidth-photo-stack {
        height: 300px;
    }

    .big-stack {
        width: 320px;
        height: 220px;
        transform: rotate(3deg);
        z-index: 2;
    }

    .small-stack {
        width: 150px;
        height: 120px;
        z-index: 3;
    }

    .profile-wrapper {
        width: 180px;
        height: 180px;
    }

    .profile-img {
        width: 180px;
        height: 180px;
        object-fit: cover;
    }
    .jumbotron-head {
        width: 80%;
    }
    .graphic-1 {
        height: 60px;
        top: -60px;
        right: -55px;
    }
    .graphic-2 {
        top: -50px;
        left: -50px;
        height: 60px;
    }
    .graphic-3 {
        top: -100px;
        right: 10px;
        height: 50px;
    }
    .graphic-4 {
        height: 330px;
        top: 50px;
    }
    .graphic-8 {
        height: 190px;
        top: -10px;
        left: -25px !;
    }
    .graphic-9 {
        height: 280px;
        top: 20px;
    }
    .thumbnail-kegiatan {
        /*height: 400px;*/
        width: 100%;
    }
    .container-kegiatan {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .graphic-10 {
        height: 38px;
        top: -30px;
        left: 50%; /* pindahkan ke tengah relatif parent */
        transform: translateX(-50%);
    }
}
@media (max-width: 576px) {
    .small-photo {
        width: 120px;
        height: 100px;
        z-index: 3;
    }
    .big-photo {
        width: 250px;
        height: 220px;
        transform: rotate(3deg);
        z-index: 2;
    }
    .taped-photo::before,
    .taped-photo::after {
        width: 60px;
        height: 25px;
    }
    .photo-stack .small-1 {
        bottom: 20px;
        left: -55px;
    }
    .photo-stack .small-2 {
        bottom: 20px;
        right: -65px;
    }
    .photo-stack {
        height: 300px;
    }
    .graphic-4 {
        height: 260px;
        top: 50px;
    }
    .graphic-7 {
        height: 390px;
        top: -10px;
        left: -10px;
    }
    .graphic-8 {
        height: 175px;
        top: -7px;
        left: -25px !;
    }
    .graphic-10 {
        height: 32px;
        top: -25px;
        left: 50%; /* pindahkan ke tengah relatif parent */
        transform: translateX(-50%);
    }
    .stack-photo::before,
    .stack-photo::after {
        content: "";
        position: absolute;
        width: 65px;
        height: 23px;
        background-color: rgba(224, 224, 224, 0.9);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .big-stack {
        width: 260px;
        height: 180px;
    }

    .small-stack {
        width: 120px;
        height: 90px;
    }
    .stack-left {
        bottom: 10%;
        left: 20px;
    }

    .stack-right {
        bottom: 10%;
        right: 20px;
    }
    .graphic-9 {
        height: 220px;
        top: 50px;
    }
    .thumbnail-kegiatan {
        /*height: 300px;*/
    }
}
