.otline {
  border: 1px solid lightgreen;
  margin-top:20px !important;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(10px) !important;
}

@media screen and (max-width: 991px) {
  .otline {
  border: none;
  }    
}



* {
  box-sizing: border-box;
}

/*
* {
    outline: 2px solid red; 
}
*/

* {
  outline: none !important;
}

h3, h4 {
    margin: .3rem;
}
/*=========================================*/
.custom-file-upload {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            border: 2px dashed #3399ff;
            background-color: #f9fcff;
            color: #3399ff;
            cursor: pointer;
            border-radius: 10px;
            padding: 40px 20px;
            text-align: center;
            transition: all 0.3s ease;
          }
    .upload-area {
      border: 2px dashed #007bff;
      background-color: #fff;
      padding: 40px 20px;
      border-radius: 10px;
      text-align: center;
      color: #007bff;
      cursor: pointer;
    }

    .upload-area:hover {
      background-color: #eef7ff;
    }

    input[type="file"] {
      display: none;
    }

    .status {
      margin-top: 15px;
      padding: 10px;
      border-radius: 8px;
      font-size: 15px;
      display: none;
    }

    .success {
      background-color: #eafaf0;
      color: #2e7d32;
      border: 1px solid #4CAF50;
    }

    .error {
      background-color: #fcebea;
      color: #c0392b;
      border: 1px solid #e74c3c;
    }
  
  
    .form-container {
      background: #fff;
      max-width: 700px;
      margin: auto;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }

    label {
      display: block;
      margin-top: 15px;
      margin-bottom: 5px;
      font-weight: bold;
    }

    input[type="text"],
    input[type="time"],
    input[type="tel"],
    select,
    textarea {
      width: 100%;
      padding: 10px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 16px;
      box-sizing: border-box;
      transition: border 0.3s;
    }
    input[type="date"]
    {      
      padding: 10px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 16px;
      box-sizing: border-box;
      transition: border 0.3s;
    }

    input:focus, textarea:focus, select:focus {
      border-color: #4CAF50;
      outline: none;
    }

    textarea {
      resize: vertical;
      min-height: 100px;
    }

    .info-text {
      font-size: 13px;
      color: #666;
      margin-top: 4px;
      margin-bottom: 10px;
    }

    input[type="file"] {
      padding: 10px;
    }

    .submit-btn {
      background: #4CAF50;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      cursor: pointer;
      margin-top: 20px;
      width: 100%;
    }

    .submit-btn:hover {
      background: #45a049;
    }


/*================*/



.iklan-popup-box {
  position: fixed; /* Tambahkan ini */
  top: 0; /* Supaya nempel layar atas */
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999; /* Tambahkan ini agar di atas semua */
  background-color: rgba(0, 0, 0, 0.2); /* Tambahan overlay semi-transparan */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.iklan-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.4);
  z-index: 9999;
  display: none; /* Akan diaktifkan via JS */
  justify-content: center;
  align-items: center;
}
.iklan-popup-img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}



/*================================= */


.super-button {
  position: fixed;
  height:30px;
  right:10px;
  bottom:30px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0f0f0f, #1c1c1c);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: white;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  z-index: 999;
}
.super-button.shifted {
  right: 110px; /* geser ke kiri */
}
@media screen and (max-width: 768px) {
  .super-button {
    width: 35px;
    height: 35px;
    padding: 0; /* Jangan pakai padding besar */
    border-radius: 50%;
    justify-content: center;
    align-items: center;
  }

  .wa-icon {
    width: 28px;
    height: 28px;
    margin-top:4px;
  }
.super-button a.wa-text {
  color: white !important;
  text-decoration: none;
}
.super-button .wa-text,
.super-button .span {
  color: white !important;
  text-decoration: none;
}
.super-button a.wa-text:hover {
  color: white;
  text-decoration: none;
}

}

.super-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #00ffff, #ff00ff, #00ffff);
  animation: rotate 4s linear infinite;
  z-index: -2;
}

.super-button::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #0a0a0a;
  border-radius: inherit;
  z-index: -1;
}

.super-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
}
.wa-icon {
  width: 24px;
  height: 24px;

  }

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/*------------------------------- */

@media (max-width: 768px) {
.glow {
    min-width:80%;
}
    
}
.glow{
  width: 25%;
  background: white;
  text-align: center;
  position: relative;
  padding:10px;
  min-height:230px;
}

@property --angle{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}


