
/*** Spinner Start ***/
/*** Spinner ***/
/* Spinner Container */
.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9); /* Efek transparan */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* Animasi Circle Border */
.circle-border {
    width: 60px;
    height: 60px;
    border: 5px solid #000000;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animasi Core */
.circle-core {
    width: 30px;
    height: 30px;
    background: #8400ff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Animasi Loading Text */
.loading-text {
    margin-top: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #8400ff;
    animation: fadeIn 0.5s infinite alternate;
}

/* Keyframes Animasi */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

/* Hilangkan Spinner Setelah Selesai Loading */
.spinner-container.hide {
    opacity: 0;
    visibility: hidden;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 12px 4px #b79e9e;
}

.btn.btn-primaryy {
    box-shadow: inset 0 0 12px 4px #ffffff;
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 12px 4px #6e00ff;
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/* Atur section agar lebih rapi */
.text-center a {
    color: rgb(255, 254, 254); /* Warna teks hitam */
    font-family: Arial, sans-serif; /* Font Arial */
    text-decoration: none; /* Menghilangkan garis bawah */
    font-weight: bold; /* (Opsional) Membuat teks lebih tebal */
}


/* Atur ukuran gambar agar seragam */
.client-reviews .reviewer-thumb img {
    width: 80%; /* Pastikan gambar memenuhi kontainer */
    height: 200px; /* Tinggi seragam */
    object-fit: contain; /* Pastikan gambar tidak terdistorsi */
    display: block;
    margin: 0 auto; /* Pusatkan gambar */
}

/* Atur kontainer gambar agar sama ukuran */
.client-reviews .single-review {
    width: 250px; /* Ukuran tetap untuk semua item */
    height: 200px; /* Pastikan semua seimbang */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff; /* Tambahkan background putih agar rapi */
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    margin: 10px auto;
}

/* Container utama */
.client-reviews-section {
    background-color: #6a1b9a; /* Warna latar agar tetap elegan */
    padding: 50px 0;
}

/* Styling carousel */
.client-reviews {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

/* Kartu klien */
.single-review {
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 280px;
}

/* Nama klien */
.reviewer-name {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    text-align: center;
    min-height: 50px; /* Pastikan semua teks sejajar */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gambar klien */
.reviewer-thumb img {
    max-width: 100%;
    height: 120px; /* Pastikan gambar memiliki tinggi yang seragam */
    object-fit: contain; /* Pastikan gambar tidak terpotong */
    border-radius: 10px;
    display: block;
    margin: 10px auto;
}


/* Untuk layar sedang (tablet, 576px - 991.98px): 2 review per baris */
@media (min-width: 576px) and (max-width: 991.98px) {
    .client-reviews-section {
        padding: 50px 50px;
        padding-right: 20%;
        padding-left: 20%;
    }
    .client-reviews .single-review {
        flex: 0 0 45%;
        max-width: 45%;
    }
}



.back-to-top {
    position: fixed;
    /* left: 20px; Tetap di bagian kiri */
    right: 20px;  /* Posisi di pojok kanan */
    bottom: 20px; /* Tetap di bagian bawah */
    width: 50px;
    height: 50px;
    background: #5800ff; /* Warna biru */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0; /* Default tersembunyi */
    visibility: hidden;
    z-index: 9999; /* Pastikan ada di depan elemen lain */
}

.back-to-top:hover {
    background: #0056b3;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #000000de;
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid #000000 !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid #000000 !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #000000de;
    background-color: #eeeeeec7;
    border-radius: 20px;
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid #000000de !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid #000000de !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 576px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 108vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(52, 52, 52, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero p {
    font-size: 1rem;
    margin: 20px 0;
    color: #000000;
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s;
}

.btn:hover {
    background: white;
    color: purple;
}

/* Lengkungan SVG di bagian bawah */
.wave-container {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Gambar orang */
.person {
    /* position: absolute; */
    /* bottom: 0;
    right: 10%; */
    /* z-index: 1; */
    width: 240px; /* Sesuaikan ukuran */
}





.navbar-light .navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark) !important;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}
.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(0.9);
}
.navbar-light .navbar-brand img {
    max-height: 50px;
    transition: .5s;
    width: 110%;
    margin-left: -6%;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 7px 12px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 35px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .contact-button {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #7B30F0; /* Warna ungu */
        color: #fff;
        padding: 1px 4px;
        font-size: 16px;
        font-weight: 200;
        border-radius: 30px;
        border: 2px solid #fff;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 4px 10px rgba(123, 48, 240, 0.4);
    }
    
    .contact-button i {
        font-size: 18px;
    }
    
    .contact-button:hover {
        background: #ffffff; /* Warna lebih gelap saat hover */
        box-shadow: 0 6px 14px rgba(90, 27, 176, 0.6);
    }
    

    /* Active link styling */
    .navbar .nav-item .nav-link.active {
    color: #2096ad !important; /* Warna teks saat aktif */
    font-weight: bold; /* Teks tebal */
    border-bottom: 2px solid #2096ad; /* Garis bawah saat aktif */
    transition: all 0.3s ease-in-out; /* Animasi transisi */
}


}
/*** Carousel Hero Header Start ***/


/* === Hero Carousel Styling === */
.hero-carousel {
    position: relative;
    background-color: white; 
    color: white;
    padding-bottom: 50px; /* Memberikan ruang di bawah sebelum wave */
    overflow: hidden;
}

/* === Gambar Carousel === */
.banner-image {
    width: 100%;
    height: 600px; /* Pastikan tinggi gambar konsisten */
    object-fit: cover;
}

/* === Caption Styling === */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
}

/* === Responsif Mobile === */
@media (max-width: 768px) {
    .banner-image {
        height: 200px; /* Kurangi tinggi gambar untuk mobile */
    }

    .carousel-caption {
        width: 90%;
        font-size: 14px;
        padding: 10px;
    }

    .carousel-caption h1 {
        font-size: 24px;
    }

    .carousel-caption h3 {
        font-size: 18px;
    }

    .wave-container {
        bottom: -5px; /* Sesuaikan jika masih menutupi gambar */
    }
}



/*batas hero*/


.header-carousel {
    position: relative; 
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #634589eb;
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #634589eb;
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

@media (max-width: 576px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 630px;
        transition: 0.5s;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }
 
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 95px;
    display: block;
    object-fit: cover;
    transition: 0.5s;

}

/* Responsive untuk layar kecil */
@media (max-width: 768px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 400px; /* Atur tinggi agar tidak terlalu besar di mobile */
        max-height: 400px;
    }

    /* Atur ukuran caption agar tetap proporsional */
    .header-carousel .header-carousel-item .carousel-caption {
        height: auto;
        padding: 10px;
        background: rgba(0, 0, 0, 0.6); /* Transparansi lebih pekat di layar kecil */
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 90% !important;
        font-size: 14px; /* Perkecil ukuran teks agar tetap pas */
    }

    .header-carousel .header-carousel-item .carousel-caption h1 {
        font-size: 18px; /* Kurangi ukuran teks di mobile */
    }

    .header-carousel .header-carousel-item .carousel-caption h3 {
        font-size: 16px; /* Tambahkan ukuran teks kecil */
    }
}

/* Navigasi Owl Carousel - Sesuaikan untuk layar kecil */
.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    font-size: 24px;
    border-radius: 50%;
    background: #634589eb;
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

/* Atur posisi tombol navigasi untuk layar kecil */
@media (max-width: 576px) {
    .header-carousel .owl-nav .owl-prev {
        left: 10px;
    }

    .header-carousel .owl-nav .owl-next {
        right: 10px;
    }

    /* Sesuaikan tombol agar lebih kecil */
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }

}

