
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  position: relative;
}


.banner {
  min-height: 70vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgb(40, 40, 40));
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.banner video {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  aspect-ratio: 16/9;
  display: block;
}

@media (max-width: 428px) {
  .banner video {
    height: auto ;
  }
  .banner{
    height: 22vh;
    min-height: 24vh;

  }
}
@media (max-width: 390px) {
  .banner{
    height: 20vh;
  }
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}
img, video {
  aspect-ratio: auto; 
  max-width: 100%;
  height: auto;
}


.navbar-nav{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}
li a:hover{
  transform: scale(1);
  transition: all 0.5s ease;
}
.row{
  margin: 0px;
}
.custom-nav {
  font-size: 17px;
  margin: 0;
  padding: 0;
}

.custom-nav .nav-item {
  margin: 15px;
  margin-top: 0px;
  margin-bottom: -5px;
}
nav.navbar {
  min-height: 60px; 
}


.ss{
  margin-left: 45%;
  position: absolute;
  height: 200px; 
  margin-top: 600px;
  z-index: 1;
}
@media (max-width: 428px) {
  .ss {
    width: 0px;
  }
  
}


.about-us {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 40px;
}

.about-text {
  flex: 1 1 400px;
  color: white;
  padding: 100px;
}

.about-text p {
  font-size: 16px;
  font-weight:150;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.about-image img {
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  margin: 100px;
}

.about-text .ttl {
  width: 380px;
  margin-bottom: 120px;

}
.about-image-abt img{
  width: 400px;
  margin: 100px;
  border-radius: 20px;
}
@media (max-width: 428px) {
  .about-text .ttl {
    width: 100%;
    max-width: 250px;
    max-height: 500px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 1rem;
  }
  .about-image img {
    max-width: 0%;
  }
  .about-text p {
    text-align: center;
    font-size: 11px;
  }
  .about-image-abt img{
    width: 0px;
    margin: 0px;

  }
  .about-text {
    padding: 0px;
    margin-bottom: 0px;
  }
}

.statistik {
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
  margin-top: 30px;
}

.statistik .col {
  flex: 1;
}

.angka {
  font-size: 20px;
  font-weight: bold;
  color: #07a7ec;

}

.label {
  font-size: 14px;
  margin-top: 5px;
}








.video-gallery {
  padding: 4rem 2rem;
  text-align: center;
}

.jdl1 {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  border-radius: 1rem;
}

.vid .gal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.yt-lite {
  position: relative;
  width: 100%;
  aspect-ratio:  16 / 9;
  background-color: #000;
  cursor: pointer;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.yt-thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.yt-lite:hover .yt-thumb {
  transform: scale(1.03);
}

.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  background: url('https://img.icons8.com/ios-filled/50/ffffff/play.png') center no-repeat;
  background-size: contain;
  opacity: 0.85;
}








.rmsv1{
  margin-top: 55px;
  margin-bottom: 55px;
}





.ig-container {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
}

.ig-floating-button {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.ig-floating-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.ig-floating-button img {
  width: 30px;
  height: 30px;
}

.ig-tooltip {
  position: absolute;
  bottom: 70px;
  right: 0;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ig-container:hover .ig-tooltip {
  visibility: visible;
  opacity: 1;
}





.wa-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.wa-floating-button {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.wa-floating-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.wa-floating-button img {
  width: 30px;
  height: 30px;
}

.wa-tooltip {
  position: absolute;
  bottom: 70px;
  right: 0;
  background-color: #25D366;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.wa-container:hover .wa-tooltip {
  visibility: visible;
  opacity: 1;
}









.ttl{
  height: 100px;
  margin: 70px;
  margin-left: -7px;
}

.jdl{
    width: 20%;
    margin: 40%;
    margin-top: 4%;
    margin-bottom: 4%;
    
}


.isi h1 {
    margin: 180;
    margin-top: 0;
    margin-bottom: 20px;
    color: white;
    font-weight: 50;
    text-align:center;
    font-size:large;
    font-family: Arial, Helvetica, sans-serif;
}
.isi h2{
    margin: 200;
    margin-top: 0;
    margin-bottom: 20px;
    color: white;
    font-weight: 50;
    text-align:center;
    font-size:large;
    font-family: Arial, Helvetica, sans-serif;
}
.isi h3{
    margin: 200;
    margin-top: 0;
    margin-bottom: 0;
    color: white;
    font-weight: 50;
    text-align:center;
    font-size:large;
    font-family: Arial, Helvetica, sans-serif;
}

.isi {
  position: relative; 
  z-index: 0; 
  min-height: 2000px;
  background-image: linear-gradient(rgb(40, 40, 40), rgb(40, 40, 40));
  background-position: center;
  background-size: cover;
  width: 100%;
}

.work{
    width: 30%;
    margin: 35%;
    margin-top: 20%;

}

.gallery-item{
  background-color: #fff;
}










.footer {
  background-color: #1b1b1b;
  padding: 60px 20px 30px;
  color: #07a7ec;
  font-family: 'Arial', sans-serif;
}

.container-footer {
  max-width: 1200px;
  margin: 0 auto;
}

.row-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  text-transform: capitalize;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #07a7ec;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: #fff;
  font-size: 20px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #07a7ec;
}




.footer-col:last-child {
  width: 100%;
  text-align: center;
  margin-top: 40px !important;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}




















.photo-gallery {
  padding: 4rem 2rem;
  text-align: center;
}

.jdl2 {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  border-radius: 1rem;
}

.photo-container {
  display: grid;
  margin: 300px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;

  justify-items: center;
}
@media (max-width: 428px) {
  .photo-container {
    margin: 0px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;


  }
}
 

.photo-item img {
  width: 300px;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}








.order-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 100px;
    margin-top: 200px;
}
  
  
.order-section h2 {
    font-weight: 1000;
    font-size: 50px;
    margin-bottom: 50px;
    color: #ffffff;
}
  
.order-button {
    padding: 15px 30px;
    font-size: 1rem;
    color: white;
    background-color: #3498db;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
  
.order-button:hover {
    background-color: #3498db;
    transform: scale(1.1); 
}




















 
.map-container {
    margin: 150px;
    margin-left: 0px;
    width: 600px; 
    height: 400px; 
    flex-shrink: 0;
    background: #f0f0f0;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
  
.map-container iframe {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    border: 0;
}
.mapsttl{
    width: 400px;
    margin: 140px;
    margin-left: 300px;

}
@media (max-width: 428px) {
  .map-container {
    margin: 150px;
    width: 350px; 
    height: 300px; 
    position: absolute;
    margin-top: 550px;
  }
}









.services-section {
  padding: 4rem 2rem;
  color: white;
  text-align: center;
  margin-top: -100px;
}






.services-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 2fr));
  gap: 2rem;
  margin-top: 4rem;
  margin-bottom: -3rem;
}

.service-item {
  padding: 2rem;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
}

.service-item img {
  width: 180px;
  height: auto;
  margin-bottom: 1rem;
}
@media (max-width: 428px) {
  .service-item img {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
  }
}

.service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #07a7ec;
}