.glow::after, .glow::before{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(from var(--angle), green, blue, gold,green,red);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 3px;
  animation: 3s spin linear infinite;
}
.glow::before{
  filter: blur(1.5rem);
  opacity: 0.5;
}
@keyframes spin{
  from{
    --angle: 0deg;
  }
  to{
    --angle: 360deg;
  }
}
.glow-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  background: url("../icon.png") no-repeat center;
  background-size: contain;
  opacity: 0.1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 88;
}

/* Style 3: Neumorphism */
.style3 {
  padding: 10px;
  background: #e0e0e0;
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start; /* atau center */
    min-height:230px;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.style3:hover {
  box-shadow: inset 7px 7px 15px #bebebe, inset -7px -7px 15px #ffffff;
}


/*================dock=============*/
.dockz-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 10px 0;
  text-align: center;
}

.dockz-item {
  background: white;
    backdrop-filter: blur(10px); /* blur modern */
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  padding: 10px;

  transition: transform 0.3s ease;
  outline: 2px solid green;
}

.dockz-item:hover {
  transform: translateY(-5px);
}

.dockz-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.dockz-title {
  font-size: 1.2em;
  margin-bottom: 5px;
  color: #333;
}

.dockz-subtitle {
  font-size: 0.95em;
  color: #666;
}

@media (max-width: 768px) {
  .dockz-container {
    flex-direction: column;
    align-items: center;
    padding: 30px 10px;
  }

  .dockz-item {
    width: 90%;
    margin-bottom: 20px;
  }
}

/*======================dock*/

/*======================================frame profile foto */
.frame-container {
  padding: 10px 10px 10px;
  border: 3px solid #00c896;
  background-color: transparent;
  box-shadow: 0 8px 20px rgba(0, 200, 150, 0.2);
  transition: all 0.3s ease;
  max-width: 95%;
  margin:auto;
  margin-bottom:10px;
}

.frame-container:hover {
  box-shadow: 0 12px 28px rgba(0, 200, 150, 0.35);
  transform: scale(1.02);
}

.frame-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
}

/*======================================frame profile foto */

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animated-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -100; /* Supaya elemen ini ada di belakang konten lain */

  background: linear-gradient(-45deg, white, white, #f7fac8, #b8f2ca, white, white);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
}
/*======================================================================================================================================gradient animated  */





/* Loading Overlay kontak kami */
    #loadingOverlay {
      display:none; position:fixed; inset:0;
      background:rgba(0,0,0,.6); color:#fff;
        backdrop-filter: blur(20px); /* blur modern */
      font-size:1.3rem; text-align:center;
      padding-top:20vh; z-index:9999;
    }
    /* Popup */
    #popupBox {
      display:none; position:fixed; top:50%; left:50%;
      transform:translate(-50%,-50%);
      background:#fff; padding:1.5rem 2rem;
      border-radius:12px; box-shadow:0 8px 25px rgba(0,0,0,.25);
      z-index:10000; width:90%; max-width:380px; text-align:center;
    }
    #popupBox button { margin-top:1rem; }

                                        /* Bungkus form agar di tengah layar */

/* Baris form (label + input) */
.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  align-items: center;
  text-align: left;
}

/* Label form - kiri */
.form-row label {
  flex: 0 0 180px;
  margin: 0 6px 6px 0;
}

/* Input/select/textarea - kanan */

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="number"],
.form-row input[type="date"],
.form-row select,
.form-row textarea {
  flex: 1;
  min-width: 200px;
  height: 40px;
  padding: 8px 10px;
  font-size: 14px;
  border: 1px solid grey;
  border-radius: 4px;
  font-family: inherit;
}

/* Textarea lebih tinggi */
.form-row textarea {
  height: 80px;
  resize: vertical;
}

/* Responsive adjustment untuk layar kecil */
@media (max-width: 576px) {
  .form-row {
    flex-direction: column;
    align-items: stretch;
  }

  .form-row label {
    flex: none;
    width: 100%;
    margin-bottom: 4px;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    width: 100%;
  }
}
.checkbox-row {
    flex-direction: row; /* jadi horizontal */
    gap: 10px;
    margin-bottom: 20px;
    text-align: justify;
}

.checkbox-row input[type="checkbox"] {
  margin-top: 5px; /* sejajarkan lebih rapi dengan awal teks */
  flex-shrink: 0;  /* ðŸ‘‰ mencegah checkbox mengecil */
}

