@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");
:root {
  --yellow:#ef861a;
  --white: #fff;
  --black:#32334e;
  --light-color:#666;
  --light-bg:#eee;
  --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
  --border:.1rem solid rgba(0,0,0,.3);
}

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: var(--yellow);
}

section {
  padding: 5rem 10%;
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid var(--yellow);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.btn:hover {
  background: var(--yellow);
  color: var(--black);
}

@-webkit-keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 1.5rem 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1000;
  background: var(--white);
}

.header .logo {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
}

.header .logo span {
  color: var(--yellow);
}

.header .navbar a {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  margin: 0 1rem;
}

.header .navbar a:hover {
  color: var(--yellow);
}

.header .icons div {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-left: .3rem;
}

.header .icons div:hover {
  background: var(--black);
  color: var(--white);
}

.header #menu-btn {
  display: none;
}

.contact-info {
  position: fixed;
  top: 0;
  right: 0;
  width: 35rem;
  background: var(--white);
  height: 100%;
  text-align: center;
  z-index: 1100;
  padding: 0 2rem;
  padding-top: 5rem;
  display: none;
}

.contact-info.active {
  -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
  display: block;
}

.contact-info #close-contact-info {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  font-size: 4rem;
  color: var(--black);
}

.contact-info #close-contact-info:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.contact-info .info {
  padding: 2rem 0;
}

.contact-info .info i {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-bottom: .5rem;
}

.contact-info .info i:hover {
  background: var(--black);
  color: var(--white);
}

.contact-info .info h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}

.contact-info .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}

.contact-info .share {
  padding-top: 2rem;
  border-top: var(--border);
  margin-top: 1rem;
}

.contact-info .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin: 0 .3rem;
}

.contact-info .share a:hover {
  background: var(--black);
  color: var(--white);
}

.home {
  padding: 0;
}

.home .slide {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.home .slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: none; /* Hilangkan efek putih */
}

.home .slide .content {
  width: 50rem;
  position: relative;
}

.home .slide .content h3 {
  font-size: 6rem;
  color: var(--black);
  text-transform: capitalize;
  text-transform: uppercase;
}

.home .slide .content p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}

.home .swiper-button-next,
.home .swiper-button-prev {
  top: initial;
  bottom: 0;
  left: initial;
  right: 0;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  background: var(--white);
}

.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
  background: var(--yellow);
}

.home .swiper-button-next::after,
.home .swiper-button-prev::after {
  font-size: 2rem;
  color: var(--black);
}

.home .swiper-button-prev {
  right: 7rem;
}

.home {
   position: relative;
   width: 100%;
   height: 100vh; /* layar penuh */
   overflow: hidden;
}

.home .slide {
   position: relative;
   width: 100%;
   height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
}

.background-video {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 100%;
   height: 100%;
   min-width: 100%;
   min-height: 100%;
   object-fit: cover;
   transform: translate(-50%, -50%);
   z-index: -1;
}

/* Tambahkan overlay agar teks tetap terlihat */
.overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.4);
   z-index: 0;
}

/* Responsif di layar kecil */
@media (max-width: 768px) {
   .home, .home .slide {
      height: 100vh;
   }

   .background-video {
      object-fit: cover; /* pastikan video isi penuh layar */
      width: 100%;
      height: 100%;
   }
}




.about .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
}

.about .row .video {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
}

.about .row .video video {
  width: 100%;
}

.about .row .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
}

.about .row .content h3 {
  font-size: 3.5rem;
  color: var(--black);
  text-transform: capitalize;
}

.about .row .content p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}

.about .box-container {
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.about .box-container .box {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
}

.about .box-container .box h3 {
  font-size: 4rem;
  color: var(--black);
  text-transform: capitalize;
}

.about .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: .5rem;
}

.projects {
  background: var(--black);
}

.projects .heading {
  color: var(--white);
}

/*.projects .box-container .box {
  cursor: initial;
}*/

.projects .box-container .box:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*.projects .box-container .box .image {
  height: 40rem;
  overflow: hidden;
}*/

.projects .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

/*.projects .box-container .box .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--white);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}*/

.projects .box-container .box .content .info {
  padding: 1rem 2rem;
}

.projects .box-container .box .content .info h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
}

.projects .box-container .box .content .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}


