*, html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



.topbar {
    background: linear-gradient(to right, #056034, #056034);
    color: #fff;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.topbar,
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.topbar-left span {
    margin-right: 25px;
    font-size: 14px;
}

.topbar-left i {
    margin-right: 6px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-fill {
    padding: 8px 18px;
    background: #fff;
    color: #137948;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.lang {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 14px;
}

.lang img {
    width: 20px;
    height: auto;
}

.navbar {
  background-color: #111;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: sticky;
  top: 48px;
  z-index: 999;
}

.nav-left {
  display: flex;
  align-items: center;
}

.logo {
  height: 38px;
  margin-right: 12px;
}

.company-name {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  margin-left: 22px;
  font-size: 15px;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #00bcd4;
}

.InputContainer {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  padding-left: 15px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.075);
}

.input {
  width: 170px;
  height: 100%;
  border: none;
  outline: none;
  font-size: 0.9em;
  caret-color: rgb(255, 81, 0);
}


.search-results-page {  
  padding: 0 20px;
  display: none;
  position: fixed;
  top: 115px;
  left: 0;
  width: 100%;
  height: calc(100vh - 210px);
  background: #fff;
  overflow-y: auto;
  z-index: 999;
  display: none;
  padding: 20px;
}

#searchInfo {
  font-size: 14px;
  color: #666;
  margin: 20px 0;
}

.search-item {
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.search-item a {
  font-size: 20px;
  font-weight: 600;
  color: #056034;
  text-decoration: none;
}

.search-item p {
  margin-top: 6px;
  font-size: 15px;
  color: #444;
}

#pagination {
  display: flex;
  gap: 8px;
  margin: 30px 0;
  flex-wrap: wrap;
}

#pagination button {
  padding: 8px 14px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 6px;
}

#pagination button.active {
  background: #056034;
  color: #fff;
  border-color: #056034;
}

.labelforsearch {
  cursor: text;
  padding: 0px 12px;
}

.searchIcon {
  width: 13px;
}

.border {
  height: 40%;
  width: 1.3px;
  background-color: rgb(223, 223, 223);
}

.micIcon {
  width: 12px;
}

.micButton {
  padding: 0px 15px 0px 12px;
  border: none;
  background-color: transparent;
  height: 40px;
  cursor: pointer;
  transition-duration: 0.3s;
}

.searchIcon path {
  fill: rgb(114, 114, 114);
}

.micIcon path {
  fill: rgb(255, 81, 0);
}

.micButton:hover {
  background-color: rgb(255, 230, 230);
  transition-duration: 0.3s;
}

.search-box input {
    padding: 7px 30px 7px 12px;
    border-radius: 20px;
    border: none;
    outline: none;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu .InputContainer {
  margin-right: 15px;
  height: 32px;
}

.site-footer {
  background-color: #3f3f3f;
  color: #ffffff;
  padding: 60px 80px 30px;
  font-family: Arial, sans-serif;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 200px;
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-address p {
  font-size: 14px;
  line-height: 1.6;
}

.company-title {
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 45px;
}

.footer-brand span {
  font-size: 14px;
}


.footer-social span {
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  color: #ffffff;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #00bcd4;
}

.footer-copy {
  margin-top: 30px;
  font-size: 13px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy a {
  color: #ffffff;
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #fff;
}

.about {
    display: flex;
    gap: 50px;
    padding: 80px 100px;
    align-items: center;
}

.about-text {
    width: 55%;
}

.about-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #056034;
}

.about-text p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
}

.about-image {
    width: 45%;
    position: relative;
}

.img-big img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.img-small {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
}

.img-small img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-radius: 47%;
}

@media (max-width: 900px) {
    .about {
        flex-direction: column;
        padding: 40px 20px;
    }

    .about-text,
    .about-image {
        width: 100%;
    }

    .img-small {
        position: static;
        margin-top: 20px;
        width: 150px;
        border-radius: 100%;
    }
}