@media (min-width: 992px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%; /* Ubah height agar sesuai dengan tinggi carousel */
    top: 0;
    left: 0;
    padding: 0; /* Buang padding agar elemen tetap di tengah */
    display: flex;
    align-items: center; /* Pusatkan vertikal */
    justify-content: center; /* Pusatkan horizontal */
    background: rgba(0, 0, 0, .5);
    text-align: center; /* Pusatkan teks */
}

/* Sembunyikan caption secara default */
.header-carousel .header-carousel-item .carousel-caption {
    opacity: 0; /* Sembunyikan caption */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(20px); /* Efek naik ke atas saat muncul */
}

/* Tampilkan caption saat hover */
.header-carousel .header-carousel-item:hover .carousel-caption {
    opacity: 1; /* Munculkan caption */
    transform: translateY(0); /* Hilangkan efek naik */
}


.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;
    
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: -webkit-radial-gradient(50% 50%, circle closest-side, #af52ed 0%, #8830df 100%);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}
/*** Single Page Hero Header End ***/


/*** Service Start ***/

/* Pastikan semua kartu memiliki tinggi yang sama */
.service .service-item {
    display: flex;
    flex-direction: column;
    height: 100%; /* Semua kartu memiliki tinggi yang seragam */
}
.service .service-item .service-img {
    position: relative;
    width: 100%;
    height: 100px; /* Ubah sesuai kebutuhan */
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f88b; /* Warna background untuk ruang kosong */
}
/* Buat gambar memiliki ukuran tetap dan sejajar */
.service .service-item .service-img img {
    width: 100%;
    height: 100px; /* Pastikan tinggi gambar tetap */
    object-fit: contain; /* Pastikan gambar tidak terdistorsi */
}

/* Pastikan konten berada di tengah dan tombol selalu di bawah */
.service .service-item .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px; /* Pastikan konten tidak terlalu kecil */
}

