/*common css*/
:root{
    --primary: #4ea1ff;
    --dark: #1b1b1b;
    --text: #666;
    --light: #f4f7fb;
    --white: #fff;
    --card: #e9eef2;
    --icon-bg:#f3f6f9;

}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui;
}

html, body{
    max-width:100%;
    overflow-x:hidden;
}

/*html
{
    scroll-behavior: smooth;
}
body::-webkit-scrollbar{width: 10px;}
body::-webkit-scrollbar{
    background: var(--primary);
    border-radius: 10px;
}*/

body
{
    overflow-x: hidden;
    padding-top: 100px;
}

.title
{
    letter-spacing: 1px;
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 15px;

}

.heading
{
    font-size: 32px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 40px;
    color: var(--dark);
}

.heading-2
{
    font-size: 32px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 40px;
    color: var(--dark);
}

.heading span
{
    color: var(--primary);
}

.desc 
{
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 40px;
}

.container
{
    max-width: 1200px;
    display: flex;
    margin: auto;
    gap: 60px;
    align-items: flex-start;
}

/*header*/
.top-bar
{
    background: var(--primary);
    padding: 8px 5%;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    font-size: 14px;

    position: fixed;
    top: 0;
    width: 100%;
    z-index: 800;
}

.socialTop .bx
{
    font-size: 18px;
    padding-left: 10px;
}

/*BAGIAN NAVBAR*/

.navbar
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    
    /* --- PERUBAHAN GLASSMORPHISM --- */
    background: rgba(255, 255, 255, 0.2); /* Warna putih transparan */
    backdrop-filter: blur(10px);          /* Efek blur kaca */
    -webkit-backdrop-filter: blur(10px);  /* Dukungan Safari */
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Garis halus di bawah */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    /* ------------------------------ */

    position: fixed;
    top: 35px;   /* Saya sarankan 0 jika ingin menempel di atas, atau biarkan 35px sesuai desainmu */
    left: 0;
    width: 100%;
    z-index: 800;
}

.logo
{
    font-size: 24px;
    font-weight: 400;
}

/* dropdown container */
.dropdown {
    position: relative;
}

/* dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    
    /* --- PERUBAHAN GLASSMORPHISM --- */
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* ------------------------------ */
    
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 8px; /* Tambahkan sedikit radius agar lebih modern */
}

