/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

a {
  color: #1dc8cd;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #1dc9ce;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}


/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: linear-gradient(45deg, #1a234e, #4a5d9c); /* Gradasi biru tua ke biru muda */
  color: #ffffff;
  width: 50px;
  height: 50px;
  font-size: 20px;
  border-radius: 50%;
  right: 20px;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.back-to-top:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px 5px rgba(74, 93, 156, 0.8); /* Glowing effect */
}

.back-to-top:focus {
  outline: none;
  box-shadow: 0 0 15px 5px rgba(74, 93, 156, 0.8); /* Glowing effect */
}

.back-to-top i {
  color: #ffffff;
  transition: color 0.3s ease;
}

.back-to-top:hover i {
  color: #d4e4ff; /* Warna lebih lembut untuk ikon saat hover */
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 40px 0; /* Pertahankan padding untuk posisi teks */
  height: 92px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background: transparent; /* Background transparan */
  transition: all 0.5s;
  z-index: 997;
}

#header #logo {
  float: left;
}

#header #logo a img {
  height: 85px; /* Atur tinggi gambar sesuai keinginan */
  margin-top: -35px; /* Atur margin top untuk menyesuaikan posisi gambar */
}

#header.header-fixed {
  background: #1a234e; /* Ubah background color untuk header tetap */
  transition: all 0.5s;
}

@media (max-width: 768px) {
  #header {
    padding: 20px 10px; /* Kurangi padding pada layar kecil */
  }

  #header #logo {
    text-align: center; /* Letakkan logo di tengah */
    float: none; /* Hilangkan float */
    margin-bottom: 10px; /* Tambahkan ruang di bawah logo */
  }

  #header #logo a img {
    height: 80px; /* Ukuran logo lebih kecil */
    margin: 0 auto; /* Posisikan logo di tengah */
  }

  #header.header-fixed #logo a img {
    height: 60px; /* Sesuaikan ukuran logo */
    margin-top: -5px; /* Naikkan logo sedikit */
    position: relative; /* Tetap pada posisi relatif agar tidak hilang */
    z-index: 999; /* Pastikan berada di atas elemen lainnya */
  }

  #header.header-fixed {
    height: 70px; /* Kurangi tinggi header saat fixed di layar kecil */
    padding: 10px 0; /* Kurangi padding untuk menyamakan proporsi */
    width: 100%;
  }

  #nav-menu-container {
    display: none; /* Sembunyikan menu navigasi desktop */
  }

  #mobile-nav-toggle {
    display: inline-block; /* Tampilkan tombol navigasi mobile */
  }

  #mobile-nav {
    left: 0; /* Pastikan menu mobile dapat muncul */
  }
}


/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  height: 100vh;
  position: relative;
  /*background: #1a234e;*/
  /* background: linear-gradient(30deg, #cbb28a, #1a234e); */
  /* untuk background animasi --*/
  background: linear-gradient(rgba(26, 35, 78, 0.65), rgba(26, 35, 78, 0.2)), url(../img/call-to-action-bg.gif) fixed center center;
  background-size: cover;
  background-position: center;
  
}

#intro .intro-text {
  padding-top: 100px;
  text-align: center;
  vertical-align: top;
}

@media (max-height: 768px) {
  #intro .intro-text {
    padding-top: 140px;
  }
}

@media (max-width: 768px) {
  #intro .intro-text {
    padding-top: 180px;
  }
}

@media (max-width: 767px) {
  #intro .intro-text {
    padding-top: 140px;
  }
}

#intro h2 {
  margin-top: -30px;
  margin: 30px 0 10px 0;
  padding: 0 15px;
  font-size: 30px;
  font-weight: 200;
  line-height: 56px;
  color: #fff;
}

#intro h2 img {
  width: 250px;
  margin-top: -30px; /* Mengatur margin atas untuk menaikkan gambar */
}

@media (max-width: 768px) {
  #intro h2 img {
    width: 150px; /* Atur ukuran yang lebih kecil untuk layar kecil */
    margin-top: -20px; /* Menjaga gambar tetap naik ke atas pada layar kecil */
  }
}

@media (max-width: 768px) {
  #intro h2 {
    font-size: 20px;
    line-height: 36px;
  }
}

#intro p {
  color: #fff;
  margin-bottom: 20px;
  padding: 0 15px;
  font-size: 20px;
}