/* Tambahkan batas bawah agar tombol tidak terlalu mepet */
.service .service-item .service-content .btn {
    margin-top: auto;
}

/* Efek hover */
.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
}

.service .service-item:hover .service-img::before {
    height: 100%;
}

.service .service-item .service-img:hover img {
    transform: scale(1.1);
}

.service .service-item .service-content {
    position: relative;
    z-index: 2;
}

/* Pastikan tanggal berada di bawah */
.service .service-item .service-content .service-date {
    margin-top: auto; /* Mendorong tanggal ke bawah */
    text-align: left; /* Pastikan rata kiri */
    font-size: 14px;
    color: #6c757d;
}

/*** Service End ***/

/*** Detail service Start ***/

/* Container utama */
.detail-service-container {
    padding: 50px 0;
}

/* Kartu layanan */
.detail-service-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Gambar agar tidak terpotong dan tetap proporsional */
.detail-service-img {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #f8f9fa;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.detail-service-img img {
    max-width: 100%;
    max-height: 350px; /* Batasi tinggi gambar */
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Konten kartu layanan */
.detail-service-content {
    padding: 20px;
    background: white;
}

/* Tombol kembali */
.detail-service-back-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.detail-service-back-btn:hover {
    background: #0056b3;
}

/*** Detail Service End ***/



/*** About Start ***/
.about .about-img {
    position: relative;
    height: 100%;
    border-radius: 10px;
}


.about .about-img .about-experience {
    position: absolute;
    top: 50px; 
    left: -99px; 
    transform: rotate(-90deg);
    background: transparent;
    color: #000000;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 4px;
}

/*** About End ***/

/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    display: flex;
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;

}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
}

.feature .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5 {
    color: var(--bs-dark);
}
/*** Feature End ***/


/*** Appointment Start ***/
.appointment {
    background: linear-gradient(rgba(255, 251, 251, 0.9), rgba(192, 192, 192, 0.9));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.appointment .appointment-form {
    background: rgba(239, 162, 134, 0.3);
}

.appointment .appointment-form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Youtube Video start ***/
.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
    

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 33px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/
/*** Appointment End ***/


/*** Team Start ***/
.team-item {
    display: flex;
    flex-direction: column;
    height: 80%;
}

.team-img {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Ensure team images are aligned and consistent */
.team-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px; /* Set a fixed height for the image container */
    overflow: hidden;
    background-color: #51478a; /* Optional: Add a background color */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.team-img img.team-image {
    width: auto;
    height: 100%; /* Ensure the image fills the container height */
    object-fit: cover; /* Ensure the image is cropped proportionally */
    border-radius: 10px 10px 0 0; /* Match the container's border radius */
}
.team-img img {
    object-fit: contain; /* Memastikan gambar tidak terpotong */
    height: 70%;
    width: auto;
}







.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, .3);
}

