/* =====================================
   GLOBAL FIX
===================================== */
body {
  padding-top: 85px;
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden;
}
/* Default tampil semua */
.hide-mobile,
.hide-desktop {
  display: block;
}

/* Jika layar <= 768px (Mobile) */
@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

/* Jika layar > 768px (Desktop) */
@media (min-width: 769px) {
  .hide-desktop {
    display: none;
  }
}
/*==== CHAT WA CS */
.admin_chatwhatsapp{
    position: fixed;
    left: 20px;
    bottom: 50px;
    z-index: 999;
}

/* BUTTON */
.admin_chatwhatsapp-btn{
    display: flex;
    align-items: center;
    gap: 10px;
    background: #198754;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 60px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    animation: adminWhatsappBounce 2s infinite;
    transition: all 0.3s ease;
}

.admin_chatwhatsapp-btn:hover{
    background: #157347;
}

.admin_chatwhatsapp-btn i{
    font-size: 24px;
}

.admin_chatwhatsapp-text{
    font-weight: 600;
    font-size: 15px;
}

/* MENU */
.admin_chatwhatsapp-menu{
    position: absolute;
    left: 0;
    bottom: 75px;
    width: 300px;
    background: #ffffff;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all 0.3s ease;
}

/* HOVER OPEN */
.admin_chatwhatsapp:hover .admin_chatwhatsapp-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.admin_chatwhatsapp-header{
    font-size: 15px;
    font-weight: 700;
    color: #198754;
    padding: 12px 14px;
}

/* ITEM */
.admin_chatwhatsapp-item{
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
    color: #212529;

    border-radius: 14px;
    padding: 12px;
    margin-bottom: 6px;

    transition: all 0.25s ease;
}

.admin_chatwhatsapp-item:hover{
    background: #198754;
    color: #ffffff;
    transform: translateX(4px);
}

.admin_chatwhatsapp-icon{
    width: 44px;
    height: 44px;
    min-width: 44px;

    border-radius: 50%;
    background: #25D366;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    font-size: 22px;
}

.admin_chatwhatsapp-name{
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
}

.admin_chatwhatsapp-number{
    color: #6c757d;
    font-size: 12px;
}

.admin_chatwhatsapp-item:hover .admin_chatwhatsapp-number{
    color: rgba(255,255,255,0.8);
}

/* ANIMATION */
@keyframes adminWhatsappBounce{

    0%,20%,50%,80%,100%{
        transform: translateY(0);
    }

    40%{
        transform: translateY(-5px);
    }

    60%{
        transform: translateY(-3px);
    }

}

/* MOBILE */
@media (max-width: 576px){

    .admin_chatwhatsapp{
        left: 12px;
        bottom: 42px;
    }

    .admin_chatwhatsapp-menu{
        width: 260px;
    }

    .admin_chatwhatsapp-text{
        display: none;
    }

    .admin_chatwhatsapp-btn{
        width: 58px;
        height: 58px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }

}
/* ================= NAV CUSTOM ================= */
.navCustom{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  background: linear-gradient(218deg, #0059be, #5b8aa6, #4876b8, #005ec5);
    height: 80px;
    border-bottom: 3px solid #e1dd5d;
    box-shadow: 0px 11px 8px 3px #ffe0a7cc;
}

/* WRAP */
.navWrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 15px;
}

/* LOGO */
.navLogo img{
  height:50px;
}

/* TOGGLE */
.navToggle{
  font-size:24px;
  background:none;
  border:none;
  color:#fff;
  display:none;
}

/* MENU */
.navMenu{
  display:flex;
  gap:15px;
  align-items:center;
}

.navMenu a{
  color:#fff;
  text-decoration:none;
   position: relative;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.25s ease;
}
.navMenu a:hover {
  color:#ffd700;
 /* transform:scale(1.1); */
  transition:0.3s;
  background: rgba(255,255,255,0.08);
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}