.visi-misi {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 60px 80px;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.title {
    color: #056034;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.subtitle {
    color: #1d2b5f;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.card ul {
    padding-left: 20px;
}

.card ul li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 768px) {
    .visi-misi {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
}



.banner {
  position: relative;
  z-index: 2;
  height: 130%;
  display: flex;
  align-items: center;
  color: white;
}

.banner h1 {
  
  font-size: 37px;

}

.banner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;
  max-width: 900px;
}

.banner-title {
  font-size: 52px;
  font-weight: 700;
  color: #056034;
  margin-bottom: 20px;
}

.banner-desc {
  padding-left: 67px;
  font-size: 22px;
  font-weight: 30px;
  line-height: 1.6;
  color: white;
  max-width: 700px;
}

.banner-title,
.banner-desc {
  max-width: 700px;
}

.bg-zoom {
  position: absolute;
  inset: 0;
  background: url("img/background-kals.jpg") center/cover no-repeat;
  z-index: 2;
 
}

@keyframes zoomSmooth {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.imginx {
  height: 100vh;
}

.bg-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 14px;
}

.lang-btn img {
    width: 20px;
}

.arrow {
    border: solid white;
    border-width: 0 2px 2px 0;
    padding: 3px;
    transform: rotate(45deg);
    margin-left: 4px;
}

.lang-menu {
    position: absolute;
    top: 35px;
    right: 0;
    background: #056034;
    list-style: none;
    padding: 8px 0;
    border-radius: 6px;
    display: none;
    min-width: 100px;
}

.lang-menu li {
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #fff;
}

.lang-menu li:hover {
    background: rgba(255,255,255,0.2);
}

.lang-menu img {
    width: 20px;
}


.bg-zoom1 {
  position: absolute;
  inset: 0;
  background: url("img/background-ats2.jpg") center/cover no-repeat;
  animation: zoomSmooth 10s ease-in-out infinite;
  z-index: 1;
}