.team .team-item .team-content {
    color: var(--bs-primary);
    transition: 0.5s;
    /* height: 180px; */
    background-color: #bdbdbd;
}

.team .team-item .team-content h5 {
    /* color: #ffffff; */
    transition: 0.5s;
}

.team .team-item:hover .team-content h5 {
    color: var(--bs-dark);
}

.team .team-item:hover .team-content {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial {
    background: -webkit-radial-gradient(50% 50%, circle closest-side, #af52ed 0%, #8f8d8f 130%);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: auto;
    height: auto;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: #000000;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: #000000;
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
    color:#5900ffde !important;
}


@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 10px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 10px;
    }
    
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--bs-white);
    background: transparent;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--bs-secondary) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}


/* Testimonial Section Title Start */
.testimonial .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.testimonial .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid #000000 !important;
}

.testimonial .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid #000000 !important;
}

.testimonial .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid #000000 !important
}

.testimonial .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid #000000 !important;
}
/*** Testimonial End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(21, 185, 217, .5);
}

.blog .blog-item .blog-centent {
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*** Blog End ***/


/*** Contact Start ***/
.contact {
    background: white;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


.contact .contact-form .btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .contact-form .btn.btn-light:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.contact .contact-form .form-floating input,
.contact .contact-form .form-floating textarea,
.contact .contact-form .form-floating label {
    color: black;
}



/* Testimonial Section Title Start */
.contact .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.contact .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid #000000 !important;
}

.contact .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid #000000 !important;
}

.contact .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
    background-color: #eeeeeec7;
    border-radius: 20px;
}

.contact .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid #000000 !important;
}

.contact .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border:1px solid #000000 !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: -webkit-radial-gradient(50% 50%, circle closest-side, #89898982 6%, #7c3abd 100%);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: .4px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark) !important;
}
/*** copyright end ***/


/* Section untuk Our Client */
.client-section {
    background-color: #ffffff;
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 17px;
    /* font-weight: bold; */
    color: #020202d9; /* Warna putih untuk teks */
    margin-bottom: 30px;
}

/* Container utama klien */
.clients-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 40px;
    justify-items: center;
}

/* Kartu klien */
.client-card {
    background: -webkit-radial-gradient(50% 50%, circle closest-side, #7c7c7c70 0%, #dbdbdb5e 100%);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
    width: 100%;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Pastikan semua kartu memiliki tinggi yang sama */
}

/* Efek hover */
.client-card:hover {
    transform: translateY(-30px);
    background-color: rgb(0, 157, 255);
}

/* Gambar klien */
.client-card img {
    max-width: 100%;
    height: 150px; /* Pastikan semua gambar memiliki tinggi yang sama */
    object-fit: contain; /* Pastikan gambar tidak terpotong */
    display: block;
    margin: 0 auto;
}

/* Nama klien */
.client-card p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    min-height: 40px; /* Pastikan tinggi area teks seragam */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20%; /* Mendorong teks ke bagian bawah */
    width: 100%;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.8); /* Tambahkan background untuk lebih jelas */
}