@media (max-width: 768px) {
  #intro p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

#intro .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  transition: 0.5s;
  margin: 0;
  border: 2px solid #fff;
  color: #fff;
}

#intro .btn-get-started:hover {
  color: #1a234e;
  background: #fff;
}

#intro .product-screens {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  padding-top: 30px;
  text-align: center;
  width: 100%;
  height: 530px;
}

#intro .product-screens img {
  /* box-shadow: 0px -2px 19px 4px rgba(0, 0, 0, 0.29); */
}

#intro .product-screens .product-screen-1 {
  position: absolute;
  z-index: 30;
  left: calc(50% + 54px);
  bottom: 0;
  height: 430px;
}

#intro .product-screens .product-screen-2 {
  position: absolute;
  z-index: 20;
  left: calc(50% - 154px);
  bottom: 0;
  height: 430px;
}

#intro .product-screens .product-screen-3 {
  position: absolute;
  z-index: 10;
  left: calc(50% - 374px);
  bottom: 0;
  height: 430px;
}

@media (max-height: 768px) {
  #intro .product-screens {
    height: 300px;
  }
  #intro .product-screens .product-screen-1 {
    height: 300px;
  }
  #intro .product-screens .product-screen-2 {
    height: 300px;
  }
  #intro .product-screens .product-screen-3 {
    height: 300px;
  }
}

@media (max-width: 767px) {
  #intro .product-screens {
    height: 400px;
  }
  #intro .product-screens .product-screen-1 {
    position: static;
  }
  #intro .product-screens .product-screen-2, #intro .product-screens .product-screen-3 {
    display: none;
  }
}

@media (max-width: 767px) and (max-height: 639px) {
  #intro .product-screens {
    height: 300px;
  }
  #intro .product-screens .product-screen-1 {
    position: static;
  }
  #intro .product-screens .product-screen-2, #intro .product-screens .product-screen-3 {
    display: none;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}


/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

#nav-menu-container .btn-get-wa {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: -10px;
  margin-left: 5px;
  border: 2px solid #fff;
  color: #fff;
}

#nav-menu-container .btn-get-wa:hover {
  color: #1a234e;
  background: #fff;
}

/* Nav Menu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Menu Styling */
.nav-menu a {
  padding: 0 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  outline: none;
  position: relative;
}

.nav-menu a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: transparent;
  transition: width 0.3s, background-color 0.3s;
  position: absolute;
  bottom: -10px; /* Geser garis bawah sedikit ke bawah dari teks */
  left: 50%; /* Mulai dari tengah */
  transform: translateX(-50%); /* Pusatkan garis bawah */
}

.nav-menu > li {
  margin-left: 10px;
  position: relative;
}

.nav-menu > li:hover > a::after,
.nav-menu > li.active > a::after {
  width: 60%; /* Lebar garis bawah saat hover, aktif, atau focus */
  background-color: #fff; /* Warna garis bawah saat hover, aktif, atau focus */
}

/* Efek garis bawah untuk beberapa menu tertentu */
.nav-menu li:nth-child(2):hover > a::after,
.nav-menu li:nth-child(3):hover > a::after,
.nav-menu li:nth-child(4):hover > a::after,
.nav-menu li:nth-child(5):hover > a::after,
.nav-menu li:nth-child(6):hover > a::after {
  width: 100%; /* Lebar garis bawah saat hover atau aktif */
  background-color: #fff; /* Warna garis bawah saat hover atau aktif */
}


/* Highlight menu aktif */
.nav-menu .menu-active a {
  color: #fff; /* Warna gradasi lebih cerah */
}

.nav-menu .menu-active a::after {
  width: 60%; /* Lebar garis bawah saat hover, aktif, atau focus */
  background-color: #fff; /* Warna garis bawah saat hover, aktif, atau focus */
}


/* Tidak ada garis bawah pada Hubungi Kami */
.nav-menu li:last-child a::after {
  display: none;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #1dc8cd;
}

.nav-menu ul ul {
  margin: 0;
}


/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff; /* Tetap putih untuk ikon */
}

#mobile-nav-toggle:hover {
  color: #9da9d9; /* Warna lebih muda dari dominan */
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}


/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: linear-gradient(135deg, #1a234e, #2d3865, #5a6ba8); /* Gradasi biru ke ungu lembut */
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#mobile-nav ul {
  padding: 0;
  margin: 20px;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

/* Style dasar untuk link menu */
#mobile-nav ul li a {
  color: #f4f4f8; /* Warna teks putih lembut */
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  transition: background 0.3s, color 0.3s;
}

