/********** Template CSS **********/
:root {
    --primary: #FD5D14;
    --secondary: #FDBE33;
    --light: #F4F6F8;
    --dark: #040F28;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    transition: .5s;
}

.btn::after {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: -1px;
    left: 50%;
    background: #040F28;
    transition: .5s;
}

.btn.btn-primary::after {
    background: var(--dark);
}

.btn:hover::after,
.btn.active::after {
    width: 50%;
    left: 25%;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 50%;
    bottom: 0;
    margin-left: -22px;
    border-radius: 0;
    z-index: 99;
}

.bg-dark-radial {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
}

.bg-light-radial {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    padding: 35px 15px;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
    transition: .5s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 15, 40, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.page-header {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(rgba(40, 4, 4, 0.7), rgba(4, 15, 40, .7)), url(../img/carousel-1.jpg) center center no-repeat; */
    background-size: cover;
}

.service-item .service-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.service-item .service-icon i {
    transition: .2s;
}

.service-item:hover .service-icon i {
    font-size: 60px;
}

.portfolio-item {
    margin-bottom: 60px;
}

.portfolio-title {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 120px;
    padding: 0 30px;
    right: 30px;
    left: 30px;
    bottom: -60px;
    background: #FFFFFF;
    z-index: 3;
}

.portfolio-btn {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
    font-size: 120px;
    line-height: 0;
    transition: .1s;
    transition-delay: .3s;
    z-index: 2;
    opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
}

.portfolio-box::before,
.portfolio-box::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    transition: .5s;
    z-index: 1;
    background: rgba(4, 15, 40, .7);
}

.portfolio-box::before {
    left: 0;
}

.portfolio-box::after {
    right: 0;
}

.portfolio-item:hover .portfolio-box::before {
    left: 0;
    width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
    right: 0;
    width: 50%;
}

@media (min-width: 992px) {
    .testimonial,
    .contact-form {
        margin-left: -90px;
    }
}

@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        /* background: var(--primary) */
    }
}

.footer-shape::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 100%;
    top: 0;
    left: -40px;
    /* background: var(--primary); */
    transform: skew(40deg);
}

.parallax-section {
    background-image: url('../bg/bg.png'); /* ganti dengan path gambar kamu */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.parallax-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* filter gelap biar teks lebih kontras */
    z-index: -1;
}

.gradient-bg {
  background: linear-gradient(-45deg, #6d5eaf, #ffffff, #0f2027, #1544ff);
  background-size: 400% 400%;
  animation: gradientAnim 15s ease infinite;
}
@keyframes gradientAnim {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.transparent-circle {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.3);
        background-color: transparent;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
        animation: glowPulse 3s infinite ease-in-out;
    }

    .transparent-circle img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: transparent;
        opacity: 0.85;
    }

    .hover-caption {
    color: white;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    position: absolute;
    top: 100%; /* posisi di bawah icon */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.transparent-circle:hover .hover-caption {
    opacity: 1;
}

    @keyframes glowPulse {
        0% {
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
        }
        50% {
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
        }
        100% {
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
        }
    }

    .profil-card {
        background-color: transparent;
        border: none;
        box-shadow: none;
        transition: transform 0.3s ease;
    }

    .profil-card:hover {
        transform: scale(1.05);
    }
    
    .btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 123, 255, 0.3); /* semi-transparent */
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 20px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-back-to-top:hover {
    background-color: rgba(0, 123, 255, 0.6);
    transform: scale(1.1);
    color: #fff;
}

.bhineka-text {
    font-family: 'Great Vibes', cursive;
    font-size: 35px;
    /* font-weight: bold; */
    /* text-align: center; */
}

