        /* Bagian Hero dengan Background Image */
        .hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/background.png') center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

        
        .hero-content {
            max-width: 800px;
            padding: 2rem;
        }
        
        /* Efek hover pada card */
        .custom-card {
            transition: transform 0.3s;
            margin-bottom: 20px;
        }
        
        .custom-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Styling untuk logo navbar */
        /* Navbar Transparan dengan Efek Scroll */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    background-color: transparent !important;
    backdrop-filter: none;
    border-bottom: none;
}

/* Navbar ketika di-scroll */
.navbar.scrolled {
    background-color: #28a745 !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Text navbar default (transparan) */
.navbar .navbar-brand,
.navbar .nav-link {
    color: white !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Text navbar ketika scrolled */
.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
    color: #333 !important;
}

/* Hover effect untuk nav links */
.navbar .nav-link:hover {
    color: white !important;
    transform: translateY(-1px);
}

/* Styling untuk logo navbar */
.navbar-brand img {
    height: 40px;
    margin-right: 10px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s ease;
}

/* Logo ketika scrolled */
.navbar.scrolled .navbar-brand img {
    filter: none;
}

/* Hamburger menu untuk mobile */
.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown menu styling */
.navbar .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 10px;
}

.navbar .dropdown-item {
    color: #333;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background-color: white;
    color: white;
    transform: translateX(5px);
}

/* Pastikan content tidak tertutup navbar */
body {
    padding-top: 0;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/background.png') center/cover no-repeat;
    height: 100vh; /* Full height untuk hero */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

/* Efek hover pada card */
.custom-card {
    transition: transform 0.3s;
    margin-bottom: 20px;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Pengaturan section */
.section {
    padding: 80px 0;
}

/* Judul section dengan garis bawah */
.section-title {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background-color: #28a745;
    transform: translateX(-50%);
}

/* Styling untuk anggota tim pemerintahan */
.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Styling untuk link social media */
.social-links {
    margin: 20px 0;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
    line-height: 36px;
    margin: 0 5px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #218838;
    transform: translateY(-3px);
}

/* Styling untuk footer */
footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
}

/* Styling untuk card statistik desa */
.stat-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    background-color: white;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #28a745;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Ikon untuk layanan */
.services-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #28a745;
}

/* Background warna hijau muda */
.bg-light-green {
    background-color: #f0f9f0;
}

/* Styling untuk produk UMKM */
.product-card {
    border: none;
    transition: transform 0.3s;
    margin-bottom: 25px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 200px;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
}

.product-price {
    font-weight: bold;
    color: #28a745;
    font-size: 1.2rem;
}

/* Styling untuk testimoni UMKM */
.testimonial-card {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-rating {
    color: #ffc107;
}

/* Tambahan CSS khusus untuk bagian UMKM agar konsisten dengan daftarumkm.blade.php */
    .product-card {
        border: none;
        transition: transform 0.3s;
        margin-bottom: 25px;
        background-color: white; /* Pastikan background putih */
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    .product-img {
        height: 200px;
        object-fit: cover;
    }
    .product-price {
        font-weight: bold;
        color: #28a745;
        font-size: 1.2rem;
    }
    .contact-info {
        background-color: #f8f9fa;
        padding: 8px 12px;
        border-radius: 5px;
        margin-top: 10px;
    }
    .contact-info small {
        color: #6c757d;
    }
    .whatsapp-btn {
        background-color: #25d366;
        border-color: #25d366;
        color: white;
        font-size: 0.8rem;
    }
    .whatsapp-btn:hover {
        background-color: #20c05a;
        border-color: #20c05a;
        color: white;
    }

    /* Style tambahan untuk galeri di welcome page */
    .gallery-img-welcome {
        height: 200px; /* Tinggi gambar di galeri welcome */
        object-fit: cover;
    }