.checkbox-row label {
  font-size: 14px;
  line-height: 1.4;
}



/*=====================================end form */
.floating-container {
  position: fixed;
  bottom: 60px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  background-color: #25D366;
  color: white;
  font-size: 20px;
  padding: 12px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s;
}

.floating-btn:hover {
  background-color: #128C7E;
}

#backToTop {
  background-color: #75A5C7;
  display: none;
}

#backToTop:hover {
  background-color: #0056b3;
}
  



.bordkanan {
  position: fixed;
  bottom: 10px;
  right: 1px;
  max-width: 5%;
  height: auto;
  z-index:-5;
}
.bordkiri {
  position: fixed;
  top: 10px;
  left: 1px;
  max-width: 5%;
  height: auto;
    z-index:-5;
}
.container {
    margin:0 auto;
}
#wowslider-container1 .ws_prev,
#wowslider-container1 .ws_next,
#wowslider-container1 .ws_bullets,
#wowslider-container1 .ws_pause {
    display: none !important;
}

#beranda {
  box-sizing: border-box;
}

#wowslider-container1 {
  width: 100%;
  max-width: 100%;
  height: auto; /* Gunakan rasio alami gambar */
  aspect-ratio: 16 / 9; /* Atau 4 / 3 tergantung rasio slider kamu */
  overflow: hidden;
  top:-10px;
  position: relative;
  border-radius: 4px;
}

#wowslider-container1 img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Gambar akan proporsional dan tidak terdistorsi */
}

/* Sembunyikan panah dan tombol pause */
#wowslider-container1 .ws_prev,
#wowslider-container1 .ws_next,
#wowslider-container1 .ws_pause {
  display: none !important;
}
  .ws_bullets {
    display: none !important;

}
/*==============profil 4 kolom */
.containerbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px 10px;
  margin: 0 auto;
  max-width: 1200px;
  box-sizing: border-box;
}

.cardbox {
  flex: 0 0 calc(33.333% - 20px); /* 3 per baris dengan gap */
  max-width: calc(33.333% - 20px);
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 8px;
}

.cardbox img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 6px;
}

.box2 {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 4px;
}

.box3 {
  font-size: 1em;
  color: #555;
}

/* Responsive: 2 di tablet, 1 di hp */
@media (max-width: 991px) {
  .cardbox {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

@media (max-width: 600px) {
  .cardbox {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/*==============profil 4 kolom */

    /* Tambahkan CSS ini untuk background */

p {
text-align: justify;
}
*, *::before, *::after {
  box-sizing: border-box;
}
body
    {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        overflow-x: hidden;
        
    }
    

/* Mode mobile (max 760px) */
@media screen and (max-width: 991px) {
  .custom-navbar {
    display: none;
      }
}

.burger-icon {
  margin-left: -10px; /* geser ke kiri */
 margin-right:0px;
}

/* Mode desktop (min 761px) */
@media screen and (min-width: 992px) {
    .custom-navbar {
    display: block;
      }
    .bottom-bar {
    display: none;
  }
}
/* bottom burger Sembunyikan di desktop */
@media screen and (max-width: 991px) {
      .custom-navbar {
    display: none;
      }.bottom-bar {
    display: block;
  }
}

/* Bottom bar with blur and transparency */
/* Bottom bar */

.bottom-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: transparent; /* transparan seperti custom-navbar */
  backdrop-filter: blur(10px); /* blur modern */
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  text-align: right;
}

/* Tulisan Kiri (Menu) */
                    .menu-left {
                      font-size: 16px;
                      font-weight: 300;
                      text-transform: uppercase;
                      color: black;
                      text-align:left;
                      cursor: pointer;
                      text-shadow: 0 2px 0 white, 0 0 2px black;
                      transition: all 0.2s ease-in-out;
                      width:80%;
                    }
                    
                    .menu-left:hover {
                      color: gold;
                      transform: scale(1.1);
                    }
                    
                    /* Kanan (Logo) */
                    .logo-right img {
                        bottom:20px;
                      height: 35px;
                      width: auto;
                    }

/* Popup menu vertikal ke atas */
.popup-menu {
  position: fixed;
  top: 60px;
  left: 20px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: none;
  z-index: 1000;
  padding: 10px;
  width: 200px;
  text-align: left;
}

/* Menu utama */
.menu-list,
.menu-list li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  position: relative;
}

.menu-list a {
  display: block;
  padding: 10px;
  color: black;
  text-decoration: none;
  font-weight: 300;
  font-size: 15px;
  text-transform: uppercase;
  text-shadow: 0 2px 0 white, 0 0 2px black;
  transition: all 0.2s ease-in-out;
}

.menu-list a:hover {
  background: transparent;
  color: gold;
  transform: scale(1.1);
}

/* Submenu ke samping */
.submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  min-width: 160px;
  padding: 5px 0;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
  z-index: 1002;
}

.has-submenu:hover > .submenu {
  display: block;
}

/* Panah dropdown */
.caret {
  float: right;
  margin-top: 4px;
  border: solid black;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
}

    /* Hide on desktop */
    @media screen and (min-width: 992px) {
      .bottom-bar,
      #bottomMenuOverlay {
        display: none !important;
      }
      .cardsaham p2 {
  font-size: 1.3rem;
  color: #555;
  margin-top: 5px;
  text-align:justify;
}
    }