@keyframes zoomSmooth {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.imginx1 {
  height: 79vh;
}

.bg-wrapper1 {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-wrapper1 h1 {
  font-size: 1000px;
  font-weight: 1000px;
  color: #056034;
}


.bg-zoom2 {
  position: absolute;
  inset: 0;
  background: url("img/background-atsa.jpg") center/cover no-repeat;
  animation: zoomSmooth 10s ease-in-out infinite;
  z-index: 1;
}

@keyframes zoomSmooth {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.imginx2 {
  height: 45vh;
}

.bg-wrapper2 {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-zoom3 {
  position: absolute;
  inset: 0;
  background: url("img/background produk.jpeg") center/cover no-repeat;
  animation: zoomSmooth 10s ease-in-out infinite;
  z-index: 1;
}

@keyframes zoomSmooth {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.imginx3 {
  height: 79vh;
}

.bg-wrapper3 {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-wrapper3 h1 {
  font-size: 1000px;
  font-weight: 1000px;
  color: #056034;
}

.textteray2 {
  align-content: center;
  position: absolute;
  bottom: 150px;
  left: 560px;
  z-index: 2;
  color: #056034;
  max-width: 600px;
}

.textteray2 h1 {
    font-size: 63px;
    line-height: 1.4;
}

.textteray h1 {
    font-size: 63px;
    line-height: 1.4;
}

.lang-dropdown.active .lang-menu {
    display: block;
}

.lang-menu a {
  text-decoration: none;
  color: white;
}

.textteray {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}


[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}


[data-aos].aos-animate {
  opacity: 1;
}


.textteray h1 {
  font-size: 63px;
  line-height: 1.4;
}

.section-1-desc {
  font-weight: 30px;
  font-size: 20px;
}

.product-section {
  position: relative;
  padding: 40px 60px;
}

.product-wrapper {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.product-wrapper::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
  padding: 20px;
  text-align: center;
  transition: .3s;
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card h4 {
  margin-top: 15px;
  font-size: 16px;
}

.product-section {
  padding: 60px;
}

.product-row-wrapper {
  position: relative;
  margin-bottom: 40px;
}

.product-row {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 15px 60px;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.product-row:active {
  cursor: grabbing;
}

.product-row::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 auto;
}

.product-card img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}


.product-card {
  min-width: 260px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}


.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #056034;
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.scroll-btn.left { left: 10px; }
.scroll-btn.right { right: 10px; }

.scroll-btn:hover {
  background: #044b2a;
}

.product-row {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; 
  scroll-snap-type: x mandatory;
}

.product-card {
  scroll-snap-align: start;
}

.product-row {
  cursor: grab;
}

.product-row.dragging {
  cursor: grabbing;
}

.product-row img,
.product-row p {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}



.card1 {
    background: #dbd5d5;
    padding: 20px;
    text-align: center;
    border-radius: 6px;
}

.card1 img {
    width: 100%;
    height: 380px;
    object-fit: contain;
    background: #dbd5d5;
}

.card1 p {
    margin-top: 15px;
    font-size: 14px;
    color: #000;
}

.maps-frmg {
  margin-top: 40px;
  margin-left: 50px;
}

.contact {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px; 

}

.contact h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #056034;
}

.contact .desc {
  color: #555;
  margin-bottom: 40px;
}

.contact-box {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  cursor: pointer;
}

.contact-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.icon {
  font-size: 28px;
  color: #7b8794;
  transition: all 0.35s ease;
}

.contact-box:hover .icon {
  color: #0a58ca;
  transform: scale(1.15);
}

.text h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.text p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}



.map-section {
  width: 100vw;                 
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin: 0;
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 450px;                
  border: 0;
  display: block;
}

.partner-section {
  padding: 80px 20px;
  background: #f8f9fa;
  text-align: center;
}

.partner-section h1 {
  font-size: 36px;
  color: #056034;
  margin-bottom: 10px;
}

.partner-desc {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.text-company {
  max-width: 1040px;      
  margin: 0 auto 40px;   
  text-align: center;    
  font-size: 20px;
  line-height: 1.7;
  color: #000;
  margin-top: -60px;
  text-align: left;
}


.epmb {
  color: #056034;
  font-weight: 700;
  display: inline-block;
}

.partner-desc1 {
  display: flex;
  font-size: 20px;
  gap: 30px;
  padding: 30px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

.partner-card {
  background: #fff;
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.35s ease;
  width: 100%;
  max-width: 320px;
}

.partner-card img {
  max-width: 100%;
  height: 120px;
  object-fit: contain;
}

.partner-card:hover {
  transform: translateY(-8px);
  filter: grayscale(0);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.partner-grid {
  justify-items: center;
}

.partner-card:last-child {
  grid-column: 1 / -1;
  max-width: 350px;
}

.partner-card:hover {
  transform: translateY(-10px) scale(1.03);
}


.partner-cta {
  margin-top: 60px;
}

.partner-cta a {
  background: #056034;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.partner-cta a:hover {
  background: #044b2a;
}


@media (max-width: 600px) {
  .partner-section h1 {
    font-size: 28px;
  }
}

pre {
  display: flex;
  padding-left: 20px;
  margin-left: 20px;
}

.vsift {
  font-size: 20px;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-overlay.active {
  display: flex;
}


.popup-box {
  position: relative;
  background: #fff;
  padding: 10px;          
  border-radius: 12px;
  width: 95%;             
  max-width: 1100px;
}


.popup-box img {
  width: 100%;
  max-height: 40vh;       
  object-fit: contain;
  border-radius: 8px;
}

.popup-box h3 {
  font-size: 20px;
}

.popup-box p {
  font-size: 20px;
}

.popup-box1 {
  position: relative;
  background: #fff;
  padding: 10px;          
  border-radius: 12px;
  width: 95%;             
  max-width: 1100px;
}




.popup-box,
.popup-box1 {
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 25px 30px;
    line-height: 1.7;
    font-size: 18px;  
}

.popup-box p,
.popup-box1 p {
    text-align: justify;
    margin-bottom: 14px;
    font-size: 18px;
    color: #333;
}

.popup-box h3 {
  text-align: center;
}

.popup-box h2 {
  text-align: center;
}

.popup-box p,
.popup-box ul li {
    font-size: 18px;
}

.popup-box1 img {
  width: 100%;
  max-height: 80vh;       
  object-fit: contain;
  border-radius: 8px;
}



.popup-box1 h3 {
  font-size: 20px;
}

.popup-box1 p {
  font-size: 20px;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: #056034;
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-close:hover {
  background: #044b2a;
}

@media (max-width: 768px) {

  .popup-box {
    width: 95%;
    max-width: none;
    padding: 6px;
    border-radius: 12px;
  }

  .popup-box img {
    max-height: 80vh;   
  }

  .popup-close {
    width: 32px;
    height: 32px;
    font-size: 20px;
    top: 8px;
    right: 8px;
  }
}

.product-row img,
.product-row p {
  pointer-events: none;
}

.popup-items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.popup-item {
  width: 220px;
  text-align: center;
}

.popup-item img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.popup-item p {
  margin-top: 8px;
  font-size: 14px;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-overlay.active {
  display: flex;
}

.no-scroll {
  overflow: hidden;
}

.news-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-left: 25px;
  gap: 20px;
}

.news-item {
  cursor: pointer;
}

.news-thumb {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 6px;
  background: #eee;
}

.news-info {
  margin-top: 10px;
}

.news-date {
  font-size: 12px;
  color: #777;
  margin-bottom: 6px;
}

.news-title {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.page-control {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.page-control button {
  border: none;
  padding: 8px 14px;
  background: #e5e5e5;
  cursor: pointer;
  border-radius: 4px;
}

.page-control button:hover {
  background: #056034;
  color: white;
}

#currentPage {
  padding: 8px 14px;
  border: 1px solid #ccc;
}

@media (max-width: 1024px) {
  .news-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  body {
    padding: 15px;
  }

  .news-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-thumb {
    height: 200px;
  }

  h2 {
    font-size: 18px;
  }

  .page-control button {
    padding: 6px 10px;
  }
}

.jdlbr{
   margin-left: 50px;
   margin: 15px;

}

.news-detail {
  max-width: 960px;
  margin: 80px auto;
  padding: 0 20px;
}

.news-title1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
}

.news-date1   {
  font-size: 16px;
  color: #777;
  margin-bottom: 50px;
}

.news-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.news-logo img {
  width: 300px;
  height: auto;
}

.news-content1 p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .news-title {
    font-size: 30px;
  }

  .news-content p {
    font-size: 16px;
  }
}


.landing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    gap: 50px;
}

.landing-left {
    max-width: 520px;
}

.company-label {
    display: inline-block;
    font-size: 35px;
    color: #056034;
    border-bottom: 2px solid #056034;
    padding-bottom: 6px;
    margin-bottom: 20px;
}

.main-title {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 32px;
}

.main-button {
    display: inline-block;
    background: #056034;
    color: #fff;
    padding: 14px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.main-button:hover {
    background: #056034;
}

.landing-right {
    position: relative;
    width: 520px;
}

.photo-wrap {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
}

.photo-wrap img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.photo-shadow {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 100%;
    height: 100%;
    background: #056034;
    border-radius: 16px;
    z-index: 1;
}

.social-info {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 14px;
    color: #555;
}

.social-info::before {
    content: "";
    flex: 1;
    height: 2px;
    background: #ddd;
}

.info-area {
    padding: 100px 8%;
    position: relative;
    overflow: hidden;
}


.info-layout {
    display: flex;
    align-items: center;
    gap: 90px;
    position: relative;   
    z-index: 1;
}

.info-left img {
    width: 270px;
}

.info-right {
    max-width: 520px;
}

.info-title {
    font-size: 50px;
    color: #056034;
    margin-bottom: 22px;
}

.info-desc {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 34px;
    color: #333;
}

.info-link {
    display: inline-block;
    background: #056034;
    color: #fff;
    padding: 14px 38px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.info-link:hover {
    background: #056034;
}

.sertifikat-section {
  width: 100%;
}

.sertifikat-header {
  background: #056034;
  text-align: center;
  padding: 50px 0 35px;
}

.sertifikat-header h1 {
  font-size: 54px;
  letter-spacing: 6px;
  color: white;
}

.line {
  width: 85%;
  height: 2px;
  background: white;
  margin: 25px auto 0;
}

.sertifikat-content {
  background: #ffffff;
  padding: 50px 0 70px;
  display: flex;
  justify-content: center;
  gap: 35px;
}

.sertifikat-content img {
  width: 320px;
  background: #fff;
  padding: 10px;
  border: 1px solid #ddd;
}

.nm61q h3 {
  color: #000;
}

.latest-section {
  padding: 60px 80px;
  background-color: white;
}

.latest-section .container,
.latest-section .latest-wrapper {
    background: transparent;
}

.latest-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.latest-text {
  font-size: 26px;
  font-weight: 600;
  color: #1f1f1f;
  white-space: nowrap;
}

.latest-divider {
  flex: 1;
  height: 2px;
  background: #ddd;
}

.latest-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.latest-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.latest-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.latest-body {
  padding: 20px;
}

.latest-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #222;
}

.latest-time {
  font-size: 14px;
  color: #888;
}

.text-brtw {
  text-decoration: none;
}

.banner h1 {
  font-size: 37px;
  color: #056034;
}

.strategi {
  text-align: center;
  margin-top: 10px;
  background-color: #056034;
  padding: 30px 0 25px;

  
}

.strategi h2 {
  font-size: 40px;
  text-align: center;
  color: white;
}

.nilai-perusahaan {
  position: relative;
  padding: 60px 40px;
  background-image: url("img/logo.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 105px;
  margin-left: 40px ;
}

.nilai-perusahaan h2 {
  color: #056034;
  font-size: 32px;
  margin-bottom: 30px;
  padding-left: 70px;
}

.nilai-perusahaan ol {
  padding-left: 20px;
}

.nilai-perusahaan li {
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 19px;
}

.nilai-perusahaan strong {
  color: #056034;
}

.nilai-perusahaan {
  position: relative;
  overflow: hidden;
}

.nilai-perusahaan * {
  position: relative;
  z-index: 1;
}

.nilai-perusahaan::after {
  content: "";
  position: absolute;
  right: -260px;
  bottom: -120px;
  width: 520px;
  height: 520px;
  background: #056034;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.news-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-content {
  padding: 15px;
}

.news-date {
  font-size: 13px;
  color: #777;
}

.news-title {
  font-size: 16px;
  font-weight: bold;
  margin: 8px 0;
}

.news-link {
  color: #056034;
  text-decoration: none;
  font-size: 14px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 8px;
}

.pagination button {
  border: none;
  background: #f2f2f2;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 6px;
}

.pagination button.active {
  background: #056034;
  color: #fff;
}

.pagination button:hover {
  background: #ddd;
}

.jdl1r82 {
  font-size: 27px;
  padding-left: 50px;
  padding: 20px;
  color: #056034;
  font-weight: 20px;
}

.featured-news,
.news {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
} 

.news-title-main {
  font-size: 37px;
  color: #056034;
  font-weight: 600;
  margin-bottom: 30px;
  padding: 15px;
  padding-top: 20px;
}

.clear-search {
  background: none;
  border: none;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  display: none;
  margin-right: 6px;
}

.clear-search:hover {
  color: #056034;
}

.close-search {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #056034;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.close-search:hover {
  background: #056034;
}


.canvas-area{
    max-width:1050px;
    margin:50px auto;
    padding:0 25px;
}

.page-tag{
    font-size:26px;
    font-weight:500;
    margin-bottom:40px;
}

.unit-showcase{
    display:flex;
    gap:40px;
    align-items:center;
    margin-bottom:45px;
}

.media-pane{
    width:48%;
}

.media-pane img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.text-pane{
    width:52%;
}

.title-line{
    font-size:17px;
    font-weight:500;
    margin-bottom:8px;
}

.sub-line{
    font-size:13px;
    color:#777;
    margin-bottom:15px;
}

.desc-line{
    font-size:14px;
    line-height:1.6;
    color:#444;
}

.split-line{
    height:1px;
    background:#ececec;
    margin:30px 0;
}

@media(max-width:900px){
    .unit-showcase{
        flex-direction:column;
    }

    .media-pane,
    .text-pane{
        width:100%;
    }

    .media-pane img{
        height:220px;
    }
}

.menu-toggle {
  display: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: #111;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
  }

  .nav-menu a {
    margin: 10px 0;
    font-size: 16px;
  }

  .nav-menu.active {
    display: flex;
  }

  .InputContainer {
    width: 100%;
    margin-bottom: 15px;
  }

  .input {
    width: 100%;
  }

  .topbar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .navbar {
    padding: 0 20px;
  }
}

.latest-list {
  display: flex;
  gap: 20px;
}

.latest-card {
  flex: 1;
}

@media (max-width: 768px) {
  .latest-list {
    flex-direction: column;
    gap: 15px;
  }

  .latest-card {
    width: 100%;
  }

  .latest-image img {
    width: 100%;
    height: auto;
  }

  .latest-title {
    font-size: 16px;
  }

  .latest-time {
    font-size: 12px;
  }
}

.latest-card {
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 768px) {

  .latest-section {
    padding: 20px 15px;
  }

  .latest-head {
    text-align: center;
  }

  .latest-text {
    font-size: 20px;
  }

  .latest-divider {
    margin: 8px auto 20px;
    width: 60px;
  }

  .latest-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .latest-card {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
  }

  .latest-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .latest-body {
    padding: 12px;
  }

  .latest-title {
    font-size: 15px;
    line-height: 1.4;
  }

  .latest-time {
    font-size: 12px;
    display: block;
    margin-top: 5px;
  }

  .text-brtw {
    text-decoration: none;
    color: inherit;
    display: block;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

.topbar,
.navbar,
.imginx,
.landing,
.info-area,
.latest-section,
.site-footer {
  width: 100%;
  margin: 0;
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .topbar,
  .navbar {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 768px) {

  .textteray h1 {
    font-size: 26px;
    text-align: center;
  }

  .about {
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
  }

  .about-text h1 {
    font-size: 20px;
    text-align: center;
  }

  .about-text p {
    font-size: 14px;
    text-align: justify;
  }

  .about-image {
    width: 100%;
  }

  .img-big img,
  .img-small img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .img-small {
    margin-top: 10px;
  }

  .visi-misi {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 15px;
  }

  .card {
    width: 100%;
  }

  .card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .title {
    font-size: 18px;
    text-align: center;
  }

  .vsift {
    font-size: 14px;
  }

  .nilai-perusahaan {
    padding: 20px 15px;
  }

  .nilai-perusahaan h2 {
    font-size: 20px;
    text-align: center;
  }

  .nilai-perusahaan ol {
    font-size: 14px;
    padding-left: 18px;
  }

  body {
    overflow-x: hidden;
  }
}

@media (max-width: 768px) {

  .topbar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .topbar-left {
    flex-direction: column;
    gap: 5px;
  }

  .topbar-right {
    margin-top: 5px;
  }

  .company-name {
    font-size: 14px;
  }

  .logo {
    width: 35px;
  }

  .textteray h1 {
    font-size: 28px;
    text-align: center;
  }

  .product-section {
    padding: 20px 10px;
  }

  .product-section h2 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 10px;
  }

  .product-section p {
    font-size: 13px;
    text-align: center;
  }

  .product-row-wrapper {
    position: relative;
  }

  .product-row {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 10px 5px;
    scroll-snap-type: x mandatory;
  }

  .product-row::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    min-width: 140px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .product-card p {
    font-size: 12px;
    text-align: center;
  }

  .scroll-btn {
    display: none;
  }

  .popup-box,
  .popup-box1 {
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
  }

  .popup-box img,
  .popup-box1 img {
    width: 100%;
    height: auto;
  }

  .footer-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  body {
    margin: 0;
    overflow-x: hidden;
  }
}

@media (max-width: 768px) {

  .partner-section .partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px 15px;
  }

  .partner-section .partner-card {
    padding: 10px;
    border-radius: 12px;
  }

  .partner-section .partner-card img {
    max-height: 60px;
  }

}

@media (max-width: 768px) {

  .contact-page .topbar {
    flex-direction: column;
    gap: 5px;
    text-align: center;
    padding: 10px;
  }

  .contact-page .topbar-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 12px;
  }

  .contact-page .topbar-right {
    margin-top: 5px;
  }

  .contact-page .navbar {
    padding: 10px 15px;
  }

  .contact-page .company-name {
    font-size: 12px;
  }

  .contact-page .logo {
    height: 35px;
  }

  .contact-page .contact {
    padding: 30px 15px;
  }

  .contact-page .contact-box {
    padding: 12px;
  }

  .contact-page .contact-box h3 {
    font-size: 13px;
  }

  .contact-page .contact-box p {
    font-size: 11px;
  }

  .contact-page .map-section iframe {
    height: 220px;
  }

}

@media (max-width: 768px) {

  .landing {
    flex-direction: column;
    padding: 30px 15px;
    gap: 20px;
  }

  .landing-left {
    text-align: center;
  }

  .company-label {
    font-size: 12px;
  }

  .main-title {
    font-size: 20px;
    line-height: 1.4;
  }

  .main-button {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    padding: 10px 20px;
  }

  .landing-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .photo-wrap {
    width: 100%;
  }

  .photo-wrap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .photo-shadow {
    display: none;
  }

  .social-info {
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
  }

  .info-layout {
    flex-direction: column;
    padding: 30px 15px;
    gap: 20px;
    text-align: center;
  }

  .info-left {
    width: 100%;
  }

  .info-left img {
    width: 120px;
    height: auto;
    margin: 0 auto;
  }

  .info-right {
    width: 100%;
  }

  .info-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .info-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .info-link {
    display: inline-block;
    font-size: 14px;
    padding: 10px 20px;
  }

  
}


.bg-wrapper {
  position: relative;
}

@media (max-width: 768px) {

  .imginx {
    height: auto; 
  }

  .bg-wrapper {
    overflow: visible; 
  }

  .bg-zoom {
    z-index: 1; 
    height: 250px;
    background-position: center;
  }

  .banner {
    position: relative;
    z-index: 2;
    padding: 30px 15px;
    text-align: center;
  }

  .banner-title {
    font-size: 16px; 
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .banner-desc {
    font-size: 16px;
    line-height: 1.4;
    max-width: 90%;
    padding-right: 20px;
    padding-left: 20px;
  }

}
@media (max-width: 768px) {
  .imginx {

    display: flex;
    flex-direction: column;
    justify-content: flex-start; 

  }
}

@media (max-width: 768px) {

  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
  }

  body {
    padding-top: 70px;
  }

}

@media (max-width: 768px) {

  .product-section h2 {
    font-size: 16px;
    text-align: center;
  }

  .product-card {
    min-width: 140px;
    max-width: 140px;
    padding: 8px;
  }

  .product-card img {
    height: 100px;
  }

  .product-card p {
    font-size: 12px;
  }

  .scroll-btn {
    display: none; 
  }

}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}
.bg-wrapper1 h1 {
  font-size: 60px;
}
@media (max-width: 768px) {
  .textteray h1 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {

  .sertifikat-header h1 {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .sertifikat-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 10px;
  }

  .sertifikat-content img {
    width: 90%;
    max-width: 300px;
  }

}

@media (max-width: 768px) {
  .textteray h1 {
    font-size: 28px;
    text-align: center;
  }

  .imginx1 {
    height: 40vh;
  }

  .bg-wrapper1 {
    padding: 0 15px;
  }
  .news-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 20px;
    padding: 0 15px;
  }
  .news-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  .news-title-main {
    font-size: 24px;
    text-align: center;
}

}

@media (max-width: 768px) {

  .banner {
    padding: 20px 15px;
    text-align: center;
    max-width: 100%;
  }

  .banner-title {
    font-size: 22px; 
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .banner-desc {
    font-size: 14px; 
    line-height: 1.5;
    max-width: 100%;
    margin: 0 auto;
  }

}

.banner-desc {
  word-break: break-word;
}

@media (max-width: 768px) {
  .banner-desc {
    font-size: 14px;
    line-height: 1.5;
    max-width: 900px;
  }
}
@media (max-width: 768px) {
  .imginx {
    height: auto;
  }
}