/* Hover untuk menu */
#mobile-nav ul li a:hover {
  color: #bcc8e6; /* Warna lebih muda dari gradasi */
  background: rgba(186, 194, 226, 0.2); /* Gradasi lembut biru muda */
  border-radius: 5px;
}

/* Menu aktif */
#mobile-nav ul .menu-item-active > a {
  color: #bcc8e6; /* Warna lebih terang untuk teks aktif */
  font-weight: bold; /* Lebih tebal untuk membedakan */
  background: rgba(186, 194, 226, 0.4); /* Warna latar belakang lembut */
  border-left: 4px solid #bcc8e6; /* Indikator aktif di sisi kiri */
  border-radius: 5px;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(26, 35, 78, 0.9); /* Dominan dengan transparansi */
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #f4f4f8;
}


/* Styling untuk Tombol Hubungi Kami */
.btn-get-wa {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 25px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #1a234e, #2d3865, #5a6ba8); /* Gradasi biru ke ungu lembut */
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  margin: 0 auto; /* Centering */
  display: flex; /* Centering in Flex Context */
  justify-content: center;
  align-items: center;
}

.btn-get-wa:hover {
  background: linear-gradient(135deg, #5a6ba8, #bcc8e6); /* Gradasi hover lebih cerah */
  color: #f4f4f8; /* Warna teks tetap lembut */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.btn-get-wa i {
  margin-right: 8px; /* Jarak kecil antara ikon dan teks */
  font-size: 20px; /* Ukuran ikon */
}

/* Posisi di tengah untuk mobile */
@media (max-width: 768px) {
  .btn-get-wa {
    display: block; /* Untuk memastikan tombol full width */
    width: fit-content; /* Sesuaikan lebar dengan teks */
    margin: 20px auto; /* Centered */
  }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative; /* Pastikan elemen mengikuti posisi relatif */
}
/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #1a234e;
  text-align: center;
  font-weight: 400;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #777;
  font-style: italic;
}

.section-header .section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: #cbb28a;
  background: linear-gradient(0deg, #cbb28a 0%, #1a234e 100%);
  margin: 0 auto;
  margin-bottom: 20px;
}


/* Section with background
--------------------------------*/
.section-bg {
  background: #eff5f5;
}

/* Banner Styles */
.banner-container {
  margin-left: -50vw;
  margin-right: -50vw;
  left: 50%;
  right: 50%;
  position: relative;
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
  margin-bottom: 100px; /* Jarak margin bawah */
}

.banner-container img {
  width: 100%;
  height: auto;
  display: block;
}


/* About Us Section
--------------------------------*/
#about {
  padding: 60px 0;
}

#about .about-img {
  height: 510px;
  overflow: hidden;
}

#about .about-img img {
  margin-left: -15px;
  max-width: 100%;
}

@media (max-width: 768px) {
  #about .about-img {
    height: auto;
  }
  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about .content .h2 {
  color: #333;
  font-weight: 300;
  font-size: 24px;
}

#about .content h3 {
  color: #777;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
}

#about .content p {
  line-height: 26px;
}

#about .content p:last-child {
  margin-bottom: 0;
}

#about .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #1dc8cd;
}

#about .content ul {
  list-style: none;
  padding: 0;
}

#about .content ul li {
  padding-bottom: 10px;
}




/* Product Pengiriman Section
--------------------------------*/
#pengiriman {
  background: #fff;
  padding: 60px 0 0 0;
}

#pengiriman .pengiriman-img {
  text-align: center;
  padding-top: 20px;
}

@media (min-width: 769px) {
  #pengiriman .pengiriman-img {
    padding-top: 120px;
    margin-top: -200px;
  }
}

#pengiriman .pengiriman-img img {
  margin-top: -50px;
  max-width: 100%;
}

#pengiriman .box {
  margin-bottom: 15px;
  text-align: center;
}

#pengiriman .icon {
  margin-bottom: 10px;
}

#pengiriman .icon i {
  color: #666666;
  font-size: 40px;
  transition: 0.5s;
}

#pengiriman .icon i:before {
  background: #cbb28a;
  background: linear-gradient(45deg, #1dc8cd 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#pengiriman .title {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 22px;
}

#pengiriman .title a {
  color: #111;
}