/* burger menu    =====================================================================  end */



.midcont {
    display: flex;
    justify-content: center;
        align-items: center;       /* Pusat vertikal */
    height: auto;             /* ← Wajib agar align-items bisa bekerja */
}
@media (max-width: 992px) {
  .midcont {
    flex-direction: column;
    align-items: flex-start;
  }
  
}
/*style kalkulator */

    .CalcContainer {
      display: flex;
      gap: 40px;
      max-width: 700px;
    }
    .CalcFormCol, .CalcResultCol {
      flex: 1;
    }
    .CalcFormGroup {
      margin-bottom: 15px;
    }
    .CalcFormGroup label {
      display: block;
      font-weight: bold;
      margin-bottom: 5px;
    }
    .CalcInput {
      width: 100%;
      padding: 8px;
      box-sizing: border-box;
    }
    .CalcButton {
      padding: 10px 20px;
      font-size: 26;
      color: black;
            font-weight: bold;
      cursor: pointer;
        background: rgba(255, 255, 255, 0.85); /* transparan seperti custom-navbar */
  backdrop-filter: blur(10px); /* blur modern */
    }
    .CalcResultBox {
      margin-top: 20px;
      padding: 10px;
      background: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 5px;
    }  
  
  /*================produk=============*/
  .produk-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px 0 ;

}

.produk-item {
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 25%;
  transition: transform 0.3s ease;
    text-align: center;

}

.produk-item:hover {
  transform: translateY(-5px);
}

.produk-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.produk-title {
  font-size: 1.2em;
  margin-bottom: 5px;
  color: #333;
}

.produk-subtitle {
  font-size: 0.95em;
  color: black;
}

@media (max-width: 768px) {
  .produk-container {
    flex-direction: column;
    align-items: center;
    padding: 30px 10px;
  }

  .produk-item {
    width: 90%;
    margin-bottom: 20px;
  }
}

/*======================*/

  
  /*========================================*/








.container {
  padding-left: 15px;
  padding-right: 15px;
}


/*

*/

 
.gallery-container {
  max-height: 80vh;
  max-width:90%;
  overflow-y: auto;
  padding: 5px 5px;
  margin:auto;
}

.custom-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Default: mobile = 3 kolom */
  gap: 5px;
  padding: 5px;
}

