/* ------------------------------------------------------------------- 
[Table of contents] 
1. body
2. navbar
3. slider
4. about
5. service
7. about
11. gallery
15. footer
16. copyright
18. index3
19. index4
22. about page
37. profile toggle
38. preloader
40. responsive
-------------------------------------------------------------------*/

/********************************************************
1. body
 *******************************************************/
body {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif !important;
    background-color: #fcfffd;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    overflow-x: hidden;
}
*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
a,
a:hover,
a:focus {
    text-decoration: none !important;
    cursor: pointer;
    color: #757575;
    outline: none;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    margin: 0;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.container {
    max-width: 1200px;
}
.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}
.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}
.spacer {
    padding-top: 30px;
}
.padding-0 {
    padding: 0 !important;
}
.clv_heading {
    text-align: center;
}
.clv_heading h3 {
    font-size: 40px;
    color: #096d4b;
    font-weight: 700;
    text-transform: capitalize;
}
.clv_heading.white_heading h3 {
    color: #ffffff;
}
.clv_heading.white_heading p {
    color: #ffffff;
}
.clv_heading > .clv_underline {
    margin: 10px 0px;
}
.clv_btn,
.clv_btn:focus {
    min-width: 170px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    outline: none;
    border: none;
    background: none;
    cursor: pointer;
    text-align: center;
    text-transform: capitalize;
    border-radius: 30px;
    font-size: 16px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
.index_v4 .clv_btn:hover {
    color: #096d4b;
}
.clv_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 30px;
    background-color: #096d4b;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.clv_btn:hover::before {
    opacity: 0;
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
}
.clv_btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    border-radius: 30px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid #096d4b;
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}
.clv_btn:hover::after {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}
.banner_title {
    margin-top: 82.5px;
    padding: 50px 0;
    margin-bottom: 50px;
    background-color: #096d4b;
}
.clv_heading p {
    font-weight: normal !important;
    font-family: 'Poppins', sans-serif !important;
}
.counter {
    font-family: 'Poppins', sans-serif;
}
.custom-banner-padding {
    padding-top: 180px;
    padding-bottom: 272px; /* default (desktop) */
}
.profile_toggle {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 999;
        background-color: transparent;
        border-radius: 50%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s;
    }

    .profile_toggle:hover {
        transform: scale(1.1);
    }

    .profile_toggle img {
        width: 80px;
        height: 80px;
    }
/********************************************************
1. body end
 *******************************************************/