.navMenu a::after{
  content:"";
  position:absolute;
  left:12px;
  bottom:6px;
  width:0%;
  height:2px;
  background: linear-gradient(90deg,#ffd700,#ffb300);
  transition:0.3s;
}

.navMenu a:hover::after{
  width:60%;
}
/* DROPDOWN */
.navDropdown{
  position:relative;
  color : #fff;
}

.navDropMenu{
  position:absolute;
  top:100%;
  left:0;
  background: linear-gradient(218deg, #0059be, #5b8aa6, #4876b8, #005ec5);
  min-width:180px;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-5px);
  transition: all 0.3s ease;
  padding: 0;
}

.navDropMenu a{
  display:block;
  color:#fff;
  padding: 10px 15px;
  border-radius: 8px;
  transition: 0.2s;
}
.navMenu a i{
  margin-right:8px;
  width:18px;
  text-align:center;
  transition: all 0.25s ease;
}

.navMenu a:hover i{
  color: #ffd700;
  transform: scale(1.15);
}

/* ===== DESKTOP FIX ===== */
@media (min-width: 992px){

  .navDropMenu{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: linear-gradient(218deg, #0059be, #5b8aa6, #4876b8, #005ec5);
    border-radius: 10px;
    padding : 2px 10px;

    /* RESET dari mobile */
    max-height: none;
    opacity: 1;
    transform: none;
    overflow: visible;
  }

  .navDropdown:hover .navDropMenu{
    display: block;
  }

}


/* default: sembunyikan */
.navClose{
  display:none;
}
.navDropToggle{
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}
.navMenu a,
.navDropToggle{
  display: flex;
  align-items: center;
  gap: 0px;
  padding: 12px 0px;
}

.navDropToggle .arrow{
  transition:0.3s;
}
.navDropToggle span{
  display:flex;
  align-items:center;
}

.navDropToggle span i{
  margin-right:8px;
  width:18px;
  text-align:center;
}
.navDropToggle{
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}
/*.navDropMenu a:hover{
  background: rgba(255,255,255,0.1);
} */
/* saat aktif */
.navDropToggle.active .arrow{
  transform:rotate(180deg);
}
/* ================= MOBILE ================= */
@media(max-width:991px){

  .navToggle{
    display:block;
  }

  .navMenu{
    position:fixed;
    top:0;
    right:-100%;
    width:80%;
    height:100%;
    background: linear-gradient(218deg, #0059be, #5b8aa6, #4876b8, #005ec5);
    border-left: 3px solid #bc9573;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    flex-direction:column;
    padding:20px;
    transition:0.3s;
    overflow-y:auto;
  }

  .navMenu.active{
    right:0;
  }

  .navMenu a{
    color:#fff;
    width:100%;
    padding:10px 0;
  }
  
  .navMenu a:hover{
    background: rgba(0,0,0,0.05);
    transform: none; /* biar ga goyang */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .navMenu a:hover i{
    transform: scale(1.1);
  }

  .navClose{
   align-self: flex-end;
    font-size: 28px;
    border: 1px solid #d6d6d6;
    background: #fc0000;
    display: block;
    border-radius: 50%;
    color: #fffefe;
  }

  /* dropdown mobile */
  /* DROPDOWN */
.navDropdown{
  position:relative;
  color : #fff;
  margin-left: -100px !important;
  padding-left: 0;
}
  .navDropMenu{
    position:static;
    display:block;
  }

  .navDropMenu.show{
    display:block;
    margin-left: 25px;
    border-radius: 10px;
    padding: 5px 10px;
    background:rgba(0,0,0,0.3);
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
  }

  /* overlay */
  .navOverlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.3);
    display:none;
  }

  .navOverlay.active{
    display:block;
  }

}

.navDropToggle .arrow{
  transition: 0.3s;
}

.navDropToggle.active .arrow{
  transform: rotate(180deg);
}

/* =====================================
   NAVBAR Home PRT (SCROLL MENU)
===================================== */
.homePrt-navbar-wrapper {
  overflow-x: auto;
  padding-bottom: 5px;
}

.homePrt-navbar {
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 14px;
  background: linear-gradient(125deg, #a67200, #304b96, #045c59, #ff7700);
  border-bottom: 3px solid #fff8d0;
  box-shadow: 1px 6px 21px 2px #fff6e9;
  width: max-content;
  margin: auto;
}

.homePrt-navbar li {
  list-style: none;
}

.homePrt-navbar li a {
  display: flex;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  color: #fff;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  transition: 0.3s;
}

.homePrt-navbar li a:hover {
  background: linear-gradient(135deg,#ffd700,#ffb300);
  color: #000 !important;
}

/* FIX BOOTSTRAP NAV-LINK */
.homePrt-navbar li a.nav-link {
  display: flex;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  color: #fff;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  transition: 0.3s;
  text-decoration: none;
}

/* HOVER */
.homePrt-navbar li a.nav-link:hover {
  background: linear-gradient(135deg,#ffd700,#ffb300);
  color: #000 !important;
}

/* ACTIVE (INI YANG PALING PENTING) */
.homePrt-navbar li a.nav-link.active {
  background: linear-gradient(135deg,#ffd700,#ff9800);
  color: #000 !important;
  font-weight: bold;
}

/* MOBILE */
@media (max-width:576px){
  .homePrt-navbar {
    width: max-content;
    margin: 0;
  }
  .homePrt-navbar li a {
    font-size: 12px;
    padding: 6px 10px;
  }
}
/*=========== Moble nvabar home prt ================ */
/* WRAPPER MOBILE */
.navbarPrtKeren-mobile{
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg,#0d47a1,#1976d2,#42a5f5);
  padding: 10px 12px;
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* TEXT AKTIF */
.navbarPrtKeren-active{
  color: black;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #def2ff;
  border-radius: 7px;
  padding: 2px;
  
  /* ðŸ”¥ anti melebar */
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* BUTTON DROPDOWN */
.navbarPrtKeren-btn{
  background: #fff;
  color: #0d47a1;
  border-radius: 8px;
  font-size: 12px;
  border: none;
  padding: 5px 10px;
}

/* DROPDOWN MENU */
.navbarPrtKeren-dropdown{
  border-radius: 10px;
  overflow: hidden;
  font-size: 13px;
}

/* ITEM HOVER */
.navbarPrtKeren-dropdown .dropdown-item:hover{
  background: #1976d2;
  color: #fff;
}


/* =====================================
   BANNER BACKGROUND MODE FINAL
===================================== */

.home-banner {
  margin-top: 7px;
}

/* WRAPPER */
.banner-wrapper {
  position: relative;
  height: 550px;
  overflow: hidden;
  border-radius: 8px;

  opacity: 0;
  transform: translateX(100px);
  animation: bannerSlideIn 1.2s ease forwards;
}

/* BACKGROUND IMAGE */
.banner-bg {
  position: absolute;
      opacity: 1;
    visibility: inherit;
    z-index: 20;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  /* efek zoom halus */
  transition: transform 6s ease;
}

/* ZOOM EFFECT */
.carousel-item.active .banner-bg {
  transform: scale(1.05);
}

/* OVERLAY */
.overlay-light {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

/* CAPTION */
.custom-caption {
  bottom: 18%;
  left: 6%;
  z-index: 2;
}

.caption-box {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  padding: 25px;
  color: #fff;
  max-width: 520px;
  font-size: 18px;

  border-left: 4px solid #ffd700;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);

  opacity: 0;
  transform: translateX(80px);
  animation: textSlideIn 1.5s ease forwards;
  animation-delay: 0.5s;
}

/* CONTROL */
.custom-control {
  width: 55px;
  height: 55px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev { left: 15px; top: 50% !important; }
.carousel-control-next { right: 15px; top: 50% !important; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

/* INDICATOR */
.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #ffd700;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px){
  .banner-wrapper {
    height: 220px;
  }

  .custom-caption {
    bottom: 10%;
    left: 5%;
  }

  .caption-box {
    font-size: 13px;
    padding: 12px;
    max-width: 90%;
  }

  .custom-control {
    width: 40px;
    height: 40px;
  }
}

/* =========================
   ANIMATION
========================= */
@keyframes bannerSlideIn {
  from { opacity:0; transform:translateX(120px); }
  to { opacity:1; transform:translateX(0); }
}

@keyframes textSlideIn {
  to { opacity:1; transform:translateX(0); }
}
/* =====================================
   CARD PRT
===================================== */
/* CARD */
.card-prt {
  border-radius: 10px;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.card-prt:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* LINK FULL CARD */
.link-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* WRAPPER */
.zoom-effect {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}

/* IMAGE NORMAL */
.img-prt {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;

  transform: scale(1);
  transition: transform 0.6s ease, filter 0.4s ease;
}

/* 🔥 ZOOM LEBIH BESAR */
.zoom-effect:hover img {
  transform: scale(1.25); /* sebelumnya 1.1 → sekarang lebih zoom */
  filter: brightness(1.08) contrast(1.05);
}


.zoom-effect::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  opacity: 0;
  transition: 0.4s;
}

.zoom-effect:hover::after {
  opacity: 1;
}
/* CONTENT HEIGHT FIX */
.prt-content {
  min-height: 310px;
}

/* DESKRIPSI */
.desc {
  font-size: 13px;
  color: #555;
  margin-top: 5px;
}

/* GAJI */
.gaji {
  font-weight: bold;
  color: #28a745;
  font-size: 15px;
}

/* RATING */
.rating i {
  color: orange;
  font-size: 13px;
}

/* BOTTOM INFO */
.info-bottom {
 /* background: #f1f1f1; */
  padding:3px 7px;
  border-radius: 5px;
  font-size: 14px;
  justify-content: center; 
  align-items: center;
  font-weight: bold;
}

/* HOVER BIAR KELIHATAN INTERAKTIF */
.card-prt:hover .gaji {
  color: #007bff;
}
.items {
  background:#f6f8f9;
  border-radius:6px;
  transition:0.3s;
  box-shadow: 6px 8px 16px #090f15;
}

.items:hover {
  transform:translateY(-5px);
  box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

/* =====================================
   FOOTER
===================================== */
.footer_webyayasan {
  background: linear-gradient(218deg, #0059be, #5b8aa6, #4876b8, #005ec5);
  color: #0b2c4d;
  position: relative;
}

.footer_webyayasan::before {
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,0.15);
}

.footer_webyayasan .container-fluid {
  position: relative;
  z-index: 2;
}

.footer_webyayasan .footer-widget-news {
  background: rgb(218 230 237);
  padding: 18px;
  border-radius: 12px;
}

.footer_webyayasan a:hover {
  color: #d09c33 !important;
}

/* =====================================
   BUTTON PWA
===================================== */
.install-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, #0a1f44, #ff6ec7);
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  display: none;
  z-index: 1050;
}

/* =====================================
   FIX DROPDOWN MOBILE FORCE OVERRIDE
===================================== */
@media (max-width: 991px){

  .navUtama .dropdown-menu{
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: static !important;
    transform: none !important;
  }

  .navUtama .dropdown-menu.show{
    display: block !important;
  }

  /* matikan hover desktop style */
  .navUtama .dropdown:hover .dropdown-menu{
    display: none !important;
  }

}

/*==== Home Aboutme=================== */
/* ================= HOME ABOUTME ================= */
.homeAboutme {
    padding: 60px 15px;
    background: linear-gradient(358deg, #f1d999, #31affa, #bee8ff, #7cb1cb);
    overflow: hidden;
}

.homeAboutme .about-container {
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* IMAGE */
.homeAboutme .about-img {
    flex: 1 1 45%;
    overflow: hidden;
    border-radius: 20px;
}

.homeAboutme .about-img img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

/* HOVER ZOOM */
.homeAboutme .about-img:hover img {
    transform: scale(1.08);
}

/* CONTENT */
.homeAboutme .about-content {
    flex: 1 1 50%;
}

.homeAboutme h2 {
    font-size: 32px;
    font-weight: bold;
    color: #0a1f44;
    margin-bottom: 15px;
}

.homeAboutme h4 {
    margin-top: 20px;
    color: #005ec5;
}

.homeAboutme p {
    color: #555;
    line-height: 1.7;
}

/* SOCIAL */
.homeAboutme .about-social {
    margin-top: 20px;
}

.homeAboutme .about-social a {
    display: inline-block;
    margin-right: 10px;
    padding: 8px 14px;
    border-radius: 20px;
    background: #005ec5;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    margin-top: 5px;
    margin-bottom: 5px;
}

.homeAboutme .about-social a:hover {
    background: #003f8a;
}

/* BUTTON */
.homeAboutme .about-btn a {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #000;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.homeAboutme .about-btn a:hover {
    transform: translateY(-3px);
}
/* ZOOM OUT EFFECT */
.homeAboutme .zoom-scroll {
    transform: scale(1.2);
    opacity: 0;
    transition: all 0.8s ease;
}

.homeAboutme .zoom-show {
    transform: scale(1);
    opacity: 1;
    padding: 15px;
    border: 1px solid #e0bb9a;
    background: #ffffff;
    border-radius: 10px;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .homeAboutme .about-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ======================= Home Galeri foto =================== */
/* SECTION */
.home_galeri {
 background: linear-gradient(358deg, #f1d999, #31affa, #bee8ff, #7cb1cb);
}

/* GRID UTAMA */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop */
  gap: 12px;
}

/* ITEM / CARD */
.galeri-album {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 4px 6px 4px 2px #f3de76
}

/* IMAGE */
.galeri-album img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  /* efek lebih hidup */
  filter: brightness(1.08) contrast(1.1) saturate(1.05);

  /* zoom default */
  transform: scale(1.05);

  transition: all 0.5s ease;
}

/* HOVER IMAGE */
.galeri-album:hover img {
  transform: scale(1.15);
  filter: brightness(1.15) contrast(1.15) saturate(1.1);
}

/* OVERLAY */
.galeri-album .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent);
  opacity: 0;
  transition: 0.4s ease;
}

.galeri-album:hover .overlay {
  opacity: 1; /* FIX (sebelumnya 3 ❌) */
}

/* BADGE TANGGAL */
.badge-tanggal {
  position: absolute;
  top: 8px;
  right: 8px;

  background: rgba(0,0,0,0.6);
  color: #fff;

  font-size: 11px;
  padding: 4px 8px;

  border-radius: 6px;
  backdrop-filter: blur(6px);
}

/* modal home prt */
.posisi-prev,
.posisi-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.posisi-prev {
  left: 10px;
}

.posisi-next {
  right: 10px;
}
/* tombol close */
.close-galeri {
  position: absolute;
  top: 15px;
  right: 15px;

  width: 40px;
  height: 40px;

  border-radius: 50%;
  border: none;

  background: rgb(247 0 34 / 75%);
  color: #fff;

  font-size: 22px;
  line-height: 1;

  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: 0.3s;
}

/* hover efek */
.close-galeri:hover {
  background: linear-gradient(135deg, #0ea5e9, #ec4899);
  transform: scale(1.1);
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

/* TABLET */
@media (max-width: 992px) {
  .galeri-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .galeri-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galeri-album {
    height: 120px;
  }
}

/* view Prt */
.viewPekerja {
    margin-top: 0px;
    background: linear-gradient(358deg, #f1d999, #31affa, #bee8ff, #7cb1cb);
    padding: 15px 10px;
}

.viewPekerja .vp-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.viewPekerja .bingkai_header{
	width: 100%;
	float: left;
	border-radius: 7px 7px 0px 0px;
	background-color: #00afd1; 
	padding: 10px 7px;
	color: #FFFFFF;
}

.viewPekerja .vp-img {
    width: 100%;
    border-radius: 10px;
    transition: .3s;
}
.viewPekerja .vp-img:hover {
    transform: scale(1.05);
}

.viewPekerja .vp-btn {
    width: 100%;
}
/* SIDEBAR */
/* SIDEBAR */
.viewPekerja .vp-sidebar {
    position: sticky;
    top: 100px;
}

/* title */
.viewPekerja .vp-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* item list */
.viewPekerja .vp-item-list {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
    background: #cfd9e5;
    box-shadow: 3px 5px 5px 5px #302d22;

}

.viewPekerja .vp-item-list:hover {
    background: #f5f5f5;
}

.viewPekerja .vp-item-list img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
}

.viewPekerja .vp-gaji {
    font-size: 12px;
    color: green;
    font-weight: bold;
}
@media(min-width:768px){
    .viewPekerja .vp-btn {
        width: auto;
    }
}

.viewPekerja .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
}

.viewPekerja .prov-header {
    background: #eef3ff;
    padding: 2px;
    font-weight: 300;
    border-radius: 5px;
}

.viewPekerja .prov-body {
    font-size: 12px;
    padding: 5px;
}
/* List Bahasa + Keterampilan */
/* List Bahasa + Keterampilan */
.list-bahasa {
    margin: 5px 0 0 0;
    padding-left: 18px;
}

.list-bahasa li {
    font-size: 16px;
    margin-bottom: 4px;
    position: relative;
    list-style: none;
    padding-left: 14px;
}

/* Icon list FontAwesome 5 */
.list-bahasa li::before {
    content: "\f111"; /* lingkaran kecil solid */
    font-family: "Font Awesome 5 Free";
    font-weight: 600; /* solid */
    font-size: 6px;
    position: absolute;
    left: 0;
    top: 0px;
    color: #555;
}
/* WRAPPER */
.viewPekerjaMobile {
    margin-top: 10px;
    background: linear-gradient(358deg, #f1d999, #31affa, #bee8ff, #7cb1cb);
    padding: 10px 0px;
}

/* CARD */
.vp-mobile-card {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
/* HEADER FLEX */
.vp-header-flex{
    display:flex;
    gap:12px;
    align-items:center;
}

/* FOTO */
/* container foto */
.vp-photo{
    width:110px;
    height:130px;
    flex-shrink:0;
}

/* wrapper penting (biar zoom tidak keluar) */
.vp-photo-inner{
    width:100%;
    height:100%;
    overflow:hidden;
    border-radius:12px;
}

/* image */
.vp-img-zoom{
    width:100%;
    height:100%;
    object-fit:cover;

    transition: transform 0.5s ease, filter 0.5s ease;
}

/* hover zoom (desktop) */
.vp-photo-inner:hover .vp-img-zoom{
    transform: scale(1.1);
    filter: brightness(1.05);
}

/* efek hidup (mobile + idle) */
.vp-img-zoom{
    animation: zoomSlow 6s ease-in-out infinite alternate;
}

@keyframes zoomSlow{
    0%{ transform: scale(1); }
    100%{ transform: scale(1.05); }
}

.vp-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:10px;
}

/* INFO */
.vp-info h5{
    font-size:16px;
    font-weight:700;
    margin-bottom:4px;
}

.vp-profesi{
    font-size:13px;
    color:#00afd1;
    font-weight:600;
}

/* META */
.vp-meta{
    margin-top:6px;
    font-size:12px;
    color:#555;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4px;
}

/* LIST */
.vp-list{
    padding-left:15px;
    font-size:13px;
}

.vp-list li{
    margin-bottom:6px;
}

/* BADGE */
.vp-badge-list{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
}

.vp-badge-list span{
    background:#f1f3f6;
    padding:5px 10px;
    border-radius:20px;
    font-size:12px;
}

/* BUTTON */
.vp-mobile-card .btn{
    border-radius:8px;
    font-size:14px;
}
/* IMAGE */
.vp-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.vp-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* OVERLAY */
.vp-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

/* INFO GRID */
.vp-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    text-align: center;
    font-size: 13px;
}

/* LIST */
.vp-list {
    padding-left: 15px;
}
.vp-list li {
    margin-bottom: 5px;
}

/* BADGE */
.vp-badge-list span {
    display: inline-block;
    background: #eef3ff;
    padding: 5px 8px;
    margin: 3px;
    border-radius: 6px;
    font-size: 12px;
}

/* modal bottom style */
.vp-modal .modal-dialog-bottom {
    position: fixed;
    bottom: 0;
    margin: 0;
    width: 100%;
}

.vp-modal .modal-content {
    border-radius: 15px 15px 0 0;
}

/* card wa */
.vp-wa-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.vp-wa-card:hover {
    background: #e9f7ef;
}

.vp-wa-icon {
    font-size: 20px;
    color: #25d366;
}

.vp-wa-info {
    flex: 1;
    margin-left: 10px;
}

.vp-wa-btn {
    background: #25d366;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
}

.floating-sub-btns {
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}

.floating-sub-btns.active {
    opacity: 1;
    transform: translateY(0);
}

/* grid */
.vp-kandidat-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}

/* card */
.vp-kandidat-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.vp-kandidat-card:hover {
    transform: translateY(-5px);
}

/* image */
.vp-img-wrap {
    position: relative;
}

.vp-img-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* overlay */
.vp-profesi {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 5px;
}

.vp-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff5722;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 5px;
}

/* body */
.vp-body {
    padding: 8px;
}

.vp-body h6 {
    font-size: 13px;
    margin: 0;
}

/* gaji */
.vp-gaji {
    font-size: 12px;
    color: green;
    font-weight: bold;
}

/* footer */
.vp-footer {
    font-size: 11px;
    padding: 5px;
    color: white;
    text-align: center;
    background: #051c50;
}
/* Judul Section */
.section-title {
    text-align:center;
    font-size: 15px;
    font-weight: 600;
    margin: 10px 0 6px 0;
}

.hr.section-line {
    margin: 3px 0;
    border-top: 1px solid #ccc;
}
.vp-rating{
    margin-top:4px;
    color:#ffc107;
    font-size:14px;
}

.vp-rating i{
    margin-right:2px;
}

.vp-rating-text{
    font-size:12px;
    color:#666;
    margin-left:4px;
}

/* tombol Sticky Pesan */
.vp-sticky-bar{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#fff;
    padding:10px;
    display:flex;
    gap:10px;
    box-shadow:0 -2px 10px rgba(0,0,0,0.1);
    z-index:9999;
}


/* tombol kiri */
.vp-btn-chat{
    flex:1;
    background:#25d366;
    color:#fff;
    text-align:center;
    padding:10px;
    border-radius:8px;
    font-size:14px;
    text-decoration:none;
}

/* tombol kanan (utama) */
.vp-btn-order{
    flex:2;
    background:linear-gradient(135deg,#ff7a00,#ff3d00);
    color:#fff;
    text-align:center;
    padding:10px;
    border-radius:8px;
    font-weight:700;
    font-size:14px;
    text-decoration:none;
}

/* biar konten tidak ketutup */
body{
    padding-bottom:70px;
}

/*About US */
.viewTentangKami{
    font-family:'Open Sans', sans-serif;
}

/* HERO */
.tk-hero{
    background: linear-gradient(135deg,#7bb2f8,#ffeca7);
    color:#1a2d62;
    text-align:center;
    padding:40px 20px;
}

.tk-hero h1{
    font-size:32px;
    font-weight:700;
}
.tk-hero p{
    color:#1a2d62;
}

/* SECTION */
.tk-section{
    padding:50px 15px;
    background: linear-gradient(135deg,#7bb2f8,#ffeca7);
}

.tk-container{
    max-width:1100px;
    margin:auto;
}

/* GRID */
.tk-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:center;
}

.tk-grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    background: whitesmoke;
}

/* IMG */
.tk-img img{
    width:100%;
    border-radius:12px;
    transition:0.5s;
}

.tk-img img:hover{
    transform:scale(1.05);
}

/* CONTENT */
.tk-content{
    background: whitesmoke;
    padding: 10px 10px;
    box-shadow: 8px 6px 8px 2px #281d05;
    border-radius: 10px;
}
.tk-content h2{
    margin-bottom:10px;
}

/* CARD */
.tk-card{
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow: 8px 6px 8px 2px #281d05;
}

/* TITLE */
.tk-title{
    text-align:center;
    margin-bottom:30px;
}

/* MAP */
.tk-map iframe{
    width:100%;
    height:350px;
    border-radius:10px;
}

/* FORM */
.tk-form{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.tk-form input,
.tk-form textarea{
    padding:10px;
    border-radius:8px;
    border:1px solid #ddd;
}

.tk-form button{
    background:#00afd1;
    color:#fff;
    padding:12px;
    border:none;
    border-radius:8px;
    font-weight:600;
}

/* BG */
.bg-light{
    background:#f8f9fa;
}

/* RESPONSIVE */
@media(max-width:768px){
    .tk-grid,
    .tk-grid-2{
        grid-template-columns:1fr;
    }

    .tk-hero h1{
        font-size:24px;
    }
}

/* =========================
   DROPDOWN WHATSAPP CS
========================= */

.vp-wa-dropdown{
    position: relative;
    display: inline-block;
}

.vp-wa-menu{
    position: absolute;
    bottom: 110%;
    left: 0;
    min-width: 230px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;
    z-index: 999;
}

.vp-wa-dropdown:hover .vp-wa-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vp-wa-menu a{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: .2s;
}

.vp-wa-menu a:hover{
    background: #f5f5f5;
    color: #000;
}

/*======= Lowongan kerja : halaman lowongan kerja ======== */


.admin_loker_page{
    padding:10px 0;
    background: linear-gradient(358deg, rgb(241, 217, 153), rgb(49, 175, 250), rgb(190, 232, 255), rgb(124, 177, 203));
}

.admin_loker_title{
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
}

.admin_loker_desc{
    color:#666;
    margin-bottom:40px;
}

.admin_loker_card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
    border:1px solid #eee;
}

.admin_loker_card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.admin_loker_image{
    width:100%;
    height:220px;
    object-fit:cover;
}

.admin_loker_body{
    padding:20px;
}

.admin_loker_profesi{
    display:inline-block;
    background:#f1f5ff;
    color:#0d6efd;
    padding:6px 12px;
    border-radius:45%;
    font-size:13px;
    margin-bottom:15px;
    font-weight:800;
    border: 1px solid #767575;
    box-shadow: 0px 0px 3px 2px #90908f;
}

.admin_loker_judul{
    font-size:20px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:12px;
    min-height:58px;
}

.admin_loker_judul a{
    color:#222;
    text-decoration:none;
}

.admin_loker_judul a:hover{
    color:#0d6efd;
}

.admin_loker_text{
    color:#666;
    font-size:14px;
    line-height:1.7;
    margin-bottom:18px;
    min-height:72px;
}

.admin_loker_footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}

.admin_loker_date{
    font-size:13px;
    color:#888;
}

.admin_loker_btn{
    background:#0d6efd;
    color:#fff;
    padding:10px 16px;
    border-radius:10px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
}

.admin_loker_btn:hover{
    background:#0b5ed7;
    color:#fff;
}

.admin_loker_pagination .page-link{
    border-radius:10px;
    margin:0 4px;
    border:none;
    background:#f1f1f1;
    color:#333;
}

.admin_loker_pagination .active .page-link{
    background:#0d6efd;
    color:#fff;
}

/*=========== home loker ============== */
.home_lowongankerja{
    background: linear-gradient(358deg, rgb(241, 217, 153), rgb(49, 175, 250), rgb(190, 232, 255), rgb(124, 177, 203));
}

.home_loker_card{
    transition:.3s;
    border-radius:20px;
    overflow:hidden;
    box-shadow:7px 7px 5px #0b2d46
}

.home_loker_card:hover{
    transform:translateY(-5px);
}

.home_loker_image{
    width:100%;
    height:250px;
    object-fit:cover;
    object-position:center top;
}

.home_loker_title{
    min-height:60px;
    font-size:18px;
    font-weight:700;
    line-height:1.5;
}
.form-lamaran{
        background: linear-gradient(218deg, #0059be, #5b8aa6, #4876b8, #005ec5);
}
.form-lamaran-card{
    border-radius:20px;
    overflow:hidden;
}

.form-lamaran-header{
   background: linear-gradient(135deg, #f9f9f9, #ffffff);
    color:#fff;
    padding:25px;
}

.form-lamaran-card .form-control,
.form-lamaran-card .form-select{
    border-radius:12px;
}

.form-lamaran-card .btn-success{
    border-radius:50px;
    font-weight:600;
}

.form-lamaran-card .alert{
    border-radius:15px;
}
/*detail loker */
.detail_lowongankerja{
    margin-top:20px;
    margin-bottom:50px;
    background: linear-gradient(358deg, rgb(241, 217, 153), rgb(49, 175, 250), rgb(190, 232, 255), rgb(124, 177, 203));
}

.detail_loker_card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.detail_loker_image{
    width:100%;
    height:420px;
    object-fit:cover;
    object-position:center top;
}

.detail_loker_body{
    padding:30px;
}

.detail_loker_profesi_info{
    display:inline-block;
    background:#033c76;
    color: white;
    padding:6px 14px;
    border-radius:30px;
    margin-bottom:15px;
    font-size:13px;
}

.detail_loker_title{
    font-size:34px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:10px;
}

.detail_loker_date{
    color:#6c757d;
    margin-bottom:25px;
}

.detail_loker_content{
    line-height:1.9;
    font-size:16px;
}

.detail_loker_content h2,
.detail_loker_content h3{
    margin-top:25px;
}

.detail_loker_action{
    margin-top:35px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.detail_sidebar{
    background:#fff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    position:sticky;
    top:20px;
}

.detail_sidebar_title{
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.detail_sidebar_item{
    display:flex;
    gap:12px;
    margin-bottom:15px;
    text-decoration:none;
    color:#222;
    transition:.3s;
}

.detail_sidebar_item:hover{
    transform:translateX(5px);
}

.detail_sidebar_image{
    width:90px;
    height:70px;
    object-fit:cover;
    object-position:center top;
    border-radius:10px;
    flex-shrink:0;
}

.detail_sidebar_text{
    font-size:14px;
    font-weight:600;
    line-height:1.5;
}

@media(max-width:991px){

    .detail_sidebar{
        margin-top:25px;
        position:relative;
        top:auto;
    }

    .detail_loker_image{
        height:280px;
    }

    .detail_loker_title{
        font-size:26px;
    }

}

/* Home Artikel */
.Home_artikel{
    padding:60px 0;
    background: linear-gradient(358deg, #fbf3df, #c6e2f3, #bee8ff, #dddddd);
}

.Home_artikel .section-title{
    text-align:center;
    margin-bottom:40px;
}

.Home_artikel .section-title h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
}

.Home_artikel .section-title p{
    color:#777;
}

.Home_artikel .artikel-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.Home_artikel .artikel-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.Home_artikel .artikel-card:hover{
    transform:translateY(-5px);
}

.Home_artikel .artikel-img{
    display:block;
    overflow:hidden;
    height:240px;
}

.Home_artikel .artikel-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:all .5s ease;
}

/* Zoom Hover */
.Home_artikel .artikel-card:hover .artikel-img img{
    transform:scale(1.15);
}

.Home_artikel .artikel-content{
    padding:20px;
}

.Home_artikel .artikel-kategori{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:4px 10px;
    border-radius:20px;
    font-size:12px;
    margin-bottom:10px;
}

.Home_artikel .artikel-content h3{
    margin:0 0 15px;
    line-height:1.0;
}

.Home_artikel .artikel-content h3 a{
    color:#222;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
}

.Home_artikel .artikel-content h3 a:hover{
    color:#0d6efd;
}

.Home_artikel .artikel-meta{
    display:flex;
    justify-content:space-between;
    font-size:13px;
    color:#666;
    margin-bottom:10px;
}

.Home_artikel .artikel-date{
    font-size:13px;
    color:#999;
}

/* Tablet */
@media(max-width:992px){
    .Home_artikel .artikel-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:576px){
    .Home_artikel .artikel-grid{
        grid-template-columns:1fr;
    }

    .Home_artikel .artikel-img{
        height:220px;
    }
}

.Home_artikel .artikel-more{
    text-align:center;
    margin-top:40px;
}

.Home_artikel .btn-artikel{
    display:inline-block;
    padding:12px 30px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.Home_artikel .btn-artikel:hover{
    background:#0b5ed7;
    transform:translateY(-3px);
    color:#fff;
}

/* page artikel detail */

.artikel-detail-wrapper{
    max-width:1400px;
    margin:auto;
    padding:10px 15px;
    display:grid;
    grid-template-columns:2fr 380px;
    gap:40px;
    background: linear-gradient(358deg, #fbf3df, #c6e2f3, #bee8ff, #dddddd);
}

.artikel-konten{
    background:#fff;
    padding: 10px 20px;
}

.artikel-header h1{
    font-size:38px;
    line-height:1.4;
    margin:15px 0;
}

.kategori{
    background:#0d6efd;
    color:#fff;
    padding:6px 15px;
    border-radius:30px;
    font-size:13px;
}

.meta{
    display:flex;
    gap:20px;
    color:#777;
    margin-bottom:25px;
}

.featured-image{
    overflow:hidden;
    border-radius:15px;
    margin-bottom:30px;
}

.featured-image img{
    width:100%;
    display:block;
}

.artikel-isi{
    font-size:17px;
    line-height:1.9;
}

.artikel-isi img{
    max-width:100%;
    height:auto;
}

.sidebar-artikel{
    position:sticky;
    top:20px;
    height:max-content;
}

.sidebar-artikel h3{
    margin-bottom:20px;
}

.artikel-side-item{
    display:flex;
    gap:15px;
    margin-bottom:15px;
    text-decoration:none;
    color:#333;
    padding-bottom:15px;
    border-bottom:1px solid #eee;
}

.artikel-side-item img{
    width:100px;
    height:70px;
    object-fit:cover;
    border-radius:10px;
    transition:.4s;
}

.artikel-side-item:hover img{
    transform:scale(1.08);
}

.artikel-side-item h4{
    font-size:14px;
    margin:0 0 5px;
    line-height:1.5;
}

.artikel-side-item small{
    color:#999;
}

@media(max-width:991px){

    .artikel-detail-wrapper{
        grid-template-columns:1fr;
    }

    .sidebar-artikel{
        position:relative;
        top:auto;
    }

    .artikel-header h1{
        font-size:28px;
    }

}

/* page blog artikel )*/
.page_blogartikel{
    margin:auto;
    padding:15px 15px;
   background: linear-gradient(218deg, #9cafdb, #e3dea5, #adc0db, #a4c5e9);
}

.blog-header{
    text-align:center;
    margin-bottom:40px;
}

.blog-header h1{
    font-size:38px;
    font-weight:700;
    margin-bottom:10px;
}

.blog-header p{
    color:#777;
    font-size:16px;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
    gap:30px;
}

.blog-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.4s;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.blog-image{
    position:relative;
    display:block;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:all .5s ease;
}

.blog-card:hover .blog-image img{
    transform:scale(1.12);
}

.blog-category{
    position:absolute;
    top:15px;
    left:15px;
    background:#0d6efd;
    color:#fff;
    padding:6px 12px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.blog-content{
    padding:25px;
}

.blog-content h2{
    font-size:22px;
    line-height:1.4;
    margin-bottom:15px;
}

.blog-content h2 a{
    color:#222;
    text-decoration:none;
}

.blog-content h2 a:hover{
    color:#0d6efd;
}

.blog-meta{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    color:#777;
    font-size:14px;
}

.pagination-blog{
    margin-top:50px;
    display:flex;
    justify-content:center;
    gap:8px;
    flex-wrap:wrap;
}

.pagination-blog a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#f3f3f3;
    text-decoration:none;
    color:#333;
    transition:.3s;
}

.pagination-blog a:hover{
    background:#0d6efd;
    color:#fff;
}

.pagination-blog a.active{
    background:#0d6efd;
    color:#fff;
}

@media(max-width:768px){

    .blog-header h1{
        font-size:28px;
    }

    .blog-content h2{
        font-size:18px;
    }

    .blog-image img{
        height:220px;
    }

}