#pengiriman .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
}

#pengiriman .section-description {
  padding-bottom: 10px;
}

/* Product Advanced Pengiriman Section
--------------------------------*/
#advanced-pengiriman .pengiriman-row {
  padding: 60px 0 30px 0;
}

#advanced-pengiriman h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

#advanced-pengiriman h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  color: #999;
}

#advanced-pengiriman p {
  line-height: 24px;
  color: #777;
  margin-bottom: 30px;
}

#advanced-pengiriman i {
  color: #666666;
  font-size: 64px;
  transition: 0.5s;
  float: left;
  padding: 0 15px 0px 0;
  line-height: 1;
}

#advanced-pengiriman i:before {
  background: #1dc8cd;
  background: linear-gradient(45deg, #1dc8cd 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#advanced-pengiriman .advanced-feature-img-right {
  max-width: 100%;
  float: right;
  padding: 0 0 30px 30px;
}

#advanced-pengiriman .advanced-feature-img-left {
  max-width: 100%;
  float: left;
  padding: 0 30px 30px 0;
}

@media (max-width: 768px) {
  #advanced-pengiriman .advanced-feature-img-right, #advanced-pengiriman .advanced-feature-img-left {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  #advanced-pengiriman .advanced-feature-img-right, #advanced-pengiriman .advanced-feature-img-left {
    max-width: 100%;
    float: none;
    padding: 0 0 30px 0;
  }
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: linear-gradient(rgba(26, 35, 78, 0.65), rgba(29, 205, 89, 0.2)), url(../img/call-to-action-bg.gif) fixed center center;
  background-size: cover;
  padding: 80px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px;
  transition: background 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #1dc8cd;
  border: 2px solid #1dc8cd;
}

/* More pengiriman Section
--------------------------------*/
#more-pengiriman {
  padding: 60px 0 60px 0;
}

#more-pengiriman .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  transition: 0.4s;
}

#more-pengiriman .icon {
  float: left;
}

#more-pengiriman .icon i {
  color: #666666;
  font-size: 80px;
  transition: 0.5s;
  line-height: 0;
}

#more-pengiriman .icon i:before {
  background: #1a234e;
  background: linear-gradient(45deg, #1a234e 0%, #cbb28a 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#more-pengiriman h4 {
  margin-left: 100px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#more-pengiriman h4 a {
  color: #111;
}

#more-pengiriman p {
  font-size: 14px;
  margin-left: 100px;
  margin-bottom: 0;
  line-height: 24px;
}

@media (max-width: 767px) {
  #more-pengiriman .box {
    margin-bottom: 20px;
  }
  #more-pengiriman .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }
  #more-pengiriman h4, #more-pengiriman p {
    margin-left: 0;
    text-align: center;
  }
}

/* Clients Section
--------------------------------*/
#clients {
  padding: 30px 0;
  background: #fff;
  text-align: center; /* Posisikan gambar di tengah */
}
#clients .row {
  display: flex;
  justify-content: center; /* Memastikan semua kolom di tengah */
}

#clients .col-md-2 {
  text-align: center; /* Posisikan gambar di tengah */
}

#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
  transform: scale(1.05); /* Efek sedikit membesar saat hover */
}
@media (max-width: 768px) {
  #clients .col-md-2 {
    text-align: center; /* Posisikan gambar di tengah pada layar kecil */
    padding: 10px; /* Padding agar gambar tidak terlalu rapat */
  }
  #clients img {
    max-width: 60%;
  }
}

/* O-Shop Section
--------------------------------*/
#shop {
  padding: 60px 0;
}

#shop .box {
  padding: 40px;
  margin-bottom: 30px;
  /*box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);*/
  background: #fff;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

#shop .box:hover {
  box-shadow: 0px 0px 45px rgba(73, 78, 92, 0.3);
}

#shop h3 {
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 28px;
}

#shop h4 {
  font-size: 46px;
  color: #1dc8cd;
  font-weight: 300;
}

#shop h4 sup {
  font-size: 20px;
  top: -20px;
}

#shop h4 span {
  color: #bababa;
  font-size: 20px;
}

#shop .get-started-btn {
  background: #515e61;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #fff;
  transition: background 0.3s ease;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

#shop .get-started-btn:hover {
  background: #1dc8cd;
  transform: scale(1.05); /* Efek sedikit membesar saat hover */
}