.news-card {
        background-color: rgba(0, 8, 16, 0.128); /* Biru gelap transparan */
        backdrop-filter: blur(5px); /* Efek kaca */
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .news-card:hover {
        transform: translateY(-5px); /* Efek naik sedikit */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Bayangan saat hover */
    }

    .news-card img {
        transition: transform 0.4s ease;
    }

    .news-card:hover img {
        transform: scale(1.05); /* Zoom halus pada gambar */
    }

    .news-title {
        color: white;
        transition: text-shadow 0.3s ease, color 0.3s ease;
    }

    .news-card:hover .news-title {
        color: #00aaff;
        text-shadow: 0 0 8px rgba(0, 170, 255, 0.8);
    }

    /* Parallax background */
.parallax-mimbar {
    background-image: url('../bg/mimbaragama.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
}

/* Overlay gelap agar teks lebih kontras */
.parallax-mimbar::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Efek fade-in */
.fade-in {
    animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Efek glow pada foto */
.img-glow {
    transition: all 0.4s ease;
}
.img-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ffffffa8;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.page-header {
    background-image: url('../bg/pagehead.jpg');
    background-size: cover;
    background-position: center;
    height: 400px; /* atur tinggi header */
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    font-size: 4rem; 
    font-weight: bold; 
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

  /* Efek glow & animasi */
    .glow-text {
        color: rgb(255, 255, 255);
        text-shadow: 0 0 5px rgba(255,255,255,0.8),
                     0 0 10px rgba(255,255,255,0.8),
                     0 0 20px rgba(251, 255, 0, 0.8),
                     0 0 40px rgba(251, 255, 0, 0.6);
        animation: glowPulse 2s infinite;
    }

    @keyframes glowPulse {
        0% {
            text-shadow: 0 0 5px rgba(255,255,255,0.8),
                         0 0 10px rgba(255,255,255,0.8),
                         0 0 20px rgba(251, 255, 0, 0.8),
                        0 0 40px rgba(251, 255, 0, 0.6);
        }
        50% {
            text-shadow: 0 0 10px rgba(255,255,255,1),
                         0 0 20px rgb(0, 0, 0),
                         0 0 20px rgba(251, 255, 0, 0.8),
                        0 0 40px rgba(251, 255, 0, 0.6);
        }
        100% {
            text-shadow: 0 0 5px rgba(255,255,255,0.8),
                         0 0 10px rgba(255,255,255,0.8),
                         0 0 20px rgba(251, 255, 0, 0.8),
                        0 0 40px rgba(251, 255, 0, 0.6);
        }
    }

    .bg-biru-gelap {
        background: linear-gradient(135deg, #093d75, #1b263b); /* gradien biru gelap */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* bayangan lembut */
        border-radius: 10px; /* sudut membulat */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .bg-biru-gelap:hover {
        transform: translateY(-5px); /* efek melayang saat hover */
        box-shadow: 0 8px 45px rgba(9, 119, 230, 0.5); /* glow biru */
    }

    .table th {
        vertical-align: middle;
        font-weight: bold;
    }
    .table td {
        vertical-align: middle;
    }
    .card {
        overflow: hidden;
    }

    .bg-gradient-primary {
    background: linear-gradient(45deg, #0d6efd, #007bff);
}

.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
    transition: 0.2s;
}

.table thead th {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table td, .table th {
    vertical-align: middle;
}

.video-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .video-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.66);
    }

    .portfolio-link {
        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
    }
    .portfolio-link img {
        transition: transform 0.5s ease;
        width: 100%;
        display: block;
    }
    .portfolio-link:hover img {
        transform: scale(1.1);
    }
    .portfolio-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .portfolio-link:hover .portfolio-overlay {
        opacity: 1;
    }
    .portfolio-btn {
        font-size: 2.5rem;
        color: white;
        transform: scale(0.8);
        transition: transform 0.3s ease;
    }
    .portfolio-link:hover .portfolio-btn {
        transform: scale(1);
    }

     .service-item {
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .service-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 25px rgba(0,0,0,0.15);
    }
    .service-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease, filter 0.5s ease;
    }
    .service-item:hover img {
        transform: scale(1.08);
        filter: brightness(0.9);
    }
    .service-item h4 {
        font-weight: 600;
        color: #333;
        transition: color 0.3s ease;
    }
    .service-item:hover h4 {
        color: #ff0000b3; /* Biru elegan */
    }

        .contact-card {
        background: white;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.51);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.764);
    }
    .contact-info a {
        display: block;
        color: #333;
        text-decoration: none;
        margin-bottom: 15px;
        font-size: 1rem;
        transition: color 0.3s ease;
    }
    .contact-info a i {
        color: #0d6efd;
        margin-right: 10px;
        font-size: 1.2rem;
    }
    .contact-info a:hover {
        color: #0d6efd;
    }
    .form-container {
        background: white;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.764);
    }
    .form-control {
        border-radius: 8px;
        padding-left: 15px;
    }
    .btn-custom {
        border-radius: 8px;
        font-weight: 500;
    }

     /* Hover efek umum detail berita */
    .hover-effect:hover {
        background-color: #dbdbdbff;
        transform: translateX(4px);
        transition: 0.3s;
    }
    .hover-scale {
        transition: transform 0.3s ease-in-out;
    }
    .hover-scale:hover {
        transform: scale(1.03);
    }

    /* Preloader Fullscreen Background */
  #preloader {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: #051b44;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.5s ease;
  opacity: 1;
}

#preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

  /* SVG Loader */
  .loader svg {
    width: 80px;
    height: 80px;
    animation: rotate 2s linear infinite;
    margin-bottom: 20px;
  }

  .loader circle {
    stroke: #00bcd4;
    stroke-linecap: round;
    stroke-width: 4;
    fill: none;
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    animation: dash 1.5s ease-in-out infinite;
  }

  /* Rotate animation */
  @keyframes rotate {
    100% {
      transform: rotate(360deg);
    }
  }

  /* Stroke dash animation */
  @keyframes dash {
    0% {
      stroke-dashoffset: 150;
    }
    50% {
      stroke-dashoffset: 37.5;
      transform: rotate(45deg);
    }
    100% {
      stroke-dashoffset: 150;
      transform: rotate(360deg);
    }
  }

  /* Loading text animation */
  .loading-text {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: blink 1.5s infinite;
  }

  @keyframes blink {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.3;
    }
  }


/* START NAVBAR */
/* === NAVBAR === */
.navbar {
  transition: all 0.4s ease-in-out;
  font-family: 'Oswald', sans-serif;
  background: linear-gradient(90deg, rgba(72,80,90,0.6) 0%, rgba(0,0,0,0.3) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: globalGlowPulse 2s infinite ease-in-out;
}

.navbar.scrolled {
  background: linear-gradient(90deg, #2c3e50 0%, #34495e 100%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.navbar .nav-link {
  color: #fff !important;
  padding: 10px 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

/* Underline efek glow + kilau */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 3px;
  background: linear-gradient(270deg, #ffd700, #fff7b3, #ffd700);
  background-size: 200% 200%;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.navbar .nav-link:hover::after {
  width: 100%;
  left: 0;
  opacity: 1;
  animation: globalGlowPulse 2s infinite ease-in-out, shineMove 3s linear infinite;
}

.navbar .nav-link:hover {
  color: #ffd700 !important;
  /* animation: globalGlowPulse 2s infinite ease-in-out; */
}

/* === DROPDOWN === */
.dropdown-menu {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(44, 62, 80, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  animation: dropdownFade 0.3s ease forwards, globalGlowPulse 2s infinite ease-in-out;
}

.dropdown-item {
  color: #fff;
  padding: 10px 15px;
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-item:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  text-shadow: 0 0 5px #ffd700, 0 0 10px #ffd700;
}

.dropdown-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(270deg, #ffd700, #fff7b3, #ffd700);
  background-size: 200% 200%;
  transition: width 0.3s ease;
}

.dropdown-item:hover::after {
  width: 100%;
  animation: globalGlowPulse 2s infinite ease-in-out, shineMove 3s linear infinite;
}

/* === ANIMASI GLOBAL === */
@keyframes globalGlowPulse {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.4), 0 0 15px rgba(255, 215, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.3);
  }
}

@keyframes shineMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-icon {
    max-width: 250px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.main-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgb(0, 81, 255)) drop-shadow(0 0 20px rgb(0, 0, 255));
    -webkit-filter: drop-shadow(0 0 10px rgb(0, 81, 255)) drop-shadow(0 0 20px cyan);
}
.sub-icon {
    transition: transform 0.3s ease, filter 0.3s ease;
    max-width: 180px;
}
.sub-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.7));
}

.icon-caption {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 8px;
    color: #000000;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
.sub-icon:hover + .icon-caption {
    color: #00c4ff;
}
.sub-icon.show {
    opacity: 1;
    transform: translateY(0);
}

/* Efek Halus Muncul Container */
.icons-wrapper {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease;
}
.icons-wrapper.show {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

/* Efek Rotasi */
.main-icon.rotate {
    animation: spin 0.6s ease;
}
@keyframes spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.icon-title {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 1.5rem;
        color: #003366; /* warna biru elegan */
        margin-bottom: 5px;
        letter-spacing: 0.5px;
    }

    .icon-subtitle {
        font-family: 'Poppins', sans-serif;
        font-size: 0.95rem;
        color: #555;
        margin: 0;
    }

    .main-icon {
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .main-icon:hover {
        transform: scale(1.05);
    }

        .gallery-img {
        transition: transform 0.3s ease, filter 0.3s ease;
        object-fit: cover;
        height: 180px; /* lebih kecil */
        width: 100%;
    }
    .gallery-img:hover {
        transform: scale(1.05);
        filter: brightness(85%);
    }
    .image-wrapper {
        position: relative;
        overflow: hidden;
    }
    .overlay {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.4);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .image-wrapper:hover .overlay {
        opacity: 1;
    }
    .service-item {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .service-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