.client-card.animated {
    animation-duration: 2s;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.pagination {
    text-align: center;
    margin-top: 30px;
}

.pagination a {
    padding: 10px 15px;
    margin: 0 5px;
    text-decoration: none;
    color: #000;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.pagination a.active {
    background-color: #007bff;
    color: white;
}

.pagination a:hover {
    background-color: #ddd;
}

.pagination .prev-btn, .pagination .next-btn {
    padding: 10px 15px;
    margin: 0 5px;
    text-decoration: none;
    color: #000;
    border: 1px solid #ddd;
    border-radius: 5px;
}
/* end Our Client */



/* start Detail Galery */


/* General Styling */
body {
    overflow-x: hidden;
}

/* Animasi Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animasi untuk setiap gambar */
.gallery-item {
    animation: fadeIn 0.9s ease-in-out;
    opacity: 1;
}

/* Efek hover untuk gambar */
.gallery-item img {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 10px;
    border-radius: 8px;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}

/* Animasi WOW.js */
.wow {
    visibility: hidden;
}

/* Animasi untuk tombol */
.btn-primary {
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #0056b3;
}
.kategori-content {
    display: none; /* Konten disembunyikan secara default */
    flex-wrap: wrap;
}

/* Container Styling */
/* .container {
    max-width: 800px;
    margin: auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
} */

/* Heading */
/* h3 {
    font-size: 28px;
    font-weight: bold;
    color: #007bff;
} */

/* Image Styling */
/* #image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
} */

/* Description */
/* p {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 10px;
} */

/* Back Button */
/* .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
} */
/* end detail galery */

/* berita */
        /* Animasi Fade In */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Efek hover untuk gambar */
        .card-img-top {
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            margin-top: 15px;
        }

        .card-img-top:hover {
            transform: scale(1.05);
            box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
        }

        /* Animasi WOW.js */
        .wow {
            visibility: hidden;
        }

        /* Animasi hover tombol */
        .btn-primary {
            transition: all 0.3s ease-in-out;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            background-color: #0056b3;
        }

        /* Container fade-in */
        .fade-in {
            animation: fadeIn 1s ease-in-out;
        }
        /* akhir berita */

        /* Service Section tambahan */
        .service-item {
            display: grid;
            grid-template-rows: auto 1fr;
            height: 100%;
        }
        .service-content {
            min-height: 300px; /* Sesuaikan angka sesuai kebutuhan */
            display: flex;
            flex-direction: column;
        }
        .service-content .mt-auto {
            margin-top: auto;
            text-align: left;
        }
        
        /* Tombol "Read More" */
        .service-item .btn-primary {
            position: relative;
            z-index: 10;
            margin-top: 10px;
            padding: 12px 25px;
            background-color:rgb(244 244 244);
            color: rgb(0, 0, 0);
            font-size: 16px;
            border-radius: 20px;
        }

        /* Efek Hover pada tombol */
        .service-item .btn-primary:hover {
            background-color: #0088cc;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* end service tambahan */
        
        /* berita tambahan */
        .card {
            display: flex;
            flex-direction: column;
            height: 100%; /* Semua card memiliki tinggi yang sama */
        }
        
        .card-img-top {
            width: 100%;
            height: 150px;
            object-fit: contain;
            overflow: visible; /* Pastikan gambar tidak tersembunyi */
        }
        
        
        .card-body {
            display: flex;
            flex-direction: column;
            flex-grow: 1; /* Isi akan menyesuaikan */
        }
        
        .card-title {
            min-height: 150px; /* Judul memiliki tinggi minimum agar sejajar */
        }
        
        .text-muted {
            text-align: left; /* Pastikan tanggal ada di kiri */
            min-height: 30px; /* Sesuaikan tinggi tanggal */
        }

        .text-mutedd {
            text-align: center;
            min-height: 30px; /* Sesuaikan tinggi tanggal */
            color: #333333;
        }
        
        .card-category {
            min-height: 30px; /* Pastikan kategori memiliki tinggi yang sama */
        }
        
        /* Batasi tinggi teks deskripsi agar seragam */
        .card-text {
            flex-grow: 1;
            max-height: 100px; /* Sesuaikan dengan kebutuhan */
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 4; /* Batasi hingga 4 baris */
            -webkit-box-orient: vertical;
        }
        
        .btn {
            align-self: flex-start; /* Tombol berada di kiri */
            margin-top: auto; /* Tombol selalu di bawah */
        }               
        
        /* end berita tambahan         */

        .short-description {
            white-space: normal !important; /* Pastikan teks bisa wrap */
            overflow: hidden; /* Menghindari teks keluar dari batas */
            text-overflow: ellipsis; /* Tambahkan ... jika teks lebih panjang */
            display: -webkit-box;
            -webkit-line-clamp: 3; /* Atur jumlah baris maksimum */
            -webkit-box-orient: vertical;
            max-height: 90%; /* Sesuaikan tinggi untuk 4 baris */
            line-height: 1.5; /* Jarak antar baris agar lebih nyaman dibaca */
        }
        
/* projek */
/* Sidebar Styling */
.sidebar {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Sidebar Heading */
.sidebar h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}

/* Year List Styling */
.year-list {
    list-style: none;
    padding-left: 0;
}

/* Styling for year links */
.year-list li {
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

/* Year Links Styling */
.year-list a {
    color: #333;
    text-decoration: none;
    padding: 12px 15px;
    display: block;
    margin-bottom: 8px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Active Year Link */
.year-list a.active {
    background-color: rgba(0, 51, 255, 0.541);
    color: rgb(0, 0, 0);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgb(0, 0, 0);
}

/* Hover Effect on Year Links */
.year-list a:hover {
    background-color: rgb(0, 0, 0);
    color: white;
    transform: scale(1.05);
}

/* Main Content Area */
#selected-year-message {
    font-size: 40px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 30px;
    background-color: #eeeeeec7;
    border-radius: 15px;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 12px;
    text-align: left;
    font-size: 18px;
    color:rgb(23 23 23);
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
    font-size: 20px;
    color : #000000;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover Effect on Table Rows */
tr:hover {
    background-color: #f1f1f1;
}

/* Pagination Styling */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding-left: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination a {
    color: #333;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.pagination a:hover {
    background-color:rgb(255, 255, 255);
}

.pagination .active a {
    background-color:rgb(0, 0, 0);
    color: white;
    font-weight: bold;
}

/* end projek */

/* tambahan galeri */
.kategori-header {
    transition: background 0.3s, color 0.3s;
}
.kategori-header:hover {
    color:rgb(187, 0, 255);
    cursor: pointer;
}
/* end tambahan galeri */

/* background tambahan */
.bckg {
    background: linear-gradient(161deg, rgb(123 22 231 / 42%), rgb(216 152 255)), url('../admin/images/8845961_4004353.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.container-fluid.client-reviews-section {
    background: linear-gradient(49deg, rgb(123 22 231 / 42%), rgb(216 152 255)), url(../admin/images/coba2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.container-fluid.about {
    background: linear-gradient(351deg, rgb(123 22 231 / 42%), rgb(216 152 255)), url('../admin/images/3286718.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.container-fluid.service {
    background: linear-gradient(184deg, rgb(139 30 255 / 42%), rgb(216 152 255)), url('../admin/images/32867182.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.container-fluid.team {
    background: linear-gradient(350deg, rgb(123 22 231 / 42%), rgb(216 152 255)), url('../admin/images/18952606_60656342.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.container-fluid.berita {
    background: linear-gradient(161deg, rgb(123 22 231 / 42%), rgb(216 152 255)), url('../admin/images/18952606_6065634.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.container-fluid.projek {
    background: linear-gradient(161deg, rgb(123 22 231 / 42%), rgb(216 152 255)), url('../admin/images/coba1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.container-fluid.video-section {
    background: linear-gradient(196deg, rgb(184 119 254 / 68%), rgb(216 152 255)), url(../admin/images/32867182.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.container-fluid.article {
    background: linear-gradient(196deg, rgb(184 119 254 / 68%), rgb(216 152 255)), url('../admin/images/18952606_60656342.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.container-fluid.testimoni {
    background: linear-gradient(196deg, rgb(184 119 254 / 68%), rgb(216 152 255)), url('../admin/images/coba1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* end background tambahan */