#shop .featured {
  border: 2px solid #1dc8cd;
}

#shop .featured .get-started-btn {
  background: linear-gradient(45deg, #1de099, #1dc8cd);
}

#shop .box img {
  display: block;
  margin: 0 auto 20px;
}


/* Frequently Asked Questions Section
--------------------------------*/
#faq {
  padding: 60px 0;
  overflow-y: hidden; /* Pastikan tidak ada overflow horizontal */
  position: relative; /* Pastikan posisi relatif */
}

#faq #faq-list {
  padding: 0;
  list-style: none;
  margin: 0; /* Pastikan margin tidak menyebabkan elemen melampaui viewport */
  overflow-y: hidden; /* Pastikan tidak ada overflow vertikal pada ul */
}

#faq #faq-list li {
  border-bottom: 1px solid #ddd;
  overflow-y: hidden;
}

#faq #faq-list a {
  padding: 14px 20px 14px 0; /* Tambahkan ruang kiri-kanan secara proporsional */
  display: block;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
}

#faq #faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 16px;
}

#faq #faq-list p {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  #faq #faq-list a {
    font-size: 18px;
  }
  #faq #faq-list i {
    top: 13px;
  }
}

#faq #faq-list a.collapse {
  color: #1dc8cd;
}

#faq #faq-list a.collapsed {
  color: #000;
}

#faq #faq-list a.collapsed i::before {
  content: "\f2c7" !important;
}

/* Our Produk Section
--------------------------------*/
#produk {
  padding: 60px 0;
}

#produk .member {
  text-align: center;
  margin-bottom: 20px;
}

#produk .member .pic {
  margin-bottom: 15px;
  overflow: hidden;
  height: 260px;
}

#produk .member .pic img {
  max-width: 100%;
}

#produk .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

#produk .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

#produk .member .social {
  margin-top: 15px;
}

#produk .member .social a {
  color: #b3b3b3;
}

#produk .member .social a:hover {
  color: #1dc8cd;
}

#produk .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Gallery Section
--------------------------------*/
#gallery {
  padding: 60px 0 0 0;
  overflow-y: hidden; /* Hindari overflow horizontal */
  position: relative; /* Pastikan posisi relatif */
}

#gallery .container-fluid {
  padding: 0;
}

#gallery .gallery-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all ease-in-out 0.4s;
}

#gallery .gallery-item {
  overflow: hidden;
  position: relative;
  padding: 0;
  vertical-align: middle;
  text-align: center;
}

#gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
  width: 100%; /* Pastikan gambar tidak melebihi container */
  height: auto; /* Pastikan rasio gambar tetap */
}

#gallery .gallery-item:hover img {
  transform: scale(1.1);
}

#gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  #gallery .row.no-gutters {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Menampilkan 2 kolom pada layar kecil */
    gap: 8px; /* Ruang di antara gambar */
  }

  #gallery .gallery-item {
    flex-basis: auto; /* Menghilangkan pengaturan flex-basis */
    max-width: none; /* Menghilangkan pengaturan max-width */
  }
  #gallery .gallery-item img {
    max-width: 100%;
    height: auto; /* Pastikan rasio gambar tetap */
  }
}


/*--------------------------------------------------------------
# Contact Footer
--------------------------------------------------------------*/
#contact {
  background: #1a234e;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  text-align: center; /* Teks dan ikon di tengah */
}

#contact .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#contact .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#contact .col-lg-4 {
  text-align: center; /* Tengah pada layar besar */
  margin-bottom: 30px; /* Ruang di antara kolom */
}

#contact .col-lg-4 img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 15px; /* Ruang di bawah gambar */
}

#contact .col-lg-8 {
  text-align: left; /* Teks kiri */
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  text-align: left; /* Teks kiri */
}

#contact .social-links {
  text-align: right; /* Ikon kanan */
  padding-top: 10px; /* Ruang di atas ikon */
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #cbb28a;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #cbb28a;
}

#contact .social-links a:hover {
  background: #1dc8cd;
  color: #fff;
}

/*--------------------------------------------------------------
# General Footer Styles
--------------------------------------------------------------*/
#footer {
  background: #1a234e;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #333;
  font-size: 14px;
  text-align: center; /* Teks di tengah */
}

#footer .credits {
  font-size: 13px;
  color: #888;
}

#footer .footer-links a {
  color: #666;
  padding-left: 15px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: #1dc8cd;
}
