
/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 

---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-weight: 400;
  background-color: black;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}


h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
  
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 26px;
  color: #212741;
}

img {
  width: 100%;
  overflow: hidden;
}




/* 
---------------------------------------------
header
--------------------------------------------- 
*/
.background-header {
  background-color: #212741;
  height: 80px!important;
  position: fixed!important;
  top: 0!important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
}

.header-area {
  background-image: url(../images/header-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  height: 110px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
}

.header-area .main-nav .logo {
  line-height: 120px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.background-header .main-nav .logo {
  line-height: 80px;
  width: 160px;
}

.background-header .nav {
  margin-top: 18px !important;
}

.header-area .main-nav .nav {
  float: right;
  margin-top: 40px;
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 25px;
  padding-right: 25px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 300;
  font-size: 14px;
  text-transform: capitalize;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li:last-child a:hover {
  color: #fff;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li:last-child a,
.background-header .main-nav .nav li.has-sub ul.sub-menu li:last-child a {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
  border-radius: 0px;
  padding-top: 0px !important;
  height: 40px;
}


.header-area .main-nav .nav li.has-sub ul.sub-menu li:last-child a:hover,
.background-header .main-nav .nav li.has-sub ul.sub-menu li:last-child a:hover {
  padding-left: 25px !important;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: var(--accent);
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: var(--accent);
  opacity: 1;
}

.header-area .main-nav .nav li.has-sub {
  position: relative;
  padding-right: 15px;
}

.header-area .main-nav .nav li.has-sub:after {
  content: "\f107";
  font-size: 12px;
  color: #fff;
  position: absolute;
  right: 2px;
  top: 12px;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu {
  position: absolute;
  width: 140px;
  background-color: #fff;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 40px;
  border-radius: 5px;
  opacity: 0;
  transition: all .3s;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li a {
  opacity: 1;
  display: block;
  background: #f7f7f7;
  color: #2a2a2a!important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 12px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}

.header-area .main-nav .nav li.has-sub ul li a:hover {
  background: #fff;
  color: var(--accent)!important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.has-sub ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.has-sub:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #fff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #fff;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #fff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #fff;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #fff;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #fff;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #fff;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #fff;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area .nav {
  margin-top: 30px;
}

.header-area.header-sticky .nav li a.active {
  color: var(--accent);
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-area .main-nav .logo {
    color: #1e1e1e;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: var(--accent)!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: #f7f7f7;
    padding: 0px 15px;
    height: 100px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 0px;
    line-height: 80px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 100px !important;
  }
  .background-header.header-sticky .nav {
    margin-top: 80px !important;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: var(--accent)!important;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
    transition: all 0s;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    height: auto;
  }
  .header-area .main-nav .nav li.has-sub:after {
    color: #3B566E;
    right: 30px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (min-width: 767px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}


/* 
---------------------------------------------
banner
--------------------------------------------- 
*/

.swiper-container {
  height: calc(100vh - 0px);
  margin: 0px;
  background-color: #212741;
}

.swiper-slide {
  overflow: hidden;
}

.slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
  object-fit: contain;
}

.swiper-slide-active h2 {
  animation: fadeInLeft .8s;
  -webkit-animation-delay: 1s;
  animation-delay: .3s;
  opacity: 1;
  
}

.swiper-slide-active p {
  animation: fadeInRight .8s;
  -webkit-animation-delay: 1s;
  animation-delay: .3s;
  opacity: 1;
}

.swiper-slide-active .div-dec {
  animation: fadeIn .8s;
  -webkit-animation-delay: 1s;
  animation-delay: .3s;
  opacity: 1;
}

.swiper-slide-active .buttons .green-button,
.swiper-slide-active .buttons .orange-button {
  animation: fadeInUp .8s;
  -webkit-animation-delay: 1s;
  animation-delay: .3s;
  opacity: 1;
}

.slide-inner .header-text {
  position: absolute;
  width: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.slide-inner .header-text h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(1.5rem, 4vw, 5rem);
  color: #fff;
  font-weight: 700;
  opacity: 1;
  visibility: visible;
  line-height: 70px;
  margin-bottom: 40px;
}

.slide-inner .header-text .div-dec {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background-color: #f5faff;
  margin-bottom: 40px;
  opacity: 1;
  visibility: visible;
  
}

.slide-inner .header-text p {
  color: #fff;
  margin-right: 60px;
  margin-bottom: 50px;
  opacity: 1;
  width: auto;
  visibility: visible;
  font-size: clamp(0.9rem, 4vw, 1.5rem);
}

.slide-inner .header-text h2 em {
  font-style: normal;
  color: var(--accent);
}

.slide-inner .header-text .buttons {
  display: inline;
  opacity: 1;
  visibility: visible;
}

.slide-inner .header-text .buttons .green-button {
  display: inline;
  float: left;
  margin-right: 20px;
}

.swiper-button-next, .swiper-button-prev {
  color: #fff !important;
}

/*
Our Product
*/
    .product {
      margin-top: 0;
    }

    :root {
        --color-text-primary: #111827;
        --color-text-secondary: #6b7280;
        --color-bg-overlay: rgba(255, 255, 255, 0.85);
        --color-arrow-bg: #f3f4f6;
        --color-arrow-hover-bg: #e5e7eb;
        --font-family-primary: 'Poppins', sans-serif;
        --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.12);
        --radius-card: 0.75rem;
        --transition-duration: 0.5s;
    }
    .container-produk {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 50px 150px 50px;
        margin-top: 0;
        background: linear-gradient(to right, white, rgb(222, 242, 255));
    }
    
    .produk {
        height: 500px;
        width: 700px;
    }

    .header-produk .icon-produk {
      background-color: rgba(203, 222, 242, 0.351);
      padding: 10px;
      border-radius: 12px;
      width: fit-content;
    }

    .icon-produk .icon {
      height: 40px;
      width: 40px;
    }

    .slider-card {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: var(--radius-card);
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 20px 4px;
        background: #ffffff38;
        user-select: none;
        margin: 0 auto; /* Center the slider */
    }
    .slides-container {
        display: flex;
        width: 100%;
        height: 100%; /* Ensure it takes full height */
        transition: transform var(--transition-duration) cubic-bezier(0.4, 0, 0.2, 1);
    }
    .imageCarousel {
        height: 100%;
        object-fit: cover;
        flex-shrink: 0; /* Prevent shrinking */
        width: 100%; /* Ensure full width */
    }
    .arrow-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        background: var(--color-arrow-bg);
        border: none;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        cursor: pointer;
        transition: background-color 0.25s ease, transform 0.2s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--color-text-primary);
        user-select: none;
        z-index: 10;
    }
    .arrow-button:hover {
        background: var(--color-arrow-hover-bg);
        transform: translateY(-50%) scale(1.1);
    }
    .arrow-left {
        left: 12px;
    }
    .arrow-right {
        right: 12px;
    }
    .arrow-button svg {
        width: 22px;
        height: 22px;
        stroke-width: 3;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .header-produk {
      text-align: right;
      align-items: end;
      max-width: 400px;
      display: flex;
      flex-direction: column;
    }

/*
---------------------------------------------
COE
---------------------------------------------
*/ 


.coe-section {
  padding: 0px;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(to right, white,rgb(222, 242, 255)  );
}

.coe-section .box-coe {
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 30px 150px 30px;
}

.header-coe {
  width: 600px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.header-coe .subjudul {
  margin:0px;
}


.header-coe .box-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 0px;
  margin-top: 0;
}

.icon-coe {
  height: fit-content;
}

.icon-coe .icon {
  width: 50px;
  height: 50px;
  margin: 0;
}

.container-coe {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 50px 40px;
  width: 100%;
  max-width: 870px;
}

.coe-card {
  width: 230px;
  height: 240px;
  overflow: hidden;
  background-color: #f0f8ff;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.162);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.container-coe .box {
  border-radius: 10px;
  height: 313px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  


.coe-title {
  font-size: 18px;
  font-weight: bold;
  color: #ff6600;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.coe-description {
  font-size: 14px;
  color: #002f59;
  line-height: 1.5;
}


/* 
---------------------------------------------
page heading
--------------------------------------------- 
*/

.page-heading {
    background-image: url(../images/heading-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 215px 0px 120px 0px;
    text-align: center;
  }
  
  .page-heading h2 {
    font-size: 56px;
    color: #fff;
    font-weight: 700;
  }
  
  .page-heading .div-dec {
    width: 80px;
    height: 6px;
    border-radius: 3px;
    background-color: #fff;
    margin: 20px auto 0 auto;
  }

  [data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  [data-animate].show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .timeline-content i {
    margin-right: 8px;
    color: #212741;
    transition: transform 0.3s ease;
  }
  
  .timeline-content:hover i {
    transform: scale(1.3);
    color: #ff6600;
  }

.organisasi {
  margin-top: 0;
  position: relative;
  padding: 50px;
  background-size: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: repeat;
  flex-direction: column;
}

.organisasi .header-section {
  text-align: center;
  margin: 0 0 100px;
}

.box-organisasi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1400px;
  box-sizing: border-box;
}

.card-organisasi {
  padding-top: 40px;
  height: 450px;
  max-height: 450px;
  width: 200px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.135) 0 0 8px 2px;
  background-color: rgba(0, 0, 0, 0.032);
}

.header-card {
  position: relative;
  margin: 0 auto 0;
  max-width: 150px;
  text-align: center;
  margin-bottom: 20px;
}

.card-organisasi h2{
  font-size: 15px;
  font-weight: 700;
  color: #003871;
  margin: 0px auto 15px;
}

.card-organisasi h3 {
  color: #000000aa;
  font-size: 16px;
  font-weight: lighter;
}

.image-items {
  overflow: hidden;
  border-radius: 12px;
  margin-top: auto; /* Dorong ke bawah */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 300px;
}

.image-items img {
  object-fit: cover;
  height: 250px;
  max-height: 250px;
  width: auto;
  display: block;
  position: static; /* Hapus position relative */
  bottom: auto; /* Hapus bottom */
}




/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/


body {
  overflow-x: hidden;
}

@media (max-width: 992px) {
  .header-area .main-nav .nav li:last-child {
    display: none;
  }
  .header-area .main-nav .nav li ul li:last-child {
    display: inline-block;
  }
  .header-area {
    background-color: #212741;
  }
  .slide-inner .header-text {
    width: 80%;
  }
  .simple-cta {
    text-align: center;
  }
  section.simple-cta .buttons {
    justify-content: center;
  }
  section.about-us .naccs .menu div,
  section.service-details .naccs .menu div {
    margin-right: 15px;
    font-size: 15px;
    padding: 15px 20px;
  }
  section.about-us .right-content {
    margin-left: 0px;
    margin-top: 60px;
  }
  section.calculator .left-image {
    display: none;
  }
  .testimonials .item img {
    max-width: 200px;
    right: 50px;
  }
  section.partners .item {
    margin:15px; 
  }
  section.top-section .accordions {
    margin-left: 0px;
    margin-top: 45px;
  }
  .what-we-do .left-content {
    margin-right: 0px;
    margin-bottom: 45px;
  }
  .main-services .left-image {
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .main-services .right-text-content {
    margin-left: 0px;
  }
  .main-services .right-image {
    margin-left: 0px;
    margin-top: 30px;
  }
  section.service-details ul.nacc li .left-image {
    position: relative;
    margin-right: 0px;
    transform: translateY(0px);
  }
  section.service-details ul.nacc li .left-image img {
    border-radius: 15px;
  }
  section.service-details ul.nacc li .right-content {
    padding: 50px;
    margin-left: 0px;
  }
  section.service-details ul.nacc li .right-content h4 {
    margin-right: 0px;
  }
  section.service-details ul.nacc li.active {
    display: inline-block;
  }
  section.service-details ul.nacc li {
    display: none;
  }
  section.map .info-item {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  header .header-area {
    background-color: orange !important;
  }

  .header-area .main-nav .logo {
    line-height: 100px;
  }
  .background-header .main-nav .logo {
    line-height: 80px;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    display: none;
  }
  .slide-inner .header-text p {
    display: none;
  }
  .slide-inner .header-text {
    text-align: center;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }
  .slide-inner .header-text .div-dec {
    margin-left: auto;
    margin-right: auto;
  }
  .slide-inner .header-text .buttons {
    display: inline-flex;
  }
  .slide-inner .header-text .buttons .green-button {
    float: none;
  }
  .services .service-item i {
    margin-bottom: 35px;
  }
  section.about-us ul.nacc li span.item-title {
    font-size: 14px !important;
  }
  section.about-us ul.nacc li span.item {
    font-size: 13px;
  }
  .testimonials .item i {
    margin-bottom: 60px;
  }
  .testimonials .item img {
    max-width: 100px;
    right: 50px;
    top: 35px;
    transform: translateY(0);
  }
  .testimonials .item {
    padding: 50px;
  }
}


/* FULLY RESPONSIVE HOMEPAGE STYLES */

html, body {
  font-weight: 400;
  background-color: black;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.header-produk .subjudul {
  font-size: clamp(1rem, 4vw, 1.4rem);
  font-weight: 500;
  width: 100%;
}
.header-produk .header-section {
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--accent);
  width: 100%;
}

.box-header .header-section {
  font-size: clamp(1.5rem, 4vw, 3rem);
}

.container-news .header-section {
  font-size: clamp(1.5rem, 4vw, 3rem);
}

.organisasi .header-section {
  font-size: clamp(1.5rem, 4vw, 3rem);
}

.box-header .subjudul {
  font-size: clamp(1rem, 4vw, 1.4rem);
  font-weight: 500;
}
.subjudul, p, .coe-description {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #002f59;
}


.imageCarousel {
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  width: 100%;
}

.card-organisasi {
  width: 200px;
  height: auto;
  padding-top: 40px;
  border-radius: 12px;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.03);
}

.box-organisasi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

@media (max-width: 1200px) {
  .container-produk {
    height: 1000px;
  }

  .container-produk, .coe-section .box-coe {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .produk, .header-produk {
    flex: 1 1 100%;
    text-align: center;
    align-items: center;
  }
  .header-produk {
    margin-top: 2rem;
  }
}

@media (max-width: 992px) {
  .container-produk {
    gap: 0.6rem;
  }

  .produk {
    height: 400px;
  }

  .card-organisasi {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .container-produk {
    height: 650px;
  }

  .container-produk, .coe-section .box-coe {
    padding: 30px;
    flex-direction: column;
    align-items: center;
  }
  .header-produk, .produk {
    width: 100%;
    height: 400px;
    text-align: center;
  }

  .card-organisasi {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .container-produk {
    height: 600px;
  }

  .slide-inner .header-text h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .slide-inner .header-text p {
    font-size: 14px;
  }
  .container-coe {
    padding: 20px;
  }

  .image-items img {
    height: 200px;
    object-fit: cover;
  }
}