.service-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
}

.order-button {
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  background-color: #07a7ec;
  color: white;
  border: none;
  border-radius: 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.order-button:hover {
  background-color: #0590cb;
}

.lgservis {
  width: 100%;
  max-width: 250px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 1rem;
}

.servis-menu img{
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 100 auto 2rem;
  display: block;
  border-radius: 1rem;
}
.container-foto{
  margin: 200px;
  margin-top: 100px;
}








.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.container h4 {
  text-align: center;
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 60px;
  color: #ffffff;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-box-1 {
  background-color: #07a7ec;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-box-1:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-description b {
  font-size: 18px;
  color: #003f83;
  margin-bottom: 8px;
  display: block;
}

.service-description p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
  margin-top: 8px;
}





















  
.contact-box {
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin-top: 130px;
    flex: 1;
    color: #fff;
}
.content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content:center;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 15px;   
}

.contact-info a {
    text-decoration: none;
    color: #07a7ec;
    font-weight: bold;
}
@media (max-width: 428px) {
  .contact-box {
    margin-top: 30px;
    margin-bottom: 400px;
}
}









h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #007BFF;
}

.wrapper-galeri {
    margin: 0 auto;
    margin-top: 100px;
}

.container-foto {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

.itemm-foto {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: calc(25% - 20px);
    text-align: center;
    margin-bottom:15px ;
    height: 290px;
}

.gambar-foto {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    max-height: 200px;
    object-fit: cover;
}

.deskripsi-foto {
    margin-top: 20px;
    font-size: 1em;
    color: #000000;
    font-weight: bolder;
}

@media (max-width: 428px) {
  .deskripsi-foto {
    color: #000000;
    font-weight: 400;
    margin: 10px;
}
  .itemm-foto {
    padding: 4px;
    width: 300px;
    margin-left: -300px;
    text-align: center;
    margin-bottom:10px ;
    height: 200px;

  }
  .wrapper-galeri {
    padding-left: 140;
  }
  .gambar-foto {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    max-height: 200px;
    object-fit: cover;
  }
}





.client {
  padding: 50px 20px;
  text-align: center;
  margin-top: -150px;
}

.client .jdl3 {
  margin-top: 200px;
  width: 300px;
  max-width: 200px;
  margin-bottom: 50px;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  width: 220px;
  height: 220px;
  padding: 10px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 428px) {
  .gallery-item {
    width: 120px;
    height: 120px;

  }
  
}


.gallery-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(7, 167, 236, 0.4); /* biru glow */
}



.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}