/* ***************************************************
2. navbar
*******************************************************/
/* Buat navbar transparan saat di atas */
.navbar-transparent {
    background-color: transparent !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Saat scroll, ubah background jadi putih dan beri bayangan */
.navbar-scrolled {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ***************************************************
2. navbar end
*******************************************************/
/********************************************************
3. header start
 *******************************************************/
.clv_main_wrapper {
    position: relative;
}

/* Default nav-link warna hijau */
.navbar-nav > .nav-item > .nav-link {
    color: #005435 !important;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding: 10px 20px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
}

/* Active link jadi kuning */
.navbar-nav .nav-link.active {
    font-weight: bold;
    color: #fec007 !important;
}

/* Dropdown item default hijau */
.dropdown-menu .dropdown-item {
    color: #005435;
    padding: 10px 20px;
}

/* Dropdown item saat hover (optional, hijau lebih gelap) */
.dropdown-menu .dropdown-item:hover {
    background-color: #d9f2e7;
    color: #005435;
}

/* Dropdown item saat aktif -> latar kuning */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
    background-color: #fec007 !important;
    color: white !important;
}

/* Tambahan spacing antar menu */
@media (min-width: 768px) {
    .navbar-nav {
        gap: 15px;
    }
}
/********************************************************
3. header end
 *******************************************************/
/* ***************************************************
4. home banner
*******************************************************/
.jumbo_content h1 {
    font-size: 70px;
    line-height: 82px;
    font-weight: 700;
    color: #005435;
    text-transform: capitalize;
}

.jumbo_content h2 {
    font-size: 51px;
    font-weight: 500;
    color: #005435;
    text-transform: capitalize;
}
.jumbo_content h4 {
    color: #005435;
    margin-bottom: 20px;
}

.jumbo_content h5 {
    color: #005435;
}

.jumbo_content .banner_btn > span:before {
    height: 1px;
}

.jumbo_content .banner_btn a img {
    transition: transform 0.3s ease;
}

.jumbo_content .banner_btn a:hover img {
    transform: scale(1.1);
}
/********************************************************
3. slider start
 *******************************************************/
.clv_banner_slider {
    position: relative;
    z-index: 1;
}
.clv_banner_slider .clv_slide {
    background-size: cover;
    padding-top: 200px;
    padding-bottom: 272px;
    position: relative;
    z-index: 1;
}
.clv_banner_slider .clv_slide:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.clv_banner_slider .clv_slide .clv_slide_inner h1 {
    font-size: 70px;
    line-height: 82px;
    font-weight: 700;
    color: #005435;
    text-transform: capitalize;
}
.clv_banner_slider .clv_slide .clv_slide_inner h2 {
    font-size: 51px;
    font-weight: 500;
    color: #005435;
    text-transform: capitalize;
}
.clv_banner_slider .clv_slide .clv_slide_inner h5 {
    color: #005435;
}
/********************************************************
3. slider end
 *******************************************************/
/********************************************************
5. service start
 *******************************************************/
.clv_service_wrapper {
    position: relative;
    padding: 20px 0px 80px;
    z-index: 1;
}
.clv_service_wrapper:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.service_section {
    margin-top: 36px;
}
.clv_service_wrapper .service_block {
    text-align: center;
}
.clv_service_wrapper .service_block > .service_img {
    margin-bottom: 15px;
    display: inline-block;
}
.clv_service_wrapper .service_block > .service_img > span {
    width: 100px;
    height: 100px;
    display: inline-block;
    border-radius: 15px;
    transform: rotate(-45deg);
    position: relative;
}
.clv_service_wrapper .service_block > .service_img > span > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.clv_service_wrapper .service_block > .service_text > h5 {
    font-size: 18px;
    font-weight: 600;
    color: #010101;
    text-transform: capitalize;
}
/********************************************************
5. service end
*******************************************************/
/********************************************************
15. footer start
*******************************************************/
.clv_footer_wrapper {
    position: relative;
    margin-top: 50px;
    padding-top: 100px;
    padding-bottom: 96px;
    background-color: #085e41;
    background-size: contain;
}
.clv_footer_wrapper img.foot_girl {
    position: absolute;
    bottom: 0;
    right: 30px;
}
.clv_footer_wrapper .footer_block .footer_logo {
    margin-bottom: 18px;
    width: 70%;
}
.clv_footer_wrapper .footer_block p {
    color: #fff;
    margin-bottom: 30px;
}
.clv_footer_wrapper .footer_block h6 {
    text-transform: uppercase;
    color: #008d2a;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
}
.clv_footer_wrapper .footer_block h3 {
    color: #fff;
    font-size: 34px;
}
.clv_footer_wrapper .footer_block .footer_heading {
    margin-bottom: 20px;
    position: relative;
}
.clv_footer_wrapper .footer_block .footer_heading > h4 {
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    color: #fff;
}
.clv_footer_wrapper .footer_block .useful_links > li {
    display: block;
    margin-bottom: 20px;
}
.clv_footer_wrapper .footer_block .useful_links > li:last-child {
    margin-bottom: 0;
}
.clv_footer_wrapper .footer_block .useful_links > li > a {
    display: inline-block;
    color: #fff;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
.clv_footer_wrapper .footer_block .useful_links > li > a:hover {
    color: #fec007;
}
.clv_footer_wrapper .footer_block .useful_links > li > a > span {
    margin-right: 10px;
}


.clv_footer_wrapper .footer_block .footer_post_section .footer_post_slide .footer_post_content {
    margin-bottom: 0;
}
.clv_footer_wrapper .footer_block .footer_post_section .footer_post_slide .footer_post_content > a {
    display: inline-block;
    color: #fff;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
.clv_footer_wrapper .footer_block .footer_post_section .footer_post_slide .footer_post_content > a:hover {
    color: #fec007;
}
.clv_footer_wrapper .footer_block .footer_post_section .footer_post_slide .footer_post_content > a > span {
    margin-right: 10px;
}
.clv_footer_wrapper .footer_block .instagram_links > li {
    display: inline-block;
    margin: 0px 5px 10px 0px;
}
.clv_footer_wrapper .footer_block .instagram_links > li > a {
    display: inline-block;
    position: relative;
    z-index: 1;
}
.clv_footer_wrapper .footer_block .instagram_links > li > a:before {
    content: "";
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(254, 192, 7, 0.7);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
.clv_footer_wrapper .footer_block .instagram_links > li > a:hover:before {
    opacity: 1;
    visibility: visible;
}
.clv_footer_wrapper .footer_block .instagram_links > li > a > img {
    border-radius: 5px;
}
.footer_contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer_contact li {
    margin-bottom: 12px; /* Jarak antar link */
    display: flex;
    align-items: flex-start;
}

.footer_contact li i {
    margin-right: 8px;
    color: #fff;
    min-width: 20px;
}

.footer_contact a {
    color: #fff;
    text-decoration: none;
    line-height: 1.5;
}

.footer_contact a:hover {
    text-decoration: underline;
}
/********************************************************
15. footer end
*******************************************************/
/********************************************************
16. copyright start
*******************************************************/
.clv_copyright_wrapper {
    background-color: #085e41;
    text-align: center;
    padding: 14px;
}
.clv_copyright_wrapper > p {
    margin: 0;
    text-transform: capitalize;
    color: #ffffff;
    font-size: 16px;
}
.clv_copyright_wrapper > p > a {
    color: #ffc800;
}
/********************************************************
16. copyright end
*******************************************************/
/********************************************************
19. Index4 start
*******************************************************/
/*Garden Banner Start*/
.index_v4 .clv_banner_slider .clv_slide {
    background-size: cover;
    padding-bottom: 380px;
}
.index_v4 .clv_slide_inner {
    text-align: left;
}
.clv_slide_inner .banner_btn a img {
    transition: transform 0.3s ease;
}
.clv_slide_inner .banner_btn a:hover img {
    transform: scale(1.1);
}
/*Garden Banner End*/
/*Garden About Start*/
.garden_about_wrapper {
    margin-top: -168px !important;
    position: relative;
    z-index: 10;
}
.about_wrapper .about_block {
    flex-direction: row; /* untuk menyusun sejajar secara horizontal */
    align-items: center;
    justify-content: center;
    text-align: left; /* teks sejajar kiri */
    padding: 40px 30px;
    position: relative;
    border-radius: 10px;
    background-size: cover;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
.about_wrapper .about_block:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #ddf3e7;
    z-index: -1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
.about_wrapper .about_block .about_image span {
    width: auto;
    height: 9cqb;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
.about_wrapper .about_block h3 {
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    color: #222222;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
.about_wrapper .about_block h3:before,
.about_wrapper .about_block h3:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
.about_wrapper .about_block:hover h3:before,
.about_wrapper .about_block:hover h3:after {
    background-color: rgba(255, 255, 255, 1);
}
.about_wrapper .about_block h3:after {
    top: calc(100% + 5px);
    width: 40px;
}
.about_wrapper .about_block p {
    margin: 0;
    padding-bottom: 20px;
    font-size: 16px;
    color: #333333;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
/*Garden About End*/
/*Dairy Gallery Start*/
.gallery_wrapper {
    background-color: #ddf3e7;
    padding: 40px;
    border-radius: 20px;
}
.gallery_image {
    position: relative;
    display: inline-block;
}
.gallery_image > img {
    border-radius: 10px;
    max-width: 100%;
}
.gallery_image .gallery_overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    background-color: #096d4ca4;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
.gallery_image:hover .gallery_overlay {
    opacity: 1;
    visibility: visible;
}
.gallery_image .gallery_overlay > a {
    font-size: 24px;
    color: #ffffff;
    display: inline-block;
}
.gallery_fade_item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}
.gallery_fade_item.active {
    opacity: 1;
    visibility: visible;
}
.gallery_fade {
    position: relative;
    height: auto;
    min-height: 150px;
}
.struktur-image {
    max-width: 1000px;
    width: 100%;
    height: auto;
}
.gallery-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.main-img {
    height: 420px;
}
.side-img {
    height: 200px;
}
.video-thumb {
    display: block;
    position: relative;
    z-index: 1;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 8px;
}

.video-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.video-title {
    font-size: 14px;
    color: #333;
    text-align: center;
    margin-top: 8px;
    max-width: 100%;
}

.video-thumb:hover {
    background-color: #f0f0f0; /* warna latar saat hover */
}
.card .badge {
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.card-img-top {
  height: 230px; /* sesuaikan tinggi gambar */
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.card:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease;
    background-color: rgb(221, 243, 231);
}
.card img {
    object-fit: cover;
}
/* --- Tampilan dasar badge --- */
.badge-category {
  background-color: #198754;        /* warna hijau Bootstrap */
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;        /* animasi halus */
  z-index: 2;
}

/* --- Efek hover --- */
.badge-category:hover {
  background-color: #157347;        /* hijau lebih gelap */
  transform: scale(1.05);           /* sedikit membesar */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  color: #fff;
  text-decoration: none;
}
.stat-number {
    font-size: 60px;
    font-weight: bold;
    color: #d4af37;
}
.stat-label {
    font-size: 1rem;
    color: #fff;
    margin-top: 10px;
}
.img-logo {
     max-width: 60%; /* Atau width: 150px; sesuai kebutuhan */
        height: auto;
}
/*Dairy Gallery End*/
/*Garden Agenda Start*/
.agenda_wrapper {
    position: relative;
    z-index: 1;
    padding-top: 88px;
    padding-bottom: 85px;
}
.agenda_wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #085e41;
    z-index: -1;
}
.agenda-date-box {
    width: 100px;
    height: 80px;
    padding: 8px; /* opsional, untuk jarak dalam */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}
.agenda-date-box div:first-child {
    font-size: 20px; /* tanggal besar */
    line-height: 1;
}
.agenda-date-box div:last-child {
    font-size: 20px; /* bulan kecil */
    line-height: 1;
}
.agenda-title {
    font-size: 1rem;
}
.agenda-card {
    padding: 1rem;
}
.agenda-day-number {
    font-size: 18px;
}
.agenda-month {
    font-size: 14px;
}
/*Garden Agenda End*/
/* Detail Artikel */
.list-unstyled li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.list-unstyled .badge {
  font-size: 0.7rem;
  padding: 0.35em 0.6em;
  border-radius: 0.4rem;
}

.list-unstyled .fw-semibold {
  font-size: 0.9rem;
  line-height: 1.2;
}

.list-unstyled .text-muted {
  font-size: 0.75rem;
}

.list-unstyled li .text-start {
  flex: 1;
  min-height: 80px; /* sesuaikan dengan tinggi rata-rata baris */
}

/*Garden Footer Start*/
.index_v4 .clv_footer_wrapper {
    background: none;
    background-color: #fff;
    padding-top: 93px;
    padding-bottom: 90px;
}
.index_v4 .footer_block > p {
    margin-bottom: 10px;
}
.index_v4 .footer_block > p > span {
    margin-right: 10px;
}
.agri_social_links {
    margin-top: 20px;
}
.agri_social_links > li {
    display: inline-block;
    margin: 0px 5px;
}
.agri_social_links > li:first-child {
    margin-left: 0;
}
.agri_social_links > li > a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
.agri_social_links > li > a:hover {
    border-color: #fff;
    background-color: #fff;
    color: #fec007;
}
.footer_post_section {
    height: 100%;
    max-height: 190px;
    overflow: hidden;
    overflow-y: auto;
}
.footer_post_section::-webkit-scrollbar {
    width: 3px;
}
.footer_post_section::-webkit-scrollbar-track {
    background: #fff;
}
.footer_post_section::-webkit-scrollbar-thumb {
    background: #ffc800;
}
.footer_post_section .footer_post_slide {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
/*Garden Footer End*/
/********************************************************
19. Index4 end
*******************************************************/

/********************************************************
38. Preloader Start
*******************************************************/
.preloader_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    z-index: 1111;
}

/********************************************************
38. Preloader End
*******************************************************/

/********************************************************
40. Responsive CSS Start
*******************************************************/
@media (max-width: 1200px) {
    .dairy_gallery_wrapper .dairy_gallery_inner {
        overflow: hidden;
    }
}
@media (max-width: 1024px) {
    .clv_footer_wrapper .footer_block h3 {
        font-size: 26px;
    }
}
@media (max-width: 991px) {
    .clv_selection {
        padding: 0;
    }
    div.garden_counter_wrapper.py-5 {
        padding-top: 1rem !important;
        padding-bottom: 2rem !important;
    }
    .clv_service_wrapper {
        position: relative;
        padding: 20px 0px 40px;
        z-index: 1;
    }
    .agenda_wrapper {
        padding-top: 40px;
        padding-bottom: 50px;
    }
    .clv_heading h3 {
        font-size: 30px;
    }
    .clv_service_wrapper .service_block > .service_text > h4 {
        font-size: 32px;
    }
    .about_main_wrapper .col-lg-8.col-md-8 {
        max-width: 100%;
        flex: unset;
    }
    .clv_footer_wrapper {
        padding-top: 100px;
    }
    .clv_footer_wrapper .footer_block h3 {
        font-size: 22px;
    }
    .spacer {
        padding: 0;
    }
    .dairy_about_wrapper {
        padding-top: 51px;
    }
    .index_v4 .menu_toggle svg path {
        fill: #112e03;
    }
    .garden_contact_section .contact_number h4 {
        font-size: 20px;
    }
    .index_v4 .clv_banner_slider .clv_slide .clv_slide_inner h1 {
        font-size: 24px;
        line-height: 24px;
    }
    .index_v4 .clv_banner_slider .clv_slide .clv_slide_inner h2 {
        font-size: 16px;
    }
    .index_v4 .footer_block > p > span {
        margin: 0;
    }
    .clv_footer_wrapper .footer_block .footer_logo a img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .agri_social_links > li > a {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    .clv_footer_wrapper .footer_block h3 {
        font-size: 20px;
    }
    .garden_counter_wrapper {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
    .clv_footer_wrapper .footer_block {
        margin-bottom: 30px;
    }

    .clv_footer_wrapper .footer_post_slide {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 15px;
    }

    .clv_footer_wrapper .footer_heading h4 {
        font-size: 18px;
    }

    .footer_post_content a {
        font-size: 14px;
    }

    .footer_contact li {
        font-size: 14px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

    .footer_contact li i {
        margin-right: 10px;
    }

    .useful_links li a {
        font-size: 14px;
    }

    .clv_footer_wrapper .container > .row {
        display: flex;
        flex-wrap: wrap;
    }

    .clv_footer_wrapper .col-md-3 {
        width: 50%;
        padding: 10px;
    }

    .agri_social_links {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }

    .profile_toggle {
        bottom: 20px;
        right: 20px;
    }

    .profile_toggle img {
        width: 50px;
        height: 50px;
    }

    .clv_copyright_wrapper p {
        font-size: 13px;
        text-align: center;
        padding: 10px 0;
    }
}


@media (max-width: 767px) {
    .clv_selection {
        padding: 0;
    }
    .clv_btn,
    .clv_btn:focus {
        min-width: 150px;
        height: 45px;
        line-height: 45px;
    }
    .clv_service_wrapper {
        padding-bottom: 30px;
        padding-top: 51px;
    }
    .gallery_wrapper {
        border-radius: 20px;
    }
    .dairy_gallery_wrapper {
        padding-top: 51px;
        padding-bottom: 45px;
    }
    .agenda_wrapper {
        padding-top: 51px;
        padding-bottom: 45px;
    }
    .agenda-title {
        font-size: 1rem;
    }
    .date-box {
        padding: 0.1rem 0.1rem;
    }
    .agenda-card {
        padding: 0.2rem 0.2rem;
    }
    .agenda-day-number {
        font-size: 20px;
    }
    .agenda-month {
        font-size: 12px;
    }
    .index_v4 .clv_partner_wrapper {
        padding: 60px 0px;
    }
    .clv_heading {
        padding: 0px 30px;
    }
    .scroll_down {
        display: none;
    }
    .clv_service_wrapper .service_block {
        margin-bottom: 40px;
    }
    .footer_block {
        margin-bottom: 30px;
    }
    .dairy_about_slide {
        text-align: center;
    }
    .index_v4 .clv_slide_inner .banner_btn > span:before {
        height: 1px;
    }
    .index_v4 .about_wrapper {
        margin-bottom: 30px;
    }
    .message_slider .message_slide {
        max-width: 400px;
    }
    .index_v4 .footer_block > p > span {
        margin-right: 10px;
    }
    .service-icon {
        width: 100px !important;
        height: auto;
    }
    .service_text {
        margin-top: 0;
    }
    .jumbo_content,
    .banner_btn {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    /* Kotak 'Tentang IPNU IPPNU' tidak mepet ke pinggir */
    .about_wrapper {
        border-radius: 12px;
        padding: 1.5rem;
    }
    .garden_about_wrapper p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    .garden_about_wrapper h3 {
        font-size: 20px !important;
    }
    /* Atur container agar tetap ada padding */
    .garden_about_wrapper .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .about-desc {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    .clv_btn {
        font-size: 14px !important;
    }
     .custom-banner-padding {
        padding-bottom: 240px; 
    }
     .jumbo_content {
        padding-left: 1.5rem !important;
        padding-right: 1.25rem;
    }
    .garden_counter_wrapper.py-5.mt-5.compact-mobile {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }
    .jumbo_content h1 {
        font-size: 29px;
        line-height: 30px;
        margin-bottom: 5px !important;
    }

    .jumbo_content h2 {
        font-size: 21px;
    }

    .jumbo_content h4 {
        font-size: 24px;
    }

    .jumbo_content h5 {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .index_v4 .clv_banner_slider .clv_slide {
        padding-bottom: 200px;
    }
    .service-icon {
        width: 100px !important;
        height: auto;
    }
}
@media (max-width: 991.98px) {
    .clv_logo img {
        height: 40px;
        width: auto;
    }
    .menu_toggle {
        display: block !important;
        margin-left: auto;
    }
    .clv_menu_nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .service-icon {
        width: 80px !important;
        height: auto;
    }
     .footer_block {
        margin-bottom: 20px;
        padding: 0 5px;
    }

    .footer_logo img {
        max-width: 100px !important;
        height: auto;
    }

    .footer_post_image img {
        width: 60px !important;
        height: auto;
    }

    .footer_heading h4 {
        font-size: 16px;
    }

    .footer_post_content a,
    .footer_contact li,
    .useful_links li a {
        font-size: 13px;
    }

    .agri_social_links {
        margin-top: 10px;
        font-size: 18px;
    }

    .clv_footer_wrapper .row {
        flex-wrap: wrap;
    }

    .clv_footer_wrapper .col-12,
    .clv_footer_wrapper .col-md-6,
    .clv_footer_wrapper .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .footer_contact a {
    word-break: break-word;
    font-size: 13px;
    display: inline-block;
    max-width: 100%;
    }

  .footer_contact li {
    display: flex;
    align-items: start;
    gap: 5px;
    }

  .footer_contact li i {
    min-width: 16px;
    margin-top: 3px;
    }
    .footer-desc {
    font-size: 13px;
    }
     .agri_social_links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 10px;
    padding-left: 0;
  }
  .agri_social_links li {
    list-style: none;
  }
  .agri_social_links a i {
    font-size: 18px;
  }
  .footer_contact a {
    word-break: break-word;
    font-size: 13px;
    line-height: 1.2;
    display: inline-block;
    max-width: 100%;
  }

  .banner_btn img {
    width: 32px !important;
  }
   .garden_counter_wrapper .h5 {
    font-size: 1rem !important; 
  }

  .garden_counter_wrapper .counter {
    font-size: 1.5rem !important; 
  }
   .label-text {
    max-width: 75%; 
    white-space: normal;
  }

  .counter {
    font-size: 1.4rem;
  }

  .garden_counter_wrapper .d-flex {
    gap: 10px; 
  }
}

@media (max-width: 320px) {
    .video_btn {
        margin-bottom: 20px;
    }
    .clv_heading {
        padding: 0px 10px;
    }
    .breadcrumb_block {
        padding: 14px 10px;
        text-align: center;
    }
    .service-icon {
        width: 60px !important;
        height: auto;
    }
}

/* Gaya untuk iPad & tablet ke atas */
@media (min-width: 768px) and (max-width: 991.98px) {
    .jumbo_content h1 {
        font-size: 52px;
        line-height: 50px;
    }
    .jumbo_content h2 {
        font-size: 38px;
    }
    .jumbo_content h4 {
        font-size: 12px;
    }
    .jumbo_content h5 {
        font-size: 20px;
    }
    .agenda-date-box {
        width: 70px;
        padding: 10px 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .agenda-date-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .agenda-day-number {
        font-size: 16px;
    }
    .agenda-month {
        font-size: 14px;
        margin-top: 2px;
        display: block;
    }
    /* Sembunyikan deskripsi */
    .agenda-title + small {
        display: none !important;
    }
    .img-logo {
        margin-bottom: 1.5rem;
    }
    .btn-tablet {
        margin-top: 1rem !important; /* Geser lebih ke bawah */
    }
     .clv_footer_wrapper .row > div.col-md-3 {
    width: 50% !important;
    float: left;
    margin-bottom: 30px;
  }
}
/********************************************************
39. Responsive CSS End
*******************************************************/
/* ==== RESPONSIVE FONT FOR MOBILE DEVICES ==== */

@media (max-width: 767px) {
    .about_wrapper .about_block {
        flex-direction: column !important;
        padding: 30px 20px;
        text-align: center;
    }

    .about_wrapper .about_block .about_image {
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    .about_wrapper .about_block h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .about_wrapper .about_block p {
        font-size: 16px;
        padding: 0 10px;
    }

    .about_wrapper .about_block .banner_btn {
        justify-content: center;
    }

    .about_wrapper .about_block .about_image span img {
        max-width: 70%;
    }
    .jumbo_content h1 {
        font-size: 26px;
        line-height: 30px;
    }

    .jumbo_content h2 {
        font-size: 19px;
    }

    .jumbo_content h5 {
        font-size: 16px;
    }
}

/* Container scroll horizontal untuk mobile */
@media (max-width: 767.98px) {
    .dairy_gallery_inner {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .dairy_gallery_inner > div {
        flex: 0 0 auto;
        width: 75%; /* Bisa disesuaikan, 100% jika ingin satu per baris */
        max-width: 300px;
        margin-right: 15px;
    }

    /* Sembunyikan scrollbar untuk tampilan lebih rapi (opsional) */
    .dairy_gallery_inner::-webkit-scrollbar {
        display: none;
    }

    .dairy_gallery_inner {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .dairy_gallery_inner .col-md-3 {
        display: none !important;
    }

    .dairy_gallery_inner .col-md-6 {
        display: block !important;
    }
}



@media (max-width: 767.98px) {
    .dairy_gallery_inner > div {
        flex: 0 0 auto;
        width: 75%;
        max-width: 300px;
        margin-right: 0;
    }
}
@media (max-width: 768px) {
    .navbar.navbar-transparent .navbar-collapse.show {
        background-color: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        border-radius: 0.5rem;
    }
}

@media (max-width: 768px) {
    .struktur-image {
        max-width: 100%; /* agar tidak lebih lebar dari container */
    }
}