.photo-card {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.photo-card:hover {
  transform: scale(1.08);
}

.photo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.caption.title {
  font-weight: bold;
  font-size: 1em;
  padding: 4px;
  background: transparent;
}

.caption.subtitle {
  font-size: 0.9em;
  padding: 4px;
  background: transparent;
}
  @media (max-width: 767.98px) {
.caption.title {
  font-weight: bold;
  font-size: 0.6em;
  padding: 4px;
  background: transparent;
}

.caption.subtitle {
  font-size: 0.6em;
  padding: 2px;
  background: transparent;
}
  }
/* Responsif: desktop 5 kolom */
@media (min-width: 768px) {
  .custom-gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Popup styling (optional) */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
backdrop-filter: blur(10px); /* blur modern */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1501;
}

.popup-content {
  background: silver;
  padding: 5px;
  max-width: 80vw; /* ubah dari 80vh ke 90vw */
  max-height: 95vh; /* ini sudah bagus, boleh dibiarkan atau jadi 95vh */
  overflow-y: auto;
  position: relative;
  z-index: 1500;
}
  @media (max-width: 767.98px) {

.popup-content {
  background: orange;
  padding: 5px;
  max-width: 100vw; /* ubah dari 80vh ke 90vw */
  max-height: 95vh; /* ini sudah bagus, boleh dibiarkan atau jadi 95vh */
  overflow-y: auto;
  position: relative;
  z-index: 1500;
}
}

.popup-content img {
  width: 100%;
  height: auto;
  display:block;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.popup-caption-title {
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 10px;
}

.popup-caption-subtitle {
  font-size: 1em;
  margin-top: 5px;
}
  /*========================================*/

/* end galleri */



/* start hr */
hr
    {
        border: 1px solid #55acee;
        margin-top:-5px;
        width: 100%;
    }
/* end hr */

/* start h2 */
h2
    {
        font-size: 20px;
        text-align: center;
        	place-self: center;
	background: linear-gradient(90deg, #050404, #0ff, #050404) -100%/ 200%;
	/* being excessively careful with compat, 
	 * though this has been supported unprefixed and 
	 * in the shorthand across major browsers for a while */
	-webkit-background-clip: text;
	        background-clip: text;
	color: transparent;
	font: 900 clamp(2em, 5vw, 8em) exo, sans-serif;
	animation: shimmer 2s linear infinite
}

@keyframes shimmer { to { background-position: 100% } }
    
/* end h2 */

/* start h4 */

.btn {
    background: #3eb55d;
    border-radius: 10px;
    color: black;
    margin-top: 40px;
	padding: 12px 22px;
    transition: all 0.4s ease-in-out;  
}
.btn:hover {
    background: #55acee;
    border-color: transparent;
}

/* start overlay */
.overlay 
    {
       width: 100%;
       height: 100%;
       background: rgba(0, 0, 0, 0.7);
    } 
/* end overlay */

/* start preloader */
.preloader
    {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-flow: row nowrap;
            -ms-flex-flow: row nowrap;
                flex-flow: row nowrap;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        background: none repeat scroll 0 0 #fff;
    }
.sk-spinner-rotating-plane.sk-spinner 
    {
         width: 30px;
        height: 30px;
        background-color: #55acee;         
        -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
                animation: sk-rotatePlane 1.2s infinite ease-in-out;
     }

@-webkit-keyframes sk-rotatePlane {
  0% {
         -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
                 transform: perspective(120px) rotateX(0deg) rotateY(0deg); }

  50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
                transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }

  100% {
            -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
                    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } }

@keyframes sk-rotatePlane {
  0% {
         -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
                 transform: perspective(120px) rotateX(0deg) rotateY(0deg); }

  50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
                transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }

  100% {
            -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
                    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } }
/* end preloader */



/* start navigation */
.custom-navbar 
    {
        margin-bottom: 0;
        margin-top:0;
        background-color: #fff;
        text-align: right;
    }
.custom-navbar .navbar-brand 
    {
        color: black;
        font-weight: bold;
        font-size: 28px;
    }
.custom-navbar .nav li a
     {
         color: black;
		text-shadow: 0 2px 0 white, 0 0 2px black;
         font-weight: 300;
         font-size: 15px;
         text-transform: uppercase;
    }
.custom-navbar .nav li a:hover       /* warna teks saat hover */
    {
        background: transparent;
        color: gold;
		transform:scale(1.1);
    }

.custom-navbar .navbar-toggle
    {
        border: none;
        padding-top: 10px;
    }
.custom-navbar .navbar-toggle .icon-bar
    {
        background: #55acee;
        border-color: transparent;
    }
    
    .navbar-nav > li > a:link,
.navbar-nav > li > a:visited {
    color: #333 !important;  /* atau warna normal menu */
    text-decoration: none;
}
/* Membuka submenu saat hover */
.navbar-nav li.dropdown:hover > .dropdown-menu {
  display: block;
  /* Optional: Tambahkan efek transisi */
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}
@media (max-width: 600px) {
  .navbar-collapse.collapse.in {
    display: block !important;
    height: auto !important;
  }
}
@media (max-width: 991.98px) {
  .navbar-nav > .dropdown > .dropdown-menu {
    left: auto !important;
	top: 15px;
    right: 100px !important; /* Geser ke kiri 10px */
  }
}


/* Mengatur posisi submenu agar muncul di bawah */
.dropdown-menu {
  margin-top: 0;
  /* Jika perlu, atur z-index agar muncul di atas elemen lain */
  z-index: 999;
}
@media(min-width:600px){
    .custom-navbar
         {
             padding: 20px 0;
            border-bottom: 0;
             background: 0 0;
             transition: all 0.3s ease;
         }
    .custom-navbar.top-nav-collapse
         {
            padding: 0;
       /*     box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08); */
              background: linear-gradient(to bottom, green, white,transparent);
        }
}
/* end navigation */

/* start home */        
#home h1
    {
        font-size: 80px;
        font-weight: bold;
        line-height: 1em;
        letter-spacing: 2px;
        padding-top: 10px;
    }
#home .btn {
    background: rgba(0,0,0,0.6);
    border: none;
}
#home .btn:hover {
    background: rgba(255,255,255,0.6);
			transform:scale(1.1);
}
.templatemo_homewrapper {
    padding-left: 15px;
    padding-right: 15px;
}
.flexslider {
    margin: 0 0 60px;
    background: #fff;
    padding: 0;
    position: relative;
    zoom: 1;
    background-color: #371604;
    overflow: hidden;
    margin: 0;
    text-align: center;
}
.flexslider .slides {
    padding: 0;
    zoom: 1;
}
.flexslider .slides img {
    width: 100%;
    min-width: 648px;
    min-height: 270px;
    display: block;
}
.flexslider .slides > li {
    display: none;  
    padding: 0;
    position: relative;
    -webkit-backface-visibility: hidden;
}
.flexslider img {
    position: relative;
    width: 100%;
}
.slider-caption {
    color:white;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    text-transform: uppercase;
    z-index: 7;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
/* end home */



/* Jika kamu ingin section lain juga terhindar dari tertutup navbar */

@media (max-width: 768px) {
section {
  padding-top: 30px !important;
}

}

/* Animasi section */
.section {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.8s ease;
/*  padding-top: 0; /* padding dikontrol supaya gak bikin tinggi awal */
}

.section.show {
/*  max-height: 1000px; /* cukup besar supaya muat isinya */
  opacity: 1;
/*  padding-top: 70px; /* padding sesuai tinggi navbar */
}


/* Tambahan */
  .menu-box {
    display: inline-block;
    padding: 1px 1px; /* Semakin kecil = semakin rapat */
    margin: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid white;
    border-radius: 3px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem; /* (Opsional) agar teks lebih ramping juga */
  }


    .menu-box:hover {
      background-color: #007bff;
      color: white;
    }
.zum,
.zum:hover,
.zum h5,
.zum h5:hover {
  text-decoration: none !important;
}
.container a {
  text-decoration: none !important;
}



/* untuk pemegang saham */

/*======================================================= */
.cardsaham-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.cardsaham {
  flex: 1 1 calc(25% - 20px); /* 4 kolom */
  max-width: calc(25% - 20px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow:hidden !important;
}

.cardsaham img {
  width: 100%;
  max-height: 70%;
  aspect-ratio: 4/4;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.cardsaham h3 {
  font-size: 1.5rem;
  margin: 5px 0;
  color: #222;
}

.cardsaham p {
  font-size: 1.2rem;
  color: #555;
  margin: 3px 0;
  text-align:center;
}
.cardsaham p2 {
  font-size: 1.3rem;
  color: #555;
  margin-top: 5px;
  text-align:justify;
}
/*============= */
@media (max-width: 991px) {
  .cardsaham {
    flex: 1 1 calc(33.33% - 20px); /* 3 kolom */
    max-width: calc(33.33% - 20px);
  }
}

@media (max-width: 768px) {
  .cardsaham {
    flex: 1 1 calc(50% - 20px); /* 2 kolom */
    max-width: calc(50% - 20px);
  }
  .cardsaham img {
  max-height: calc(70% - 50px);
}
}

@media (max-width: 480px) {
  .cardsaham {
    flex: 1 1 100%; /* 1 kolom */
    max-width: 100%;
  }

  .cardsaham h3 {
    font-size: 1rem;
  }

  .cardsaham p {
    font-size: 0.85rem;
  }
}
/*======================================================= */


.isi1 {
  background-color: rgba(0, 110, 0, 0.25); /* hijau dengan 10% opacity hanya pada background */
    backdrop-filter: blur(10px); /* blur modern */
  padding:10px;
  position: relative;
  
box-shadow: -6px -6px 20px rgba(255, 255, 255, 0.3), /* glow kiri atas */ 3px 3px 6px rgba(90,0,0,1), 6px 6px 12px rgba(50,0,0,1);

	}
.zum:hover {
  transform: scale(1.1); /* pakai tanda kurung, bukan titik dua */
  transition: transform 0.3s ease; /* opsional: biar efek halus */
    text-decoration: none;
}
 .zum2:hover {
	  transform: scale(1.4); /* pakai tanda kurung, bukan titik dua */
  transition: transform 0.6s ease; /* opsional: biar efek halus */}

  .move:hover {
	  transform: translateY(-5px);
	  }
.zum a {
  text-decoration: none;
}

	
	

/*filter css*/
.filter-wrapper {
    width: 100%;
    margin: 0 0 24px 0;
    padding: 0;
    overflow: hidden;
    text-align: center;
}
.filter-wrapper li {
    display: inline-block;
    margin: 4px;
    transition: all 0.3s ease;
}
.filter-wrapper li:hover {
    background: #55acee;
}
.filter-wrapper li:hover a {
    color: #fff;
}
.filter-wrapper li a {
    border: 1px solid #f2f2f2;
    color: #999;
    padding: 8px 17px;
    display: block;
    text-decoration: none;
}


/*isotope box css*/
.iso-box-section {
    width: 100%;
    margin: 0 0 24px 0;
}
.iso-box-wrapper {
    width: 100%;
    padding: 0;
    clear: both;
    position: relative;
}
.iso-box {
    position: relative;
    min-height: 50px;
    float: left;
    overflow: hidden;
    margin-bottom: 20px;
}
.fluid-img {
    width: 100%;
    display: block;
    height: auto;
}
/* end portfolio */

/* start contact */
#contact
    {
        background: #ffffff;
        padding-top: 80px;
        padding-bottom: 80px;
    }
#contact .form-control
    {
        background: transparent;
        border-radius: 0px;
        box-shadow: none;
        border: 1px solid #CCC;
        margin-bottom: 20px;
        transition: all 0.4s ease-in-out;
    }
#contact input
    {
        height: 50px;
    }
#contact input[type="submit"]
    {
        border: 2px solid #55acee;
        font-weight: bold;
		color: #55acee;
    }
#contact input[type="submit"]:hover
    {
        background: #55acee;
		color: #fff;
    }
/* end contact */

/* start footer */

.footercont {
  background: linear-gradient(to bottom, transparent, green);
  color:black !important;
  padding: 2px 0;
  margin: 0;
  position: relative;
}
.footercont * {
  margin: 0;
  padding: 0;
  color:black !important;
}

@media screen and (max-width: 991px) {
  .footer-logo {
max-width: 240px; 
    display: block;
    margin: 0 auto;
  }
  .footercont {
  background: linear-gradient(to bottom, transparent, green);
  padding: 2px 0;
  margin: 0;
  position: relative;
}
}
/* end footer */

/* start social icon */
.social-icon
    {
        display: block;
        position: relative;
        padding: 0;
        margin: 0;
        top: 20px;
    }
.social-icon li
    {
        display: inline-block;
        list-style: none;
        transition: all 0.4s ease-in-out;
        width: 40px;
        height: 40px;
    }
.social-icon li a
    {
        color: #fff;
        font-size: 30px;
        text-decoration: none;
        line-height: 40px;
        text-align: center;
    }
.social-icon li:hover
    {
        background: #55acee;
    }
/* end social icon */

/* start media 980 */
@media screen and ( max-width: 980px ){
    #home h1
        {
            font-size: 40px;
        }
    h2
        {
            font-size: 20px;
        }
    
}
/* end media 980 */


/* start media 768 */
@media screen and ( max-width: 767px ){
    h4 {
        padding-bottom: 20px;
    }
   #home h1
    {
        font-size: 40px;
    }
    #home {
        margin-top: 50px;
    }
    .templatemo-about-left {
        margin-bottom: 30px;
    }
    #about .about-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
}

/* end media 768 */

@media screen and (max-width: 440px) {
    h4 {
        padding-bottom: 15px;
        line-height: 1.5em;
    }
    .filter-wrapper li {
        margin: 2px;
    }
    .filter-wrapper li a {
        padding: 6px 10px;
    }
}

@media screen and (max-width: 380px) {
    #service .media .fa {
        margin-right: 5px;
    }
}

/* start media 360 */
@media screen and ( max-width: 360px ){
    #home h1
        {
            font-size: 30px;
            line-height: 1.5em;
        }
}
/* end media 360 */