.reviews .slide p {
  padding: 1.5rem;
  background: var(--light-bg);
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.reviews .slide p::before {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  height: 2rem;
  width: 2rem;
  background: var(--light-bg);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.reviews .slide .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}

.reviews .slide .user img {
  height: 7rem;
  width: 7rem;
}

.reviews .slide .user h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.reviews .slide .user .stars {
  padding-top: .5rem;
}

.reviews .slide .user .stars i {
  font-size: 1.4rem;
  color: var(--yellow);
}

.contact {
  background: var(--black);
}

.contact .heading {
  color: var(--white);
}

.contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.contact .row .map {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
  width: 100%;
}

.contact .row form {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
  background: var(--white);
  padding: 2rem;
}

.contact .row form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
}

.contact .row form .box {
  margin: .7rem 0;
  width: 100%;
  padding: 1.5rem 0;
  border-bottom: var(--border);
  font-size: 1.6rem;
  color: var(--light-color);
}

.contact .row form .box:focus {
  border-color: var(--yellow);
}

.contact .row form textarea {
  height: 15rem;
  resize: none;
}

.footer {
  text-align: center;
}

.footer .links .btn {
  margin: .5rem;
}

.footer .credit {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  margin-top: 2rem;
  padding-top: 1rem;
}

.footer .credit span {
  color: var(--yellow);
}

@media (max-width: 1200px) {
  .header {
    padding: 1.5rem 2rem;
  }
  section {
    padding: 3rem 5%;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  section {
    padding: 3rem 2rem;
  }
  .header #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: .2s linear;
    transition: .2s linear;
  }
  .header .navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .navbar a {
    display: block;
    margin: 2rem;
  }
}

