body {
    font-family: 'Poppins', sans-serif !important;
    background-color: #FFF;
    color: #013757;
}

a{
  text-decoration: none;
}

footer{
  border-radius: 0px 0px 0px 0px;
}
footer .footer-header{
  background: linear-gradient(to right, #238ddb, #165180, #327eb1);
  padding: 40px 30px 40px 30px;
  border-radius: 20px;
  width: 80%;
  margin-top: -123px;
  margin-left: auto;
  margin-right: auto;
}

footer .footer-header img{
  filter: brightness(0) invert(1);
  width: 200px;
  margin-right: 20px;
}

footer ul{
  list-style: none;
  padding-left: 0;
}
footer h6{
  font-weight: 600;
  color: #FFF;
  margin-bottom: 30px;
}
footer ul li{
  margin-bottom: 7px;
}
footer ul li a{
  text-decoration: none;
  color: #FFF;
  font-size: 0.9rem;
}
footer .list-icon{
  display: flex;
}
footer .list-icon li{
  margin-right: 10px;
}
footer .list-icon li a{
  font-size: 1.5rem;
}
ul{
  list-style: none;
  padding-left: 0;
}

ul li a{
  text-decoration: none;
  font-size: 0.9rem;
}

#main-content{
  margin-top: 0px;
}

.blank-image{
  filter: grayscale(1) !important;
  scale: 1 !important;
  width: 100%;
  opacity: 0.4;
}
.list-icon{
  display: flex;
}
.list-icon li{
  margin-right: 10px;
}
.list-icon li a{
  font-size: 1.5rem;
}

.about-us img{
  width: 100%;
  border-radius: 20px;
}

.icon-lg-rounded {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 45px;
}

.icon-lg-rounded:hover{
    transform: translateY(-15px) scale(1.02);
}
.programs-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.program-card {
    border: none;
    height: 200px;
    width: 250px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px !important;
    opacity: 1;
}

.program-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    opacity: 1;
    filter: contrast(1);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
    transition: all 0.3s ease;
}

.program-card:hover::before {
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.05) 100%);
}

.program-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    color: white;
    min-height: 230px;
}

.program-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.3;
}

.program-code {
    font-size: 6rem;
    font-weight: 900;
    opacity: 0.1;
    position: absolute;
    bottom: -2px;
    right: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.swiper {
    width: 100%;
    padding-bottom: 2rem;
}

.swiper-slide {
    height: auto;
    display: flex;
}

/* ========================================
   Blog Box Card
   ======================================== */
.blog-box {
    background: #ffffff;
    border: 1px solid #16518038;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(22, 81, 128, 0.08);
}

.blog-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(22, 81, 128, 0.15);
    border-color: rgba(22, 81, 128, 0.2);
}

/* ========================================
   Blog Image
   ======================================== */