.nav-links a{
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.nav-links a:hover{
    border-bottom: 2px solid #00bfff; /* warna underline */
}

.nav-links a.active{
    border-bottom: 2px solid #00bfff;
}

/* dropdown links */
.dropdown-content a {
    display: block;
    padding: 10px;  
}

/* show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
    border-radius: 5px;
}

/* hover effect */
.dropdown-content a:hover {
    background-color: var(--primary);
}

.arrow
{
    font-size: 18px;
}

.logo img{
    width: 50px;
    line-height: 50px;
    vertical-align: bottom;
    position: absolute;
    left: 2.5%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.logo span
{
    color: var(--primary);
    font-weight: bold;
}

.logo p
{
    font-size: 16px;
    color:  var(--text);
    font-weight: 500;
}
.nav-links
{
    display: flex;
    gap: 20px;  
}

.nav-links a{
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
}

.nav-links a::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px; 
    width: 0;
    height: 2px;
    background: #00bfff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* animasi dari tengah */
.nav-links a:hover::after{
    width: 100%;
}

/* menu aktif */
.nav-links a.active::after{
    width: 100%;
}


/* BUTTON LOGIN */
.btn{
    background: linear-gradient(45deg, #00f2ff, #0066ff);
    padding: 12px 20px;
    border-radius: 6px;
    color: var(--white);
    border: none;
    text-decoration: none;
}

.btn:hover
{
    box-shadow: 0 0 20px rgba(0,242,255,0.8);
    transform: scale(1.05);
    color: var(--white);
}


/* BUTTON BERITA */
.btn-berita{
    background: linear-gradient(45deg, #00f2ff, #0066ff);
    padding: 12px 20px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
    color: var(--white);
    border: none;
    text-decoration: none;
    position: absolute;
    right: 0;
    bottom: 0;

}

.btn-berita:hover
{
    box-shadow: 0 0 20px rgba(0,242,255,0.8);
    transform: scale(1.05);
    color: var(--white);
}

.menu-toggle
{
    display: none;
    font-size: 26px;
    cursor: pointer;
}
/* ==== MODERN LOADING MENU ==== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* Background dengan gradien yang lebih halus */
    background: radial-gradient(circle at 30% 40%, #ff2f92 0%, transparent 40%), 
                radial-gradient(circle at 70% 40%, #00e5ff 0%, transparent 40%),
                radial-gradient(circle at 50% 70%, #ff006a 0%, transparent 45%),
                radial-gradient(circle at 20% 80%, #6a00ff 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, #0044ff 0%, transparent 40%), #0b0020;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    /* Efek Glassmorphism lembut */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.loader-content img {
    width: 120px; /* Ukuran lebih proporsional */
    height: 120px;
    object-fit: contain;
    border: 3px solid rgba(255, 255, 255, 0.3);
    padding: 10px;
    border-radius: 50%;
    margin-bottom: 20px;
    /* Animasi mengambang (floating) */
    animation: float 3s ease-in-out infinite;
}

.logo-loader {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 0;
    text-transform: uppercase;
    /* Animasi teks menyala */
    animation: glow 2s ease-in-out infinite alternate;
}

.loading-bar {
    width: 220px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 25px;
    overflow: hidden;
    border-radius: 50px;
    position: relative;
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00e5ff, #f5f838);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.7);
    animation: loading 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ==== ANIMATIONS ==== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    from { text-shadow: 0 0 5px #fff, 0 0 10px #fff; opacity: 0.7; }
    to { text-shadow: 0 0 15px #00e5ff, 0 0 25px #00e5ff; opacity: 1; }
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Responsive adjustment */
@media (max-width: 480px) {
    .logo-loader { font-size: 18px; letter-spacing: 2px; }
    .loader-content img { width: 100px; height: 100px; }
    .loading-bar { width: 180px; }
}




/* ===== NAV RIGHT ===== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ===== LANGUAGE DROPDOWN ===== */
.lang-dropdown {
    position: relative;
}

.lang-btn {
    background: linear-gradient(45deg, #00f2ff, #0066ff);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    
}

.lang-menu {
    position: absolute;
    top: 110%;
    right: 0;
    background: white;
    min-width: 150px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    display: none;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1000; /* penting */
}

.lang-menu a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}

.lang-menu a:hover {
    background: var(--primary);
    color: white;
}

/* Show dropdown */
.lang-dropdown:hover .lang-menu {
    display: block;
}




/* ============================= */
/* HERO SLIDER */
/* ============================= */

.hero{
  position:relative;
  height:75vh;
  overflow:hidden;
  perspective:1200px;
}

.slides{
  position:relative;
  width:100%;
  height:100%;
  transform-style:preserve-3d;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:rotateY(90deg) scale(0.8);
  transition:transform 1.5s ease, opacity 1.5s ease;
}

.slide.active{
  opacity:1;
  transform:rotateY(0deg) scale(1);
  z-index:1;
}

.slide.prev{
  opacity:0;
  transform:rotateY(-90deg) scale(0.8);
}


/* ============================= */
/* OVERLAY */
/* ============================= */

.overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:center;
  text-align:center;
  padding:30px 20px 50px;
  background:linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent 60%);
  color:#fff;
  z-index:2;
}

.overlay img{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  max-width:200px;
  opacity:0.9;
}

.overlay h1{
  font-size:2.5rem;
  margin:10px 0;
}

.overlay h2{
  font-size:1.8rem;
  margin-bottom:20px;
}


/* ============================= */
/* RUNNING TEXT */
/* ============================= */

.wrapper-animasi{
    display:flex;
    position:absolute;
    left:5%;
    top:50%;
    width:100%;
    text-align:left;
    flex-direction:column;
}

.wrapper-animasi p{
    font-size:18px;
}

.wrapper-animasi ol{
    list-style:none;
    --height:3.1rem;
    height:var(--height);
    line-height:var(--height);
    overflow:hidden;
    display:flex;
    flex-flow:column nowrap;
    align-items:flex-start;
    border-radius: 5px;
}

.wrapper-animasi ol li{
    animation:slide calc(6*3*2s) steps(6) infinite;
}

.wrapper-animasi ol li span{
    font-weight:bold;
    -webkit-text-fill-color:transparent;
    background:linear-gradient(20deg, rgb(255, 115, 0), rgb(0, 255, 234));
    -webkit-background-clip:text;
    white-space:nowrap;
    border-right:.4rem solid #fff;
    display:inline-block;
    width:0%;
    animation:cursor .8s step-end infinite, typing 3s steps(18) infinite alternate;
    font-size: 30px;
}

@keyframes cursor{
    50%{border-color:transparent;}
}

@keyframes typing{
    0%,100%{width:0%;}
    70%,100%{width:101%;}
}

@keyframes slide{
    100%{
        transform:translateY(-600%);
    }
}

/* =========================== */
/* HITUNG MUNDUR
/* =========================== */

.hitung-mundur{
     display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0px 60px;
    background: linear-gradient(45deg,rgba(255, 2, 2, 0.9), rgba(255, 255, 255, 0.6)),
    url('../Img/bendera.jpg') center/cover no-repeat;

}


/* ======================= */
/* IMAGE */
/* ======================= */

.img-kiri{
    width:370px;
    height:300px;
    flex: 0 0 100px;
    
}


.img-kanan{
    width:250px;
    height:200px;
    flex: 0 0 100px;
    
}

.btn-merah
{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    padding: 10px 20px 10px;
    background: linear-gradient(180deg, #ff0000, #eeeeee);
    border-radius: 15px;
    right: 55px;
    bottom: 25px;
    color: var(--white);
    font-family: 'robot', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 0 0 1px #e5e7eb;
}

.btn-merah:hover{
    background: var(--white);
    color: var(--dark);
}

.countdown-container{
    display:flex;
    justify-content:center;
    gap:40px;
    padding:40px;
    border-radius:20px;
    width:600px;
    margin:40px auto; /* ini yang bikin tengah */
    position: relative;
}


.footer-count{
    position:absolute;
    top:10px;
    left:50%;
    transform:translateX(-50%);
    width:100%;
    text-align:center;
}

.footer-count p{
    color: var(--white);
    font-size: 25px;
    font-weight: 600;
    padding-top: 30px;
}


/* wrapper tengah */
.countdown-wrapper{
    flex:1;
    display:flex;
    justify-content:center;
}

/* panel countdown tetap */


.time-box{
    text-align:center;
    margin-top:40px;
    margin-bottom: 8px;
}

.numbers{
    display:flex;
    gap:8px;
    justify-content:center;
    margin-bottom:8px;
}

.numbers span{
    background: linear-gradient(145deg, #1e1e1e, #2b2b2b);
    color:white;
    font-size:42px;
    font-weight:bold;
    width:60px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;

    /* SHADOW MODERN */
    box-shadow:
        0 4px 12px rgba(0,0,0,0.25),
        inset 0 1px 2px rgba(255,255,255,0.1);

    transition:0.3s;
}


.numbers span:hover{
    transform: translateY(-3px);
}

.hari
{
    font-size: 14px;
    font-weight: bold;
    color: var(--white);
}

.time-box p{
letter-spacing:3px;
font-size:14px;
margin-top:5px;
}

#hitung{
text-align:center;
font-weight:bold;
margin-top:20px;
}


/* =========================== */
/* HITUNG MUNDUR RESPONSIVE */
/* =========================== */
/* =========================== */
/* KHUSUS RESPONSIVE (MOBILE)  */
/* =========================== */

@media (max-width: 768px) {
    .hitung-mundur {
        flex-direction: column; /* Susun ke bawah */
        justify-content: center;
        align-items: center;
        padding: 60px 20px;
        min-height: auto;
        text-align: center;
    }

    /* Gambar Kiri jadi di Tengah Atas */
    .img-kiri {
        position: relative; /* Lepas dari float/absolute jika ada */
        width: 250px; 
        height: auto;
        margin: 0 auto 60px auto;
        left: 0; /* Reset posisi desktop */
        padding-top: 50px;
    }

    /* Countdown Container di Tengah */
    .countdown-container {
        width: 100%;
        margin: -95px auto;
        flex-wrap: wrap; /* Supaya angka tidak terpotong */
        gap: 15px;
        padding: 10px;
    }

    .time-box {
        margin-top: 10px;
    }

    .numbers span {
        width: 50px;
        height: 70px;
        font-size: 30px;
    }

    /* Teks Ajakan di Tengah */
    .merah-putih {
        margin: 30px 0;
        width: 100%;
    }

    .shine-text {
        font-size: 16px;
        margin-top: 10px;
    }

    /* Tombol Daftar jadi di Tengah */
    .btn-merah {
        position: relative; /* PENTING: Melepas posisi absolute desktop */
        right: auto;
        bottom: auto;
        margin: 90px auto 0 auto;
        width: fit-content;
        display: flex;
        
    }

    /* Sembunyikan gambar kanan di mobile agar tidak penuh */
    .img-kanan {
        display: none;
    }
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width:768px){

.overlay h1{
font-size:1.8rem;
}

.overlay h2{
font-size:1.2rem;
}

.overlay img{
max-width:150px;
}

}

/* Form Box */

.waktu-sholat{
    display:flex;
    justify-content:center;
    align-items:stretch;
    gap:20px;
    padding:20px;
    flex-wrap:wrap;
}

/* BOX WAKTU SHOLAT */

.form-box{
    background:#fff;
    width:65%;
    max-width:900px;
    min-height:350px;
    box-shadow:0 0 0 1px #e5e7eb;
    border-radius:10px;
    padding:70px 20px 20px;
    position:relative;
    display:flex;
    flex-direction:column;
    gap:15px;
}

/* BOX JAM */

.form-box-jam{
    background:var(--white);
    width:30%;
    min-height:350px;
    box-shadow:0 0 0 1px #e5e7eb;
    border-radius:10px;
    padding:20px;
    display:flex;
    justify-content:center;
    align-items:center;
}



/* CONTAINER TABLE */

.container{
    width:100%;
    overflow-x:auto;
}

/* CLOCK */

.clock{
    width:180px;
    height:180px;
    border:6px solid #2563eb;
    border-radius:50%;
    position:relative;
}

.center-dot{
    width:10px;
    height:10px;
    background:#000;
    border-radius:50%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

/* HAND */

.hand{
    position:absolute;
    bottom:50%;
    left:50%;
    transform-origin:bottom;
    transform:translateX(-50%);
}

.hour{
    width:4px;
    height:50px;
    background:#000;
}

.minute{
    width:3px;
    height:65px;
    background:#333;
}

.second{
    width:2px;
    height:75px;
    background:red;
}



/* ======================= */
/* DESKTOP (DEFAULT) */
/* ======================= */

.container-sholat{
    width: 100%;
}

#table{
    display: flex;
    justify-content: center; /* tetap rapi di tengah */
    gap: 20px;
    flex-wrap: wrap; /* boleh turun baris kalau sempit */
}

/* Card */
.waktu-item{
    width: 150px;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
}


/* ======================= */
/* MOBILE / TABLET */
/* ======================= */

@media (max-width: 992px){

.container-sholat{
    overflow-x: auto; /* aktif scroll */
    -webkit-overflow-scrolling: touch;
}

#table{
    flex-wrap: nowrap;       /* jangan turun */
    justify-content: flex-start; /* mulai dari kiri */
    min-width: max-content;  /* paksa melebar */
    padding: 10px;
}

/* card jangan mengecil */
.waktu-item{
    flex-shrink: 0;
}

/* scrollbar kecil */
.container-sholat::-webkit-scrollbar{
    height: 6px;
}

.container-sholat::-webkit-scrollbar-thumb{
    background: #ccc;
    border-radius: 10px;
}

}



/* ======================= */
/* TABLET */
/* ======================= */

@media (max-width:992px){

.waktu-sholat{
    flex-direction:column;
}

.form-box{
    width:100%;
}

.form-box-jam{
    width:100%;
}

}

/* ======================= */
/* MOBILE */
/* ======================= */


.mobile-top{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:60px;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
z-index:9999;
padding:0 20px;

align-items:center;
justify-content:space-between;
}

.mobile-logo{
display:flex;
align-items:center;
gap:10px;
font-weight:bold;
color:var(--primary);
}

.mobile-logo img{
width:35px;
}

.burger{
    font-size:28px;
    cursor:pointer;
}


.burger i
{
    color: var(--text);
}

/* SIDEBAR */

.mobile-sidebar{
position:fixed;
top:0;
right:-280px;
width:280px;
height:100vh;
background:white;
box-shadow:-5px 0 20px rgba(0,0,0,0.1);
padding:70px 20px;
transition:0.4s;
z-index:9998;
}

.mobile-sidebar a{
display:block;
padding:12px;
text-decoration:none;
color:#333;
font-weight:500;
border-bottom:1px solid #eee;
}

.mobile-sidebar a i{
margin-right:10px;
}

/* ACTIVE */

.mobile-sidebar.active{
right:0;
}



@media(max-width:768px){

.mobile-top{
display:flex;
}

.navbar{
display:none;
}

}


@media (max-width:600px){

.form-box{
    padding:80px 15px 15px;
}

.tanggal-wrapper{
    flex-direction:column;
    font-size:14px;
    gap:5px;
}

.info-sholat h3{
    font-size:14px;
}

.clock{
    width:140px;
    height:140px;
}

}





/* SECTION INFORMASI */
.head-informasi{
    position:relative;
    width:100%;
    min-height:450px;
    overflow:hidden;
    display:flex;
    padding: 20px;
}

/* TITLE */
.head-informasi h1{
    position:absolute;
    top:25px;
    left:30px;
    color:white;
    z-index:10;
    font-size:32px;
    letter-spacing:2px;
}

/* SLIDER */
.slider-informasi{
    position:relative;
    width:75%;
    height:450px;
    overflow:hidden;
}

/* OVERLAY AGAR GAMBAR LEBIH BAGUS */
.slider-informasi::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to right, rgba(0,0,0,0.4), transparent);
    z-index:0;
}

/* SLIDES informasi */
.slides-informasi{
    width:100%;
    height:100%;
    position:relative;
}

.slide-info{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transform:scale(1.1);
    transition:opacity 1s ease, transform 6s ease;
    z-index: 5;

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    position: absolute;
    width: 100%;
}


.slide-info img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.slide-info.active{
    opacity:1;
    
    transform: translateY(0);
    position: relative;
    z-index: 2;
}


/* ANIMASI MERAH PUTIH */
.merah-putih{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 25px;
}

/* SHINE TEXT */
.shine-text{
    font-size: 25px;
    font-weight: 700;
    position: relative;

    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.2) 20%,
        rgba(255,255,255,1) 50%,
        rgba(255,255,255,0.2) 80%
    );

    background-size: 200% 100%;
    background-repeat: no-repeat;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    color: white;

    /* 👇 INI KUNCINYA */
    animation: shineMove 8s linear infinite alternate;
}

@keyframes shineMove{
    0%{
        background-position: -200% 0;
    }
    100%{
        background-position: 200% 0;
    }
}


.caption{
    position:absolute;
    bottom:50px; /* posisi di atas dots */
    
    z-index:10;
    color:white;
    width:100%;
    opacity:0;
    transform:translateY(20px);
    transition:0.6s ease;
    background: #036583ad;
    padding: 10px 30px 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

/* tampil hanya saat slide aktif */
.slide-info.active .caption{
    opacity:1;
    transform:translateY(0);
}

/* styling text */
.caption h2{
    font-size:24px;
    margin-bottom:8px;
    font-weight: bold;
    color: var(--card);
}

.caption p{
    font-size:17px;
    line-height:1.5;
    opacity:0.9;
    font-weight: 600;
    color: var(--white);
}


.slider-informasi::after{
    z-index:1;
}

.slide-info{
    z-index:2;
}

.caption{
    z-index:3;
}


/* DOTS */

.dots{
    position:absolute;
    bottom:0.1px;
    width:100%;
    text-align:center;
    z-index:10;
    background: var(--primary);
    padding: 15px;
}

.dot{
    display:inline-block;
    width:12px;
    height:12px;
    margin:0 6px;
    border-radius:50px;
    background:white;
    opacity:0.6;
    transition:0.3s;
}

.dot.active{
    width:35px;
    border-radius:20px;
    opacity:1;
}

/* RIGHT INFO PANEL */

.right-info{
    width:25%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    padding:20px;
    background: radial-gradient(circle at 30% 40%, #ff2f92 0%, transparent 40%), 
                radial-gradient(circle at 70% 40%, #00e5ff 0%, transparent 40%),
                radial-gradient(circle at 50% 70%, #ff006a 0%, transparent 45%),
                radial-gradient(circle at 20% 80%, #6a00ff 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, #0044ff 0%, transparent 40%), #0b0020;
    backdrop-filter:blur(0px);
    color:white;       
}


/* =========================
   TABLET (≤1024px)
========================= */
@media (max-width:1024px){

    .right-info{
        width:35%;
        padding:15px;
    }

    .caption h2{
        font-size:24px;
    }

    .caption p{
        font-size:16px;
    }
}


/* =========================
   MOBILE (≤768px)
========================= */
@media (max-width:768px){

    /* layout jadi vertikal */
    .slider-wrapper{
        flex-direction:column;
    }

    .slides-informasi{
        height:300px;
    }

    .slide-info{
        height:300px;
    }

    /* caption jadi lebih compact & elegan */
    .caption{
        bottom:50px;
        padding:10px 15px;
        backdrop-filter: blur(6px);
        background: rgba(0,0,0,0.4);
        border-radius:10px;
        width:90%;
        left:50%;
        transform:translateX(-50%);
    }

    .slide-info.active .caption{
        transform:translateX(-50%) translateY(0);
    }

    .caption h2{
        font-size:18px;
    }

    .caption p{
        font-size:14px;
        line-height:1.4;
    }

    /* DOTS lebih modern */
    .dot{
        width:10px;
        height:10px;
    }

    .dot.active{
        width:25px;
    }

    /* right panel pindah ke bawah */
    .right-info{
        width:100%;
        height:auto;
        border-radius:0 0 15px 15px;
        padding:20px;
        text-align:center;
    }

}


/* =========================
   EXTRA SMALL (≤480px)
========================= */
@media (max-width:480px){

    .slides-informasi{
        height:250px;
    }

    .slide-info{
        height:250px;
    }

    .caption h2{
        font-size:16px;
    }

    .caption p{
        font-size:13px;
    }

    .dots{
        bottom:10px;
    }

}





/**SOSUAL MEDIA FOOTER**/

.social-media{
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    align-items: center;
}
.social-media i{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    font-size: 20px;
    background: var(--primary);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}


.social-media a
{
    text-decoration: none;
}

.social-media i:hover{
    background: #002ea6;
    transform: translateY(-3px);
}





.right-info h3{
    font-size:17px;
    text-align:center;
    margin:10px 0;
}

.right-info img{
    width:160px;
    height:160px;
    padding: 8px;
    border-radius: 10px;
}

/* =========================
   RESPONSIVE TABLET
========================= */

@media(max-width:1024px){

.slider-informasi{
    width:70%;
}

.right-info{
    width:30%;
}

}

/* =========================
   RESPONSIVE MOBILE
========================= */

@media(max-width:768px){

.head-informasi{
    flex-direction:column;
    height:auto;
}

.slider-informasi{
    width:100%;
    height:300px;
}

.right-info{
    width:100%;
    padding:30px;
}

.right-info img{
    width:140px;
    height:140px;
}

.head-informasi h1{
    font-size:24px;
}

}

/*JOB SECTION*/

.menu-container{
    margin:5px;
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:15px;
    box-shadow: 0 0 0 1px #e5e7eb;
    padding: 20px;
    border-radius: 8px;
    background: var(--card);
}

.menu-container .heading{
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 10px;
}

.menu-box{
    background:#05a2ad;
    border-radius:8px;
    display:flex;
    align-items:center;
    padding:0px;
    cursor:pointer;
    transition:0.3s;
    box-shadow: 0 0 0 1px #e5e7eb;
    overflow: hidden;
    text-decoration: none;
    position: relative;
}


.menu-box:hover{
    background:#798600;
    transform:translateY(-4px);
    box-shadow:0 6px 15px rgba(0,0,0,0.1);
}

.menu-icon{
    width:70px;
    height:70px;
    border-radius:0;
    background:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    margin-right:15px;
    
}

.menu-icon img
{
    width: 60px;
    height: 60px;
    
}

.menu-text h3{
    margin:0;
    font-size:16px;
    color:#00ffff;
}

.menu-text p{
    margin:3px 0 0;
    font-size:13px;
    color:#fff;
}

/* RESPONSIVE */
@media(max-width:1024px){
    .menu-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px){
    .menu-container{
        grid-template-columns: repeat(2, 1fr);
    }
}




/*ABOUT SECTION*/
/* ============================= */
/* STATISTIK SECTION */
/* ============================= */

.statistik-container{
    max-width:1100px;
    margin:auto;
    margin-top:40px;
    margin-bottom:60px;
    padding:60px 40px;
    border-radius:10px;
    box-shadow:0 0 0 1px #e5e7eb;
    position: relative;
}

/* GRID 2 KOLOM */

.statistik-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

/* ============================= */
/* KOLOM GENDER */
/* ============================= */

.statistik-gender{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    text-align:center;
    border-right:1px solid #eee;
    padding-right:30px;
}

.gender-box{
    text-align:center;
}

/* ICON */

.gender-img{
    width:130px;
    height:130px;
    border-radius:50%;
    border:3px dashed var(--text);
    padding:6px;
    margin:auto;
    overflow:hidden;
}

.gender-img img{
    width:100%;
    height:100%;
    object-fit:contain;
    border-radius: 50%;
}

/* TEXT */

.gender-box h2{
    margin-top:8px;
    padding-top: 7px;
    font-size:26px;
    color:var(--primary);
    font-weight: bold;
}

.gender-box p{
    background: var(--primary);
    margin:0;
    font-size:16px;
    font-weight:600;
    padding: 8px;
    border-radius: 20px;
}

/* ============================= */
/* MENU STATISTIK */
/* ============================= */

.statistik-menu{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.statistik-menu a
{
    text-decoration: none;
}
/* CIRCLE MENU */

.circle{
    width:140px;
    height:140px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:0.3s;
}

.circle:hover{
    transform:translateY(-6px);
}

/* INNER */

.inner{
    width:130px;
    height:130px;
    background:white;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    font-size:24px;
    text-align:center;
}

.inner p{
    font-size:14px;
    margin-top:4px;
    font-weight: 600;
}

.inner img
{
    width: 65px;
    width: 65px;
}

/* COLORS */

.green{background:#e7f9ee;}
.orange{background:#fff3e6;}
.blue{background:#eaf3ff;}


/* ============================= */
/* BUTTON DETAIL */
/* ============================= */

.info-toggle{
    width:200px;
    margin:40px auto;
    padding:12px;
    text-align:center;
    background:var(--primary);
    color:white;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
    transition:0.3s;
    position: relative;
}

.info-toggle:hover{
    transform:translateY(-2px);
}


/* ============================= */
/* INFO CARD SLIDE */
/* ============================= */

/* TOMBOL */
.info-toggle{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:10px 18px;
    border-radius:8px;
    cursor:pointer;
    font-weight:500;
    margin-bottom:10px;
    transition:0.3s;
}

.info-toggle:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 15px rgba(0,0,0,0.2);
}


/* PANEL INFO */

/* tombol */

.info-toggle{
    display:inline-block;
    padding:10px 20px;
    background:var(--primary);
    color:white;
    border-radius:8px;
    cursor:pointer;
    font-weight:500;
    margin-bottom:15px;
    transition:0.3s;
}

.info-toggle:hover{
    transform:translateY(-2px);
}


/* panel */

.info-card{
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:max-height 0.5s ease, opacity 0.3s ease;
    background: var(--dark);
    margin-bottom: 20px;
}


/* ketika aktif */

.info-card.active{
    max-height:500px;
    opacity:1;
}


/* grid card */

.pindah{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
}


/* card */

.card{
    background:white;
    padding:20px;
    border-radius:0px;
    text-align:center;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.card h3{
    font-size:14px;
    margin-bottom:5px;
    color: var(--primary);
}

.card span{
    font-size:24px;
    font-weight:bold;
    color:var(--primary);
}


/* ============================= */
/* RESPONSIVE TABLET */
/* ============================= */

@media (max-width:992px){

.statistik-grid{
    grid-template-columns:1fr;
}

.statistik-gender{
    border-right:none;
    border-bottom:1px solid #eee;
    padding-right:0;
    padding-bottom:20px;
}

.pindah{
    grid-template-columns:repeat(3,1fr);
}

}


/* ============================= */
/* RESPONSIVE MOBILE */
/* ============================= */

@media (max-width:600px){

.statistik-container{
    padding:30px 20px;
    margin:15px;
}

.statistik-gender{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.gender-img{
    width:80px;
    height:80px;
}

.gender-box h2{
    font-size:20px;
}

.gender-box p{
    font-size:13px;
}

.circle{
    width:90px;
    height:90px;
}

.inner{
    width:65px;
    height:65px;
    font-size:18px;
}

.inner p{
    font-size:10px;
}

.pindah{
    grid-template-columns:repeat(2,1fr);
}

.card h3{
    font-size:13px;
}

.card span{
    font-size:18px;
}

}



/*specialties-section*/
.specialties-section
{
    position: relative;
    background: linear-gradient(45deg, rgba(0,0,0,0.5), rgba(0,0,0,0.9)), url('../Img/footer.jpg') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 100px 8%;
    padding-bottom: 10px;
    color: var(--white);
    border-radius: 10px;
}

.specialties-section::before{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.6));
}

.specialties-content
{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 40px;
}

.specialties-section img
{
    display: flex;
    position: absolute;
    top: 0;
    left: 5;
    height: 500px;
    width: auto;
}

.left{flex: 1;}
.right{flex: 1; display: flex;justify-content: center;}
.stats
{
    display: flex;
    flex-wrap: wrap;
    gap: 60px 97px;
    justify-content: space-around;
}

.stat
{
    min-width: 120px;
}
.stat h2
{
    font-size: 48px;
    font-weight: 700;
}


/* CARD GRAFIK DESKTOP */
.card-grafik {
    width: 500px;  /* sesuaikan lebar yang diinginkan */
    max-width: 100%;
    background: transparent;
}

.card-grafik canvas {
    
    width: 390px !important;   /* lebar */
    height: 390px !important;  /* tinggi sama dengan lebar */
    background: transparent;
}

.stat p{
    letter-spacing: 2px;
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.8;
}

.info-card
{
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background: var(--card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 0 1px #e5e7eb;
    color: var(--white);
    border-radius: 10px;
    padding: 5px 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    z-index: 999;
}

.info-icon
{
    width: 90px;
    height: 90px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.info-icon img{
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

.info-card p
{
    font-size: 18px;
    font-weight: 400;
}

.whiteBtn
{
    font-size: 18px;
    padding: 15px 40px;
    background: var(--white);
    border: none;
    border-radius: 5px;
    margin: auto;
    transition: 0.4s ease-in-out;
}

.whiteBtn:hover
{
    background: var(--dark);
    color: var(--white);
}


.services-grid-about{
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 200px;
}

.service-card-about{
    flex: 1 1 calc(33.333% - 40px);
    background: var(--white);
    padding: 50px 40px 40px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 0 1px #e5e7eb;
    transition: 0.3s;  
}

.service-card-about h3
{
    position: absolute;
    top: 0;
    left: 50%;
    margin-top: 20px;
    transform: translate(-50%, -50%);
    font-size: 13px;
    color: var(--text);
    
}


/* ============================= */
/* RESPONSIVE MOBILE */
/* ============================= */

@media (max-width:768px){

.specialties-section{
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
}

/* konten menjadi vertikal */
.specialties-content{
    flex-direction: column;
    gap: 30px;
}

/* gambar */
.specialties-section img{
    position: relative;
    height: 200px;
    width: auto;
    left: 0;
    margin-bottom: 20px;
}

/* teks kiri */
.left{
    order: 1;
}

/* grafik */
.right{
    order: 2;
    width: 100%;
}

/* container grafik */
.stats{
    width: 100%;
    justify-content: center;
}

/* card grafik */
.card-grafik{
    width: 100%;
    max-width: 350px;
}

/* canvas chart */
.card-grafik canvas{
    width: 100% !important;
    height: auto !important;
}

/* heading */
.specialties-section .heading{
    font-size: 22px;
}

/* tombol */
.read-btn{
    display: inline-block;
    margin-top: 10px;
}

}


.btn-warga
{
     display: inline-block;
    padding: 14px 35px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-warga:hover
{
    background: var(--primary);
    cursor: pointer;
}

/*Service Section*/
.services-section
{
    background: var(--white);
    padding: 100px 5%;
    text-align: center;
    padding-bottom: 55px;
    position: relative;
}


.services-section h1
{
    font-size: 30px;
}

.services-grid
{
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card
{
    flex: 1 1 calc(33.333% - 40px);
    background: var(--white);
    padding: 60px 40px 40px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 0 1px #e5e7eb;
    transition: 0.3s;
    
}

.service-image
{
    display: flex;
    justify-content: space-between;
    gap: 35px;
    align-items: center;
    padding-top: 5px;
}

.service-card:hover
{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}



.icon-circle
{
   width:150px;
    height:150px;
    margin:0 auto 30px;
    border-radius:50%;
    border:2px dashed var(--primary);
    overflow:hidden; /* penting agar gambar mengikuti lingkaran */
    display:flex;
    align-items:center;
    justify-content:center;
}


.icon-circle img
{
   width:100%;
    height:100%;
    object-fit:cover; /* agar gambar tidak gepeng */
    border-radius:50%;
    padding: 3px;
}

.icon-circle p
{
    font-size: 14px;
    padding: 15px 8px;
}

.category{
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 500;
}

.service-card h3
{
    font-size: 22px;
    margin-bottom: 22px;
    color: var(--dark);
    
}
.service-card p
{
    color: var(--text);
    line-height: 1.8;
    font-size: 15px;
}

.arrow-btn
{
    width: 90px;
    height: 90px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -35px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}   

.service-card:hover .arrow-btn{
    background: #08a1a7;
}


/* CTA */
.footer-cta
{
    background: var(--primary);
    padding: 25px 10%;
    color: var(--white);
    border-radius: 10px;
}

.cta-wrapper
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-left
{
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon
{
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;

}

.cta-icon img
{
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.cta-left h3
{
    font-size: 25px;
    font-weight: 500;
}

.cta-btn
{
    padding: 15px 30px;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
}

.cta-btn:hover
{
    background: var(--white);
    color: var(--primary);
}

/* SECTION UMKM */

.section-umkm{
    padding:80px 5%;

}

.umkm{
    text-align:center;
    font-size:28px;
    font-weight:700;
    margin-bottom:40px;
    color: var(--dark);
}

/* GRID */

.main-umkm{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}


/* CARD */

.shop-card{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.shop-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}


/* SLIDER */

.slider-shop{
position:relative;
width:100%;
height:220px;
overflow:hidden;
}

.slides-shop{
width:100%;
height:100%;
}

.slide-shop{
width:100%;
height:100%;
object-fit:cover;
display:none;
}

.slide-shop.active{
display:block;
}


/* BUTTON */

.prev-shop,
.next-shop{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.4);
color:#fff;
border:none;
font-size:20px;
padding:6px 12px;
cursor:pointer;
border-radius:6px;
}

.prev-shop{ left:10px; }
.next-shop{ right:10px; }


/* DOTS */

.dots-shop{
position:absolute;
bottom:10px;
width:100%;
text-align:center;
}

.dot-shop{
height:8px;
width:8px;
margin:0 3px;
background:#ddd;
display:inline-block;
border-radius:50%;
cursor:pointer;
}

.dot-shop.active{
background:#fff;
}


/* CONTENT */

.card-content{
padding:20px;
text-align:center;
}

.card-content h3{
font-size:18px;
margin-bottom:10px;
color: var(--primary);
}

.price{
font-size:14px;
color:#666;
margin-bottom:15px;
}

.btn-buy{
background:#2f80ed;
color:#fff;
border:none;
padding:10px 18px;
border-radius:6px;
cursor:pointer;
transition:0.3s;
}

.btn-buy:hover{
background:#1b5fd1;
}


/* TABLET */

@media(max-width:1024px){

.main-umkm{
grid-template-columns:repeat(2,1fr);
}

}


/* MOBILE */

@media(max-width:768px){

.main-umkm{
grid-template-columns:1fr;
}

.section-umkm{
padding:60px 5%;
}

.slider-shop{
height:200px;
}

}

/* BLOG SECSION BERITA */
.blogSection
{
    padding: 100px 5%;
    text-align: center;
    background: linear-gradient(35deg,rgba(12, 1, 19, 0.9), rgba(244, 248, 0, 0.6)),
    url('../Img/news-background.jpg') center/cover no-repeat;
    border-radius: 10px;
}


.blog-wrapper
{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:20px;
}




.blog-card
{
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.blog-card:hover
{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.blog-image
{
    position: relative;
}

.blog-image img{
    width: 100%;
    display: block;
}
.date-badge
{
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 15px 18px;
    border-radius: 10px;
    text-align: center;
}
.date-badge h4
{
    font-size: 22px;
    margin-bottom: 5px;

}

.date-badge span
{
    font-size: 13px;
    letter-spacing: 2px;
}

.blog-content{padding: 30px;}
.blog-meta
{
    font-size: 13.5px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--card);
    width: 100%;
    padding: 8px;
    border-radius: 5px;
}

.blog-meta span
{
    margin-right: 15px;
}

.blog-content h3
{
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text);
}

.blog-content p{
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;

}

/* TABLET */
@media (max-width: 1024px){

.blog-wrapper{
    grid-template-columns: repeat(2,1fr);
}

}


/* MOBILE */
@media (max-width: 768px){

.blogSection{
    padding:70px 4%;
}

.blog-wrapper{
    grid-template-columns: 1fr;
}

.blog-content{
    padding:20px;
}

.blog-content h3{
    font-size:18px;
}

.blog-content p{
    font-size:14px;
}

.blog-meta{
    font-size:13px;
}

}


/* MOBILE KECIL */
@media (max-width: 480px){

.date-badge{
    padding:10px 12px;
}

.date-badge h4{
    font-size:18px;
}

.date-badge span{
    font-size:11px;
}

}

/* BAGIAN LOKER */
.loker
{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 30px 80px;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 0 0 1px #e5e7eb;
}

.content-loker
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 25px;
    width: 100%;
    place-items: center;
}

/* =============== */
/* BURSA KERJA
/* =============== */
        
        .card-job {
            background: #ffffff;
            border-radius: 12px;
            width: 300px;
            overflow: hidden;
            box-shadow: 0 0px 10px #e5e7eb;
            text-align: center;
            border: 1px solid #ddd;

            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .card-header-job {
            background: linear-gradient(to bottom, #18a0c9, #0aa9d1);
            color: white;
            padding: 12px;
            font-weight: bold;
            font-size: 1.1rem;
            text-transform: uppercase;
            border-bottom: 3px solid #f1c40f; /* Aksen kuning di bawah header */
        }

        .card-body-job {
            padding: 20px;
            min-height: 250px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .icon-placeholder {
            width: 90px;
            height: 90px;
            margin-bottom: 15px;
            background: #f9f9f9;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 40px;
            border: 1px solid #eee;
        }

        .card-body-job ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
            width: 100%;
        }

        .card-body-job li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 10px;
            color: #333;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        /* Bullet point kustom */
        .card-body-job li::before {
            content: "•";
            color: #1e4b82;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .card-job:hover
        {
            transform: translateY(-10px) scale(1.05); /* Tambahkan sedikit angkatan ke atas */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        /* Responsif untuk layar kecil */
        @media (max-width: 600px) {
            .card {
                width: 100%;
            }
        }

        /* =========================== */
/* RESPONSIF MODE (TAMBAHAN)   */
/* =========================== */

@media (max-width: 1024px) {
    .content-loker {
        /* Tablet: Menjadi 2 kolom atau tetap 3 dengan penyesuaian gap */
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .loker {
        padding: 20px 15px 50px;
        margin-top: 30px;
    }

    .content-loker {
        /* Mobile: Menjadi 1 kolom saja */
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .card-job {
        /* Pastikan card mengambil lebar penuh tapi tidak melebihi container */
        width: 100%;
        max-width: 350px; 
    }

    .heading {
        font-size: 1.5rem; /* Menyesuaikan ukuran judul di HP */
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .card-body-job {
        min-height: auto; /* Biarkan tinggi card mengikuti isi di layar sangat kecil */
        padding: 15px;
    }

    .icon-placeholder {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
}

/* FOOTER */

.main-footer
{
    position: relative;
    padding: 70px 5%;
    background: var(--icon-bg);
   
}

.footer-wrapper
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    
}

.footer-col
{
    flex: 1;
    min-width: 250px;
}

.logo-footer
{
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.logo-footer img
{
    width: 32p;
    height: 32px;
}

.footer-text
{
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: bold;
}

.support-box
{
    
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-box i{
    background: var(--primary);
    color: var(--white);
    width: 45px;
    height: 45px;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-title
{
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
}

.footer-title::after
{
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary);
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer-links{list-style: none;}
.footer-links li{margin-bottom: 12px;}
.footer-links a{
    text-decoration: none;
    color: var(--primary);
    font-size: 14px;
    transition: 0.3s;
}

.footer-links i {
    color: #fff; /* Warna Biru Facebook */
    margin-right: 8px; /* Memberi jarak ke teks */
    padding: 4px;
    background: var(--primary);
    border-radius: 5px;
}

.footer-links a:hover
{
    color: var(--primary);
}

.footer-links p
{
    font-size: 14px;
    margin-bottom: 25px;
}

.news-item
{
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.news-item img{
    width: 70px;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
}

.news-item h5{
    font-size: 14px;
    margin-bottom: 5px;

}

.news-item span
{
    font-size: 12px;
    color: var(--primary);
}

.newsletter input
{
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-top: 10px;
}


.newsletter button
{
    margin-top: 10px;
    width: 100%;
    padding: 12px;
    border: none;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    cursor: pointer;
}

.social{
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social a
{
    width: 40px;
    height: 40px;
    border: 1px solid var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--dark);
    font-size: 20px;
    border-radius: 6px;
    transition: 0.3s;
}


.social a:hover
{
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}


/* ===================== */
/* TABLET */
/* ===================== */
@media (max-width: 992px){

.footer-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-col{
    min-width: 100%;
}

.news-item iframe{
    width: 100%;
    height: 220px;
}

}

/* ===================== */
/* MOBILE */
/* ===================== */
@media (max-width: 600px){

.main-footer{
    padding: 50px 6%;
}

.footer-wrapper{
    grid-template-columns: 1fr;
    gap: 35px;
}

.footer-title{
    font-size: 18px;
}

.footer-text{
    font-size: 14px;
}

.support-box{
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.news-item iframe{
    width: 100%;
    height: 200px;
}

.newsletter input,
.newsletter button{
    font-size: 14px;
}

.social{
    justify-content: center;
}

}

/* ===================== */
/* FOOTER BOTTOM */
/* ===================== */
.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #111;
    color: white;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright
{
    color: var(--text);
}

.footer-bottom a{
    color: var(--text);
    margin-left: 15px;
    text-decoration: none;
}

@media (max-width:600px){
.footer-bottom{
    flex-direction: column;
    text-align: center;
}
.footer-bottom a{
    margin: 5px;
}
}

#backToTop
{
    position: fixed;
    bottom: 100px;
    right : 25px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #4ea1ff, #0066ff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.4s ease;
}

#backToTop .b{font-size: 30px;}
#backToTop:hover{
    transform: scale(1.15) rotate(180deg);
    box-shadow: 0 0 25px rgba(78,161,255,0.8);
}

.footer-bottom
{
    background: var(--white);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;

}

.footer-bottom a{
    text-decoration: none;
    color: var(--text);
    margin-left: 15px;
}


/* PANEL */


/* ===== LOGIN ===== */
.login-modal {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s ease;
    z-index: 9999;
    
}

.login-modal.active {
    visibility: visible;
    opacity: 1;
}

/* ===== Glass Morph Box ===== */
.login-box {
    position: relative;
    width: 380px;
    padding: 45px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.37);

    text-align: center;
    animation: popUp 0.4s ease;
}

.login-box img
{
    width: 120px;
    height: 120px;
    position: absolute;
    top: -1%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--text);
    border-radius: 50%;
    background: #ffffffaf;
    

}

@keyframes popUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.login-box h2 {
    padding: 13px;
    letter-spacing: 2px;
    color: #fff;
    margin-top: 20px;
}

.login-box p {
    font-size: 13px;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.7);
}

/* ===== Input ===== */
.input-group {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

.input-group i:first-child {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--dark);
    font-size: 18px;
}

.input-group input {
    width: 100%;
    padding: 12px 50px 12px 45px; /* kanan diperkecil supaya icon benar2 mentok */
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    outline: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.input-group input::placeholder {
    color: rgba(255,255,255,0.6);
}

.input-group input:focus {
    border-color: #00f2ff;
    box-shadow: 0 0 10px rgba(0,242,255,0.6);
}

/* ===== Toggle Icon (Mentok Kanan) ===== */
.toggle-password {
    position: absolute;
    top: 50%;
    right: 15px; /* ini yang bikin benar2 di ujung */
    transform: translateY(-50%);
    color: var(--dark);
    cursor: pointer;
    font-size: 18px;
}

/* ===== Remember ===== */
.remember {
    text-align: left;
    font-size: 13px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
}

.remember input {
    accent-color: #00f2ff;
}

/* ===== Button ===== */
.login-btn {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    background: linear-gradient(45deg, #00f2ff, #0066ff);
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
}

.login-btn:hover {
    box-shadow: 0 0 20px rgba(0,242,255,0.8);
    transform: scale(1.05);
}

/* ===== Close ===== */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
}

.close-btn:hover {
    color: #fff;
}


.captcha-box {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    backdrop-filter: blur(10px);
}

/* ================= SMART CITY MOBILE NAV ================= */

/* MOBILE NAV */

.mobile-nav{
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);

    width: 95%;
    max-width: 420px;
    height: 70px;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(25px);

    border-radius: 10px;

    display: none;
    justify-content: space-around;
    align-items: center;

    padding: 14px 10px;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.15),
        inset 0 1px 1px rgba(255,255,255,0.4);

    z-index: 9999;
}

/* ITEM */

.mobile-nav .nav-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;

    font-size: 11px;
    color: #444;

    transition: 0.3s;
}

.mobile-nav .nav-item i{
    font-size: 22px;
    margin-bottom: 3px;
}

/* ACTIVE */

.mobile-nav .nav-item.active{
    color: var(--primary);
}

/* HOVER */

.mobile-nav .nav-item:hover{
    transform: translateY(-4px);
    color: var(--primary);
}

/* CENTER BUTTON */

.mobile-nav .nav-center{
    position: relative;
    top: -30px;

    width: 64px;
    height: 64px;

    background: linear-gradient(135deg,var(--primary),#4facfe);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.35),
        0 0 0 6px rgba(255,255,255,0.4);

    transition: 0.3s;
}

/* ICON CENTER */

.mobile-nav .nav-center i{
    font-size: 28px;
}

/* HOVER CENTER */

.mobile-nav .nav-center:hover{
    transform: scale(1.08);
}

/* HIDE ACTIVE DOT */

.mobile-nav .nav-center.active::before{
    display:none;
}


@media(max-width:768px){

.mobile-nav{
    display:flex;
}

}




/* ============================= */
/* DARK MODE */
/* ============================= */

.theme-float{
    position: fixed;
    bottom: 180px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #4ea1ff, #0066ff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.4s ease;
}

.theme-float:hover{
    transform: scale(1.15) rotate(180deg);
    box-shadow: 0 0 25px rgba(78,161,255,0.8);
}

/* SLIDE PANEL*/
.service-card{
    position: relative;
    overflow: visible;
    padding-bottom:40px; /* ruang untuk tombol */
}

.arrow-btn{
     position:absolute;
    bottom:-20px;
    left:50%;
    transform:translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--dark);
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* PANEL */
.info-panel{
    position:absolute;
    left:0;
    bottom:43px;
    width:100%;
    background:var(--text);
    padding:15px;
    transform:translateY(100%);
    opacity:0;
    visibility:hidden;
    border-radius:10px;
    transition:0.4s;
}

/* isi panel */
.info-panel-sub{
    display:flex;
    align-items:flex-start;
    gap:15px;
}

/* gambar qr */
.qr-box img{
    width:80px;
    height:80px;
    border-radius:10px;
    padding:5px;
    border:2px solid var(--white);
    margin-top: 8px;
}

/* text kanan */
.info-text{
    flex:1;
    justify-content: flex-start;
    text-align: left;
    padding-left: 3px;
}

/* text */
.info-text p{
    color:var(--white);
    margin:5px 0;
}

/* tombol */


.nomor{
    display:flex;
    align-items:center;
    gap:8px;
}

.copy-icon{
    font-size:18px;
    color:var(--primary);
    cursor:pointer;
    transition:0.2s;
}

.copy-icon:hover{
    transform:scale(1.2);
    color:#fff;
}


.info-panel::after{
    content:"";
    position:absolute;
    bottom:-12px;
    left:50%;
    transform:translateX(-50%);
    border-width:12px 12px 0 12px;
    border-style:solid;
    border-color:var(--icon-bg) transparent transparent transparent;
}




/* BATAS DARI INFO PANEL CARD PENGURUS RT RW */

/* ketika aktif */
.service-card.active .info-panel{
    transform:translateY(0);
    opacity:1;
    visibility:visible;
}




/* Dark Mode Variables */
body.dark-mode{
    --primary: #4ea1ff;
    --dark: #ffffff;
    --text: #cfcfcf;
    --light: #1e1e1e;
    --white: #121212;
    --card: #1f1f1f;
    --icon-bg:#1a1a1a;
    background: #121212;
    color: #ffffff;
}

/* Smooth transition */
body, .navbar, .top-bar, .main-footer, .footer-bottom{
    transition: background 0.4s ease, color 0.4s ease;
}

body.dark-mode .tanggal-wrapper .masehi
{
    color: var(--white);
}

.tabel-dpt h2
{
    color: var(--dark);
}

body.dark-mode .top-bar{
    background:#111;
    color: #ffffff;
}


body.dark-mode .left h1
{
    color: var(--white);
}

body.dark-mode .circle .inner
{
    color: #111;
}

body.dark-mode info-panel
{
    background: var(--white);
    color: var(--dark);
}

body.dark-mode .arrow-btn
{
    background: var(--primary);
}

body.dark-mode .main-footer{
    background:#1a1a1a;
}

body.dark-mode .footer-bottom{
    background:#111;
}

body.dark-mode .service-card,
body.dark-mode .blog-card,
body.dark-mode .form-box,
body.dark-mode .statistik-container{
    background:#1f1f1f;
    box-shadow:0 0 0 1px #333;
}

body.dark.mode .form-box-jam
{
    background:#fff;
    
}

body.dark-mode .gender-box p
{
    color: #ffffff;
    
}

body.dark-mode .total
{
    border-top: 2px solid #ffffff;
}
/* TAMBAHAN DARK MODE*/

body.dark-mode .navbar{
    background: #1a1a1a;
}

body.dark-mode .top-bar span
{
    color: #ffffff;
}

body.dark-mode .nav-links a{
    color: #ffffff !important;
    
}

body.dark-mode .nav-links a:hover{
    color: var(--primary) !important;
}

body.dark-mode .logo span{
    color: #ffffff;
}

body.dark-mode .logo p{
    color: #cccccc;
}

body.dark-mode .overlay h1
{
    color: #ffffff;
}

/* Dropdown */
body.dark-mode .dropdown-content{
    background: #1f1f1f;
}

body.dark-mode .dropdown-content a{
    color: #ffffff;
}

body.dark-mode .dropdown-content a:hover{
    background: var(--primary);
}



/* UNTUK BERITA */

.grid-berita{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:20px;
}

.card-berita{
border:1px solid #ddd;
border-radius:10px;
padding:10px;
transition:0.3s;
background:white;
}

.card-berita:hover{
transform:translateY(-5px);
box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.card-berita img{
width:100%;
height:150px;
object-fit:cover;
border-radius:8px;
}

.card-berita h3{
font-size:16px;
margin:10px 0;
}

.card-berita a{
color:#007bff;
text-decoration:none;
font-weight:bold;
}












/* DESIGN MOBILE*/
/* Show only mobile */
@media(max-width:768px){

    .mobile-nav{
        display: flex;
    }

    .navbar{
        display: none;
    }

    .heading-right
    {
        display: none;
    }

    .login-box{
width:90%;
padding:30px;
}

.login-box img{
width:90px;
height:90px;
}

.login-box h2{
font-size:18px;
}

    body.modal-open{
        overflow:hidden;
    }
    
    .info-card
    {
        display: none;
    }

    .top-bar{
        display: none;
    }

    .waktu-sholat
    {
        display: block;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    body{
        padding-bottom: 90px;
    }
}