@media (max-width: 768px) {
  .header .search-form {
    width: 90%;
  }
  .header .login-form {
    width: 90%;
  }
  .home .slide {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .home .slide .content {
    text-align: center;
  }
  .home .slide .content h3 {
    font-size: 3rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .about .row .content h3 {
    font-size: 2.5rem;
  }
}
/*# sourceMappingURL=style.css.map */

/*#/.video-container {
  position: relative;
  padding-bottom: 56.25%; /* rasio 16:9 
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}*/


.contact {
   background: #2e2e4a;
   padding: 5rem 9%;
   color: #fff;
}

.contact .heading {
   font-size: 3rem;
   text-transform: capitalize;
   color: #fff;
   margin-bottom: 2rem;
   border-left: 6px solid orange;
   padding-left: 10px;
}

.contact .row {
   display: flex;
   flex-wrap: wrap;
   gap: 2rem;
   align-items: flex-start;
}

.contact {
   background: #2e2e4a;
   padding: 5rem 9%;
   color: #fff;
}

.contact .heading {
   font-size: 3rem;
   text-transform: capitalize;
   color: #fff;
   margin-bottom: 2rem;
   border-left: 6px solid #ef861a;
   padding-left: 10px;
}

.contact .row {
   display: flex;
   flex-wrap: wrap;
   gap: 2rem;
   align-items: flex-start;
}

.contact .map {
   flex: 1 1 45rem;
   width: 100%;
   height: 400px;
   border: none;
   border-radius: 10px;
}

.contact .info-box {
   flex: 1 1 35rem;
   background: #fff;
   color: #222;
   border-radius: 10px;
   padding: 3rem;
   box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact .info-box h2 {
   font-size: 2.2rem;
   margin-bottom: 2rem;
   color: #111;
}

.contact .info {
   display: flex;
   align-items: flex-start;
   margin-bottom: 2rem;
}

.contact .icon {
   width: 60px;
   height: 60px;
   background: #ef861a;
   color: #fff;
   border-radius: 5px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2rem;
   margin-right: 1.5rem;
   flex-shrink: 0;
}

.contact .content h3 {
   font-size: 1.6rem;
   margin-bottom: 0.5rem;
   color: #000;
}

.contact .content p {
   font-size: 1.4rem;
   color: #444;
}

/* ===================== */
/* RESPONSIVE SETTINGS */
/* ===================== */
@media (max-width: 992px) {
   .contact .row {
      flex-direction: column;
   }

   .contact .map,
   .contact .info-box {
      flex: 1 1 100%;
      width: 100%;
   }

   .contact .info-box {
      margin-top: 2rem;
   }
}

@media (max-width: 600px) {
   .contact {
      padding: 3rem 5%;
   }

   .contact .info-box {
      padding: 2rem;
   }

   .contact .icon {
      width: 50px;
      height: 50px;
      font-size: 1.6rem;
   }

   .contact .content h3 {
      font-size: 1.4rem;
   }

   .contact .content p {
      font-size: 1.2rem;
   }
}

.footer {
   background: #fff;
   text-align: center;
   padding: 2rem 0;
   border-top: 1px solid #eee;
}

.footer .share {
   margin: 1.5rem 0;
}

.footer .share a {
   display: inline-block;
   height: 60px;
   width: 60px;
   line-height: 60px;
   margin: 0 .5rem;
   border-radius: 50%;
   font-size: 28px;
   color: #fff;
   background: #32334e; /* ubah warna sesuai tema kamu */
   transition: 0.3s ease;
}

.footer .share a:hover {
   transform: scale(1.1);
   background: #ff7b00; /* warna saat hover */
}

.footer .credit {
   font-size: 1.4rem;
   color: #333;
}

.footer .credit span {
   color: #ff7b00;
   font-weight: bold;
}


/* Section container */
.division {
background: #f2f2f2;
text-align: center;
padding: 5rem 2rem;
}

/* Heading */
.division .heading {
font-size: 3rem;
text-transform: capitalize;
color: #2d2d2d;
font-weight: 700;
margin-bottom: 3rem;
text-align: left;
width: 90%;
max-width: 1200px;
margin-inline: auto;
 border-left: 6px solid #f7931e; /* warna oranye */
padding-left: 10px;
}

/* Embed container */
.instagram-embed {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
}

/* Atur ukuran tampilan embed di dalam slider.
  Selector ini lebih spesifik (berdasarkan kode HTML slider Anda)
  dan min-width: 0 memperbaiki masalah di layar kecil.
*/
.blogs-slider .swiper-slide .instagram-media {
  width: 80% !important;
  max-width: 720px !important; /* lebih besar dari default 540px */
  min-width: 100px !important; /* <-- PERUBAHAN UTAMA DI SINI */
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-left: auto !important;
  margin-right: auto !important;
}


.projects-slider .swiper-wrapper {
    display: flex;
    align-items: center;
}

.projects-slider .swiper-slide {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
}

/* Style card */
.projects-slider .box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    display: flex;
    flex-direction: column;
}

.projects-slider .box .image {
    height: 40rem;
    overflow: hidden;
}
.projects-slider .box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
}

.projects-slider .box:hover .image img {
    transform: scale(1.1);
}

.projects-slider .box .content {
    background: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.projects-slider .box .info h3 {
    font-size: 1.7rem;
    color: var(--black);
}
.projects-slider .box .info p {
    font-size: 1.5rem;
    color: var(--light-color);
}

.projects-slider .box i {
    width: 5rem;
    height: 5rem;
    background: var(--yellow);
    color: #fff;
    text-align: center;
    line-height: 5rem;
    border-radius: .5rem;
    font-size: 2.2rem;
}

/* swiper-pagination-bullet start (our project bulet) */
.projects-slider .swiper-pagination-bullet {
    background: #ffffff;       /* warna dot normal */
    opacity: 1;                /* biar warnanya solid, tidak transparan */
}

.projects-slider .swiper-pagination-bullet-active {
    background: #ef861a !important;   /* warna dot aktif */
}

.projects-slider {
    padding-bottom: 50px; 
}

.projects-slider .swiper-pagination-bullet {
    border-radius: 50%;
    transition: .3s ease;
}

.projects-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}
/* swiper-pagination-bullet end (our project bulet) */

/* Pagination position */
.division-slider .swiper-pagination {
    position: relative;
    margin-top: 25px; /* geser ke bawah */
}

/* Dot default */
.division-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ffffff;  /* putih */
    opacity: 1;
    border-radius: 50%;
    transition: .3s ease;
}

/* Dot ketika aktif */
.division-slider .swiper-pagination-bullet-active {
    background: #ef861a !important;  /* oranye */
    transform: scale(1.2);
}

.division .swiper-slide {
    display: flex;
    justify-content: center;
}

.division .instagram-media {
    min-height: 480px !important;  /* stabilkan tinggi */
}