.blog-box img {
    border-radius: 10px 10px 0 0;
    height: 271px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.blog-box:hover img {
    transform: scale(1.02);
}

.blank-image {
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

/* ========================================
   Blog Description
   ======================================== */
.blog-box .blog-description {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* ========================================
   Category Labels
   ======================================== */
.blog-box .blog-description .label {
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.blog-box .blog-description .label .label-list {
    background: #ffb339;
    padding: 2px 10px;
    border-radius: 5px;
    font-size: 10pt;
    color: #165181;
    margin: 3px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.blog-box .blog-description .label .label-list:hover {
    background: #165181;
    color: #ffffff;
    transform: translateY(-1px);
    text-decoration: none;
}

/* ========================================
   Blog Title
   ======================================== */
.blog-box .blog-description h5 {
    color: #165180;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.blog-box:hover .blog-description h5 {
    color: #0f3a5c;
}

/* ========================================
   Blog Meta Information
   ======================================== */
.blog-box .blog-description p {
    color: #595959;
    font-size: 14px;
    margin-bottom: 0;
    margin-top: auto;
    line-height: 1.5;
}

.blog-box .blog-description p span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-box .blog-description p i {
    color: #888888;
    font-size: 14px;
    flex-shrink: 0;
}


/* ========================================
   Swiper Navigation & Pagination
   ======================================== */
.swiper-button-next,
.swiper-button-prev {
    color: #165181;
    background: #ffffff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    box-shadow: 0 2px 10px rgba(22, 81, 128, 0.1);
    border: 1px solid rgba(22, 81, 128, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #165181;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(22, 81, 128, 0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}



.swiper-pagination-bullet {
    background: #cccccc;
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #165181;
    transform: scale(1.2);
}

/* ========================================
   Loading State
   ======================================== */
.blog-box.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
    overflow: hidden;
}

.blog-box.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(22, 81, 128, 0.1), 
        transparent
    );
    animation: loading 1.5s infinite;
    z-index: 1;
}

@keyframes loading {
    0% { 
        transform: translateX(-100%); 
    }
    100% { 
        transform: translateX(100%); 
    }
}

/* ========================================
   Accessibility Improvements
   ======================================== */
.blog-box:focus-within {
    outline: 2px solid #165181;
    outline-offset: 2px;
}

.video-card {
    transition: all 0.3s ease-in-out;
}
.video-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: 0.3s ease;
}
.video-thumbnail:hover .play-button-overlay {
    opacity: 1;
}

.label-list:focus {
    outline: 2px solid #ffb339;
    outline-offset: 1px;
}

.hover-scale {
  transition: transform 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

/* ========================================
   Print Styles
   ======================================== */


.bg-label{
  color: white;
  padding: 1px 10px;
  border-radius: 5px;
}

.bg-light-warning{
  background: #fbf7e8 !important;
}
.bg-primary{
  background:var(--primary-color) !important;
}
.bg-primary-gradient{
  background:var(--primary-gradient-color) !important;
}
.bg-primary-light{
  background:#e5f6fe !important;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #facf05, #e52e2e);
  color: #fff;
  font-weight: 400;
  border: none;
  padding: 10px 30px;
  font-size: 1.25rem;
  border-radius: 12px;
  cursor: pointer;
  z-index: 0;

  /* pastikan teks di atas lapisan */
  display: inline-block;
}

/* Lapisan merah */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: #e52e2e;
  transition: right 0.4s ease;
  z-index: -1; /* di bawah teks */
  border-radius: 12px;
}

/* Saat hover, merah geser dari kanan ke kiri */
.btn-primary:hover::before {
  right: 0;
}


.btn-warning{
  background: #FFB339 !important;
}

.btn-outline-primary {
    color: #165180;
    border-color: #165180;
}
.btn-outline-primary:hover{
    color: #FFF !important;
    border-color: #165180;
    background-color: #165180;
}
.btn-outline-white {
    color: #ffffff !important;
    border-color: #f8f9fa;
}
.btn-outline-white:hover {
    color: #165180 !important;
    background-color: #f8f9fa;
    border-color: #165180;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: none;
  display: none;
  flex-direction: column;
  min-width: 160px;
  border: 0px;
  overflow: hidden;
  z-index: 100;
  box-shadow: unset;
  -webkit-transition: all ease .238s;
  -moz-transition: all ease .238s;
  transition: all ease .238s;
  border: 1px solid #00000042;
  padding: 0px;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-item{    
  background: #ffffff;
  padding: 0.9rem 1rem;
  padding-left: 0.8rem;
  font-weight: 500;
  color: var(--primary-color);
  border-bottom: 1px solid #0000004a;
}
.dropdown-item a{
  background: #ffb339;
}

.dropdown-menu a:hover {
  background: var(--primary-color);
  color: #FFF;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.fit-content{
  width: fit-content !important;
}



.header-section-hero{
  height: 600px;
  background: #175282;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-position: center;
  background-size: cover;
  border-radius: 0px 0px 10% 10%;

}

.header-section-hero .header-title{
  z-index: 1;
}

.header-section{
  height: 260px;
  background: var(--primary-gradient-color);
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
  background-position: center;
  background-size: cover;
  
}
.header-section::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(100%);
  z-index: 1;
  backdrop-filter: blur(5px);
}
.header-section .header-title{
  z-index: 1;
  margin-bottom: 75px;
}

.list-circle-warning {
  list-style: none; /* Hilangkan default numbering */
  counter-reset: my-counter;
  padding-left: 0;
}

.list-circle-warning li {
  counter-increment: my-counter;
  position: relative;
  padding-left: 4em; /* Spasi untuk nomor */
  margin-bottom: 1em;
}

.list-circle-warning li::before {
  content: counter(my-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background-color: #ffb339;
  color: #165180;
  text-align: center;
  line-height: 3em;
  font-weight: bold;
}


.navbar {
}


.navbar-light .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    padding-right: 1.1rem;
    padding-left: 1.1rem;
}

.navbar-scrolled {
  background: var(--primary-gradient-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;

}
.navbar-toggler {
    border: var(--bs-border-width) solid rgb(255 255 255 / 15%);
    background: linear-gradient(to right, #facf05, #e52e2e);
}
.navbar-toggler-icon {
    filter: invert(1);
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
    color: #ffffff;
}
.nav-link.active {
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 20%; /* atau sesuaikan panjangnya */
  height: 3px;
  background-color: #fff; /* ganti dengan warna yang kamu inginkan */
  border-radius: 2px;
}

.navbar .navbar-brand .logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar .navbar-brand .logo img{
  width: 60px;
  margin-right: 10px; 
}
.navbar .navbar-brand .sub-text {
  font-size: 15px; 
}
.navbar .navbar-brand .logo h5{
  color: #fbf7e8;
  margin-bottom:0px;
}
/* .hero-section {
  height: 700px;
  position: relative;
} */

.hero-section,
.hero-section .swiper,
.hero-section .swiper-slide {
    height: 100vh; /* Full viewport height */
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section .swiper-slide .content {
    padding-bottom: 80px; /* agar konten tidak terlalu bawah */
    color: white;
}

.hero-section .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient-color);
    filter: brightness(100%);
    z-index: -1;
    opacity: 0.5;
}

.hero-section .swiper-slide .content {
    max-width: 900px;
}

.hero-section .swiper-pagination {
  position: absolute;
  left: 20px;             
  top: 59%;              
  transform: translateY(-50%); 
  display: flex;
  flex-direction: column;   
  gap: 10px;          
  z-index: 10;
  width: 10px;
  align-items: center;
}

.hero-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: white;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.hero-section .swiper-pagination-bullet-active {
  opacity: 1;
  width: 15px;
  height: 15px;
  background-color: var(--primary-color);
  border: 2px solid #FFF;
}


.people-box{
  text-align: center;
}
.people-box .deskripsi{
  background: #165180;
  padding: 29px;
  border-radius: 0px 0px 23% 23%;
  position: relative;
  color: #FFF;
}
.people-box .deskripsi::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #dadada;
  filter: brightness(100%);
  z-index: -1;
  border-radius: 0px 0px 15% 15%;
}

/* Fullscreen Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Loader Animation (Simple Spinner) */
#preloader img {
  width: 30%;
  animation: pulse 2s infinite ease-in-out;
}

/* Animasi pulse */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* (Opsional) animasi spin */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


.service-box {
  background: #165180;
  color: #FFF;
  padding: 50px 20px 50px 20px;
  border-radius: 20px;
  height: 100%;
}
.service-box .service-box-icon i{
  font-size: 5rem;
  color: #5bc1fc;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  width: 10px;
  height: 10px;
  background-color: #165180;
  border: 2px solid #165180;
}

/* .swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f5f5f;
} */

.text-primary {
    --bs-text-opacity: 1;
    color: #165180 !important ;
}

.text-warning{
  color: var(--secondary-color) !important;
}

.testimoni-list-item{    
  display: flex;
  margin-bottom: 20px;
  border: 1px solid #ffb339;
  border-radius: 15px;
  background: #165181;
  color: #FFF;
}
.testimoni-list-item img{
  width: 150px;
  height: auto;
  border-radius: 15px;
  margin-right: 13px;
  object-fit: cover
}
.testimoni-list-item .description{
  padding: 10px;
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2{
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #165180;
  font-weight: 600;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 58px;
  height: 9px;
  background: #165180;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 10px;
}

.wrapper-warning-light{
  padding: 30px;
  border: 2px solid #ffb339;
  border-radius: 20px;
  background: aliceblue;
}


.testimoni-box {
  display: flex;
  margin-bottom: 20px;
  border: 1px solid #ffffff;
  border-radius: 15px;
  background: #efefef;
  color: #165180;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.testimoni-box img {    
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin-right: 13px;
  object-fit: cover;
  border: 8px solid #ffffff;
  margin-top: -55px;
}
.testimoni-box .description {    
  padding: 40px 40px 40px 40px;
}
q {
  quotes: "“" "”";
  font-style: italic;
  color: #165180;
  font-size: 10pt;
  position: relative;
}
q::before {
  content: open-quote;
  font-size: 4em;
  vertical-align: top;
  color: #ffb339;
  position: absolute;
  top: -30px;
  left: -23px;
}

q::after {
  content: close-quote;
  font-size: 3em;
  vertical-align: top;
  color: #ffb339;
  position: absolute;
  bottom: -21px;
  right: -15px;
}
.rating{
  color: #ffb339;
  font-size: 20pt;
}


.scroll-down-wrapper {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    animation: fadeInUp 1s ease-out 2s both;
}

.scroll-down-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation-play-state: paused;
}

.scroll-down-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-down-btn i {
    transition: transform 0.3s ease;
}

.scroll-down-btn:hover i {
    transform: translateY(2px);
}

.scroll-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-down-wrapper:hover .scroll-text {
    opacity: 1;
}

.scroll-down-btn.pulse {
    animation: pulse 2s infinite, bounce 2s infinite;
}

.hero-section.scrolled .scroll-down-wrapper {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(20px);
    transition: all 0.3s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}




@media (max-width: 992px) {

    .navbar{
      background-color: rgb(22 22 22 / 0%) !important;
      backdrop-filter: blur(6px);
    }

    .nav-link.active::after {
        content: "";
        position: absolute;
        left: 10%;
        bottom: 0;
        transform: translateX(-50%);
        width: 10%;
        height: 3px;
        background-color: #fff;
        border-radius: 2px;
    }
}

@media (max-width: 768px) {
    .blog-box img {
        height: 220px;
    }
    
    .blog-box .blog-description {
        padding: 1.25rem;
    }
    
    .blog-box .blog-description h5 {
        font-size: 15px;
    }
    
    .blog-box .blog-description .label .label-list {
        font-size: 9pt;
        padding: 1px 8px;
        margin: 2px;
    }
    
    .blog-box .blog-description p {
        font-size: 13px;
    }

     .scroll-down-wrapper {
        bottom: 20px;
    }
    
    .scroll-down-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .scroll-text {
        font-size: 11px;
        margin-top: 6px;
    }
}

@media (max-width: 576px) {
  
  .description .label .label-list {
      font-size: 7pt;
  }
  .lead {
      font-size: 1rem;
      font-weight: 300;
  }
  #preloader img {
    width: 50%;
  }
  .service-box {
      padding: 20px 10px 20px 10px;
  }
  .service-box h5 {
    font-size: 1rem;
  }
  .service-box p {    
    font-size: 0.8rem;
  }
  .service-box .service-box-icon i {
      font-size: 4rem;
  }
}

@media (max-width: 480px) {
    .blog-box img {
        height: 180px;
    }
    
    .blog-box .blog-description {
        padding: 1rem;
    }
    
    .blog-box .blog-description h5 {
        font-size: 14px;
    }
    
    .blog-box .blog-description .label {
        margin-bottom: 8px;
    }
    
    .blog-box .blog-description .label .label-list {
        font-size: 8pt;
        padding: 1px 6px;
        margin: 1px;
    }


    .scroll-down-wrapper {
        bottom: 15px;
    }
    
    .scroll-down-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .scroll-text {
        font-size: 10px;
        margin-top: 5px;
    }
}

@media print {
  .blog-box {
      break-inside: avoid;
      box-shadow: none;
      border: 1px solid #cccccc;
  }
  
  .swiper-button-next,
  .swiper-button-prev,
  .swiper-pagination {
      display: none;
  }
}


:root {
    --swiper-navigation-size: 30px;
    --primary-color: #019a31;
    --primary-gradient-color: linear-gradient(to right, #019a31, #165180);
    --secondary-color: #f8c400;
    --blue-color:#224988;
    --grey-color: #3a3839;
    --light-grey-color: #f8f9fa;
}

/* Merah Marun + Krem + Coklat Kayu
Merah marun (#A93226) → menunjukkan keberanian, perhatian, dan kedalaman empati.

Krem (#FAF3E0) → latar lembut yang menenangkan mata.

Coklat kayu (#6E2C00) → kesan membumi, tradisional, dan tepercaya. */