*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
   min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
  
}
nav{
  position: sticky;
  top: 0; /* Sticks to the top of the viewport */
  overflow: hidden;
  z-index: 1000; /* Ensures it stays above other elements */
  background-color: white;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
nav ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav li{
  height: 80px;
}
nav a{
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
}
nav a:hover{
  background-color: #f0f0f0;
}
nav li:first-child{
  margin-right: auto;
}
.sidebar{
  position: fixed;
  top: 0; 
  right: 0;
  height: 100vh;
  width: 500px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li{
  width: 100%;
}
.sidebar a{
  width: 100%;
}
.menu-button{
  display: none;
}

/* Section Opening */
.opening {
  background-image: url(image/3.JPG);
  background-position: center; /* Menempatkan gambar di tengah */
  background-repeat: no-repeat; /* Mencegah pengulangan gambar */
  background-size: cover; /* Membuat gambar responsif */
  /* background: linear-gradient(to right, #141e30, #243b55); */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.content {
  animation: fadeIn 1.5s ease-in;
}

.logo {
  width: 150px;
  max-width: 80%;
  margin-bottom: 20px;
  animation: zoomIn 1s ease-out;
}

.content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.content p {
  font-size: 22px;
  margin-bottom: 25px;
  color: #ccc;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #00aced;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #007bb5;
}


/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.section-why {
      padding: 60px 20px;
      background-color: #ffffff;
      text-align: center;
    }

    .section-why h2 {
      font-size: 32px;
      margin-bottom: 20px;
      color: #333;
    }

    .card-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      width: 290px;
      padding: 30px 20px;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    }

    .card i {
      font-size: 36px;
      color: #046c4e;
      margin-bottom: 15px;
    }

    .card h3 {
      font-size: 20px;
      color: #222;
      margin-bottom: 10px;
    }

    .card p {
      font-size: 14px;
      color: #555;
      line-height: 1.5;
    }


   .card-containery {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .cardy {
      width: 300px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      background-color: #fff;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s;
    }

    .cardy:hover {
      transform: translateY(-5px);
    }

    .cardy img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .card-contentt {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .card-titles {
      font-size: 18px;
      font-weight: bold;
      color: #2c3e50;
      margin-bottom: 8px;
    }

    .card-desc {
      font-size: 14px;
      color: #555;
      margin-bottom: 12px;
    }

    .card-price {
      font-size: 20px;
      font-weight: bold;
      color: #27ae60;
      margin-bottom: 16px;
    }

    .btn {
      margin-top: auto;
      background-color: #046c4e;
      color: white;
      padding: 10px 0;
      text-align: center;
      text-decoration: none;
      border-radius: 8px;
      font-size: 16px;
      transition: background 0.3s;
    }

    .btn:hover {
      background-color: #06815e;
    }


 .carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* posisi di tengah halaman penuh */
    padding-top: 20px;
    padding-bottom: 10px;
    
  }

  .carousel {
    position: relative;
    width: 100%;
    max-width: 1700px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-slide {
    min-width: 100%;
  }

  .carousel-slide img {
    width: 100%;
    height: 900px;
    object-fit: cover;
    display: block;
  }

  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
  }

  .carousel-btn.prev {
    left: 15px;
  }

  .carousel-btn.next {
    right: 15px;
  }


    h2 {
      font-size: 3rem;
      text-align: center;
      margin-bottom: 20px;
    }

    .card-container {
    justify-content: center;
    align-items: center;
      display: flex;
      overflow-x: auto;
      gap: 16px;
      padding-bottom: 10px;
    }

    .card {
      flex: 0 0 auto;
      width: 400px;
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .card-content {
      padding: 16px;
    }

    .card-title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 8px;
      color: #333;
    }

    .card-description {
      font-size: 14px;
      color: #666;
    }

    /* Scrollbar styling (optional) */
    .card-container::-webkit-scrollbar {
      height: 8px;
    }

    .card-container::-webkit-scrollbar-thumb {
      background-color: #ccc;
      border-radius: 4px;
    }

    .card-container::-webkit-scrollbar-track {
      background-color: transparent;
    }

 .profile-container {
      max-width: 1500px;
      margin: 0 auto;
      padding: 40px 20px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      border-radius: 8px;
      margin-top: 40px;
    }

    .profile-header {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
    }

    .profile-image {
      flex: 1 1 150px;
      max-width: 150px;
      margin-right: 40px;
    }

    .profile-image img {
      width: 100%;
      border-radius: 50%;
      border: 4px solid #046c4e;
    }

    .profile-info {
      flex: 1 1 150px;
    }

    .profile-info h1 {
     margin-right: 200px;
      font-size: 2rem;
      color: #046c4e;
    }

    .profile-info p {
      margin-top: 10px;
    }

    .profile-content {
      margin-top: 30px;
    }

    .profile-content h2 {
      color: #046c4e;
      margin-bottom: 10px;
    }

    .profile-content p {
      margin-bottom: 20px;
    }
  

header {
  background-color: #046c4e;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  font-size: 2rem;
}

main {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.org-chart {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  font-weight: 500;
}

.level {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.box {
  background-color: #fff;
  padding: 1rem 2rem;
  border: 2px solid #046c4e;
  border-radius: 8px;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.box:hover {
  transform: scale(1.05);
  background-color: #e6f0ff;
}

h1 {
      text-align: center;
      margin-bottom: 30px;
      color: #333;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .gallery-item {
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      background-color: white;
    }

    .gallery-item img {
      width: 100%;
      height: 200px;
      object-fit: cover; /* gambar dipotong agar rapi */
      transition: transform 0.3s ease;
      display: block;
    }

    .gallery-item img:hover {
      transform: scale(1.05);
    }

    
.card-maps {
      background: #fff;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      max-width: 1900px;
      width: 100%;
      transition: transform 0.3s ease;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card-header {
      padding: 1rem 1.5rem;
      background: #046c4e;
      color: #fff;
      font-size: 1.25rem;
      font-weight: 600;
    }

    .card-map {
      position: relative;
      width: 100%;
      height: 0;
      padding-bottom: 56.25%; /* 16:9 ratio */
    }

    .card-map iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .card-footer {
      padding: 1rem 1.5rem;
      background: #fafafa;
      font-size: 0.9rem;
      color: #555;
    }


    

 




.whatsapp-circle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 1000;
  }
  .whatsapp-circle-btn:hover {
    background-color: #1ebe57;
  }
  .whatsapp-circle-btn img {
    width: 32px;
    height: 32px;
  }


 .wrapper {
      max-width: 960px;
      margin: 3rem auto;
      padding: 3rem;
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.8;
      font-size: 1.15rem;
    }

    .wrapper h1 {
      font-size: 2.2rem;
      color: #2c3e50;
      margin-bottom: 0.5rem;
      text-align: center;
    }

    .wrapper .meta {
      font-size: 1rem;
      color: #666;
      margin-bottom: 2rem;
      text-align: center;
    }

    .wrapper p {
      color: #333;
      margin-bottom: 1.5rem;
      text-align: justify;
    }

    .wrapper ul {
      margin-left: 2rem;
      margin-bottom: 1.5rem;
    }

    .wrapper ul li {
      margin-bottom: 0.75rem;
    }

    .wrapper .ttd {
      margin-top: 3rem;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .wrapper .ttd div {
      width: 45%;
      min-width: 200px;
    }

    .wrapper .ttd p {
      margin-bottom: 0.5rem;
    }

    @media (max-width: 768px) {
      .wrapper {
        padding: 2rem;
        margin: 1.5rem;
        font-size: 1.05rem;
      }

      .wrapper h1 {
        font-size: 1.8rem;
      }

      .wrapper .ttd {
        flex-direction: column;
        gap: 2rem;
      }

      .wrapper .ttd div {
        width: 100%;
      }
    }


    .disqus_thread{
      padding: 8px;
    }

/* Footer styling */
.footer {
  background-color: #222;
  color: #fff;
  padding: 30px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  color: #ccc;
}
.linkig{
  text-decoration: none;
  color: white;
}
.footer-social a {
  color: #fff;
  margin-left: 15px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #00aced;
}


@media(max-width: 800px){
  .hideOnMobile{
    display: none;
  }
  .menu-button{
    display: block;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    margin-top: 20px;
  }

  .footer-social a {
    margin: 0 10px;
  }
    .content h1 {
    font-size: 32px;
  }

  .content p {
    font-size: 18px;
  }

  .logo {
    width: 120px;
  }
  .card {
      width: 100%;
      max-width: 100%;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      background-color: #fff;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s;
  }
   .carousel-slide img {
      height: 300px;
    }

    .carousel-btn {
      font-size: 1.5rem;
    }
   .profile-header {
        flex-direction: column;
        text-align: center;
      }

      .profile-image {
        margin: 0 auto 20px auto;
      }

      .profile-info h1 {
        font-size: 1.5rem;
      }
    
    .box {
    min-width: 150px;
    padding: 1rem;
  }
  .gallery-item img {
        height: 250px;
    }

  .profile-info h1 {
     margin-right: 0;
      font-size: 2rem;
      color: #046c4e;
    }

   .card-containery {
        flex-direction: column;
        align-items: center;
      }
       .cardy {
      width: 450px;
    
    }
     
   

  
  
 
  
}
@media(max-width: 500px){
  .sidebar{
    width: 100%;
  }
  .profile-info h1 {
     margin-right: 0;
      font-size: 2rem;
      color: #046c4e;
    }
  .whatsapp-chat {
    bottom: 15px;
    right: 15px;
    max-width: 90%;
    flex-direction: column;
    align-items: flex-start;
  }

  .chat-button {
    width: 100%;
    justify-content: center;
  }
   .whatsapp-card {
        max-width: 90%;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .profile-img {
        margin-bottom: 10px;
      }

      .card-content {
        align-items: center;
      }
      .cardy {
      width: 350px;
    
    }
  .card {
      width: 100%;
      max-width: 100%;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      background-color: #fff;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s;
  }
  
   
}



#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  left: 20px; /* kiri bawah */
  z-index: 1000;
  background-color: #333;
  color: white;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #555;
  transform: scale(1.1);
}

#scrollToTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}


.contact-container {
    width: 100%;
    max-width: 450px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-header {
    margin-bottom: 20px;
}

.contact-header h1 {
    font-size: 24px;
    color: #075e54;
}

.contact-header p {
    font-size: 16px;
    color: #555;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.contact-details h2 {
    font-size: 20px;
    color: #075e54;
    margin-bottom: 10px;
}

.contact-details p {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #128c7e;
}

@media (max-width: 600px) {
    .contact-container {
        margin: 20px;
        padding: 15px;
    }

    .contact-header h1 {
        font-size: 20px;
    }

    .contact-img {
        width: 100px;
        height: 100px;
    }

    .contact-details h2 {
        font-size: 18px;
    }

    .contact-details p {
        font-size: 13px;
    }

    .whatsapp-button {
        padding: 10px 15px;
        font-size: 14px;
    }
}