/**
* Template Name: Scaffold
* Template URL: https://bootstrapmade.com/scaffold-bootstrap-metro-style-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito Sans",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Warna latar utama tetap putih untuk menjaga tampilan bersih */
  --default-color: #555555; /* Warna teks default */
  --heading-color: #364146; /* Warna heading */
  --accent-color: #00adef; /* Warna biru dari logo */
  --secondary-accent-color: #f9c642; /* Warna kuning dari logo */
  --highlight-color: #e63946; /* Warna merah dari logo */
  --surface-color: #ffffff; /* Warna permukaan tetap putih */
  --contrast-color: #ffffff; /* Warna kontras */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
/* Warna khusus untuk menu navigasi */
:root {
  --nav-color: #364146; /* Warna utama untuk teks navigasi */
  --nav-hover-color: #00adef; /* Warna hover pada navigasi sesuai warna biru dari logo */
  --nav-mobile-background-color: #ffffff; /* Latar belakang menu mobile tetap putih */
  --nav-dropdown-background-color: #ffffff; /* Latar belakang dropdown tetap putih */
  --nav-dropdown-color: #555555; /* Warna teks dropdown */
  --nav-dropdown-hover-color: #00adef; /* Warna hover pada dropdown sesuai warna biru dari logo */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f6f8fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Mencegah scroll horizontal */
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  position: fixed; /* Header tetap di atas */
  top: 0; /* Pastikan berada di posisi teratas layar */
  left: 0;
  width: 100%; /* Memastikan header meluas sepanjang layar */
  margin-bottom: 20px; /* Tambahkan sedikit jarak bawah (opsional) */
}

body {
  padding-top: 80px; /* Sesuaikan dengan tinggi header agar elemen lain tidak tertimpa */
}

.slider-container {
  padding-top: 20px; /* Tambahkan jarak di bagian atas slider */
}
.header .logo {
  display: flex; /* Mengatur logo dan teks dalam satu baris */
  align-items: center; /* Vertikal center */
  text-decoration: none;
  position: relative;
  left: -20px;
}

.header .logo img {
  max-height: 65px; /* Ukuran maksimum logo */
  margin-left: 25px; /* Geser logo ke kanan */
}

.header .logo-text {
  display: flex; /* Mengatur teks agar dapat ditata lebih lanjut */
  flex-direction: column; /* Nama dan slogan ditata vertikal */
  align-items: flex-start; /* Mengatur teks rata kiri */
}

.header .sitename {
  font-size: 18px; /* Ukuran nama utama */
  font-weight: 700; /* Menebalkan teks */
  color: var(--heading-color);
  margin: 0; /* Menghapus margin untuk keseragaman */
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}


/*--------------------------------------------------------------
# Navigation Menu - Desktop
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 10px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 13px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}


/*--------------------------------------------------------------
# Navigation Menu - Mobile
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
  
}

/*--------------------------------------------------------------
# Search Form Styling
--------------------------------------------------------------*/
.search-form {
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-input {
  padding: 5px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  max-width: 200px;
  width: 100%;
}

.search-button {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 18px;
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--accent-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  text-decoration: none;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 5;
}

/*--------------------------------------------------------------
# Hero Section - Combined and Fixed
--------------------------------------------------------------*/
.hero {
  background: url(../img/bgbarupg.jpg) no-repeat center center / cover;
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 100px 0; /* Sesuaikan padding untuk keseimbangan */
  display: flex;
  align-items: flex-start; /* Posisi elemen lebih ke atas */
  justify-content: space-between; /* Sebar elemen secara merata */
  flex-wrap: wrap; /* Elemen responsif untuk layar kecil */
}

.hero {
  display: flex; /* Gunakan flexbox */
  flex-wrap: wrap; /* Izinkan elemen membungkus jika ruang tidak cukup */
  align-items: center; /* Pusatkan secara vertikal */
  justify-content: space-between; /* Sebarkan elemen di ruang horizontal */
  gap: 20px; /* Beri jarak antar elemen */
  text-align: left; /* Ubah text-align menjadi kiri untuk teks */
}

/* Area Gambar Hero */
.hero-img {
  display: flex; /* Pastikan elemen diatur dengan flexbox */
  justify-content: center; /* Pusatkan gambar secara horizontal */
  align-items: center; /* Pusatkan gambar secara vertikal */
  margin: 0; /* Hilangkan margin default */
  padding: 10px;
  max-width: 50%; /* Batasi lebar gambar hingga setengah kontainer */
  box-sizing: border-box; /* Sertakan padding dalam perhitungan lebar */
  margin-left: auto;
  margin-right: auto; /* Pusatkan gambar di desktop */
}

/* Area Teks Hero */
.hero-text {
  max-width: 50%; /* Batasi lebar teks hingga setengah kontainer */
  padding: 10px; /* Beri padding untuk teks */
  box-sizing: border-box;
  text-align: left; /* Pastikan teks berada di kiri */
}

.hero-img img {
  max-width: 100%; /* Pastikan gambar tidak melebihi container */
  height: 250px; /* Jaga proporsi gambar */
  object-fit: cover; /* Hindari gambar terpotong */
  transition: 0.3s; /* Efek transisi */
  width: 100%;
}

/* Area Teks Hero */
.hero-text {
  flex: 1;
  max-width: 50%;
  padding: 20px;
  margin-top: -40px; /* Naikkan posisi teks */
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 auto 20px; /* Atur margin default */
  padding: 0;
  color: var(--default-color);
  /* text-align: center; Pusatkan teks untuk tampilan yang lebih rapi */
}

/* Penyesuaian untuk layar kecil */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px; /* Kurangi ukuran font */
    margin-top: 0; /* Hindari margin negatif */
  }
}

/* Penyesuaian untuk layar yang lebih kecil lagi */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 28px;
    margin-top: 10px;
  }
}

.hero h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--default-color);
}

.hero p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 20px;
}

/* Tombol Aksi */
.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Responsivitas untuk Layar Kecil */
@media (max-width: 768px) {
  .hero {
    flex-direction: column; /* Elemen disusun vertikal */
    padding: 60px 20px; /* Kurangi padding */
    align-items: center;
  }

  .hero-img {
    max-width: 80%; /* Gambar lebih besar di layar kecil */
    margin-top: 0; /* Hindari margin negatif */
  }

  .hero-text {
    margin-top: -20px; /* Naikkan teks sedikit */
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .hero .btn-get-started {
    font-size: 14px;
    padding: 10px 15px;
  }
}

/* Responsivitas untuk Layar Besar */
@media (min-width: 1200px) {
  .hero {
    padding: 150px 0; /* Tambahkan padding untuk layar besar */
  }

  .hero-img {
    max-width: 45%; /* Atur proporsi gambar */
    margin-top: -40px; /* Naikkan gambar lebih jauh */
  }

  .hero-text {
    margin-top: -50px; /* Naikkan teks lebih jauh */
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.3;
  }

  .hero h2 {
    font-size: 36px;
    line-height: 1.4;
  }

  .hero p {
    font-size: 18px;
    line-height: 1.8;
  }
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
}

.about .content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
}

.about .content h2 {
  font-size: 24px;
  font-weight: 700;
}

.about .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .content .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .content .btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  color: var(--heading-color);
  padding: 15px 0;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}

.services .service-item .icon {
  margin-bottom: 10px;
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}

.services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

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

.services .service-item:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
/* Portfolio Item Styling */
.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
  background-color: #fff; /* Background putih untuk konten portfolio */
  border-radius: 8px; /* Radius sudut */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Bayangan untuk memberi efek kedalaman */
  transition: transform 0.2s ease-in-out; /* Transisi untuk efek zoom */
}

.portfolio .portfolio-content:hover {
  transform: scale(1); /* Efek zoom saat hover */
}

/*untuk atur font di kategori*/
.portfolio-info h4 {
  font-size: 14px; /* Ubah ukuran font sesuai kebutuhan */
  line-height: 1.2; /* Sesuaikan jarak antar baris jika diperlukan */
  margin-bottom: 5px; /* Atur jarak bawah jika terlalu besar */
}


.portfolio .portfolio-content img {
  width: 100%; /* Gambar akan mengisi kolom */
  height: 250px;
  object-fit: cover;
  border-radius: 8px; /* Menambahkan radius pada gambar */
  transition: 0.3s; /* Transisi pada gambar */
}

.portfolio .portfolio-info {
  margin-top: 20px; /* Jarak antara gambar dan informasi */
  text-align: center; /* Menyusun teks di tengah */
  padding-top: 20px; /* Memberikan ruang di dalam elemen informasi */

}

.portfolio .portfolio-info h4 {
  font-size: 16px;
  color: #333; /* Warna teks untuk nama produk */
  font-weight: 600;
  margin-bottom: 5px; /* Memberikan jarak bawah */
}

.portfolio .portfolio-info p {
  font-size: 14px;
  color: #007bff; /* Warna harga */
  font-weight: bold;
}

/* Portfolio Filters Styling */
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color); /* Warna pada hover dan filter aktif */
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

/* Responsive adjustments */
@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }

  .portfolio .portfolio-info h4 {
    font-size: 14px; /* Ukuran font untuk nama produk */
  }

  .portfolio .portfolio-info p {
    font-size: 13px; /* Ukuran font untuk harga */
  }
}

/* Hover Effects */
.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1; /* Menampilkan info saat hover */
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1); /* Zoom gambar saat hover */
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: var(--contrast-color);
  background: var(--accent-color);
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

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

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Pesan Section
--------------------------------------------------------------*/
#pesan {
  padding: 40px 0;
  background-color: #f9f9f9; /* Subtle background color */
}

#pesan .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

#pesan .section-title h2 {
  font-size: 25px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  letter-spacing: 0px; /* Slight spacing between letters */
}

#pesan .section-title p {
  font-size: 16px;
  color: #777;
  margin-top: 0;
  font-style: italic;
  max-width: 600px;
}

#pesan .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

#pesan .row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  width: 100%;
}

#pesan .info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(245, 245, 245, 0.6));
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#pesan .info-item:hover {
  transform: translateY(-5px); /* Smooth hover effect */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

#pesan .info-item i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

#pesan .info-item:hover i {
  color: var(--primary-color); /* Change icon color on hover */
}

#pesan .info-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

#pesan .info-item p {
  line-height: 24px;
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
  font-family: 'Arial', sans-serif;
}

/* Media Query for Tablets and Mobile Devices */
@media (max-width: 768px) {
  #pesan .section-title h2 {
    font-size: 28px;
  }

  #pesan .section-title p {
    font-size: 14px;
  }

  #pesan .info-item {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  #pesan .row {
    grid-template-columns: 1fr;
  }
}

/* Media Query for Larger Screens */
@media (min-width: 1024px) {
  #pesan .info-item {
    width: 280px;
    height: 340px;
  }

  #pesan .section-title h2 {
    font-size: 28px;
  }
}

/* Centering text and images */
#pesan .info-item img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

#pesan .info-item p,
#pesan .info-item h3 {
  text-align: center;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
#contact {
  padding: 30px 0;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}


#contact .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 10px;
}

#contact .section-title h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

#contact .section-title p {
  font-size: 16px;
  color: #666;
  margin-top: 0;
}

#contact .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px; /* Space between items */
}

#contact .row {
  grid-template-columns: 1fr; /* Stack items vertically on small screens */
  width: 100%; /* Full width for row */
}

#contact .info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

#contact .info-item i {
  font-size: 38px;
  color: var(--accent-color);
  margin-bottom: 15px; /* Space between icon and text */
}

#contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

#contact .info-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/* Media Query for Tablets and Mobile Devices */
@media (max-width: 768px) {
#contact .section-title h2 {
    font-size: 28px; /* Adjust font size for smaller screens */
  }

#contact .section-title p {
    font-size: 14px; /* Adjust font size for smaller screens */
  }

#contact .info-item {
    width: 100%; /* Make the info items take full width on mobile */
    height: auto; /* Adjust height to fit content */
    padding: 15px; /* Reduce padding on smaller screens */
  }

}

/* Media Query for Larger Screens */
@media (min-width: 1024px) {
#contact .info-item {
    width: 250px; /* Keep the width for desktop */
    height: 300px;
  }

#contact .section-title h2 {
    font-size: 32px; /* Larger font size for desktop */
  }
}

/* Centering text and images */
#contact .info-item img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto; /* Center the images */
}

#contact .info-item p,
#contact .info-item h3 {
  text-align: center; /* Ensure text is centered */
}



/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/

/* Slider Gambar Portfolio */
.portfolio-details .portfolio-details-slider img {
  width: 100%;
  height: auto; /* Menyesuaikan tinggi tanpa distorsi */
  object-fit: contain; /* Pastikan seluruh gambar terlihat */
  max-height: 500px; /* Batas tinggi agar gambar tidak terlalu besar */
  margin: auto; /* Memposisikan gambar di tengah */
}

/* Pagination pada Slider */
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 15px;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px; /* Jarak antar bullet */
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px; /* Ukuran konsisten untuk desktop */
  height: 12px;
  margin: 0 5px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  border-radius: 50%; /* Membuat pagination berbentuk bulat */
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  transform: scale(1.4); /* Perbesar bullet aktif untuk menonjolkan */
}

/* Info Portfolio */
.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 25px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px; /* Sudut lebih lembut */
}

.portfolio-details .portfolio-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
  line-height: 1.8; /* Keterbacaan lebih baik */
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 12px;
}

/* Deskripsi Portfolio */
.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  line-height: 1.8; /* Teks lebih rapi */
}

/* Media Query untuk Layar Kecil */
@media (max-width: 768px) {
  .portfolio-details .portfolio-details-slider img {
    max-width: 100%; /* Lebar penuh pada layar kecil */
    height: auto;
    object-fit: contain; /* Pastikan gambar tetap utuh */
  }

  .portfolio-details .portfolio-info {
    padding: 15px; /* Kurangi padding untuk layar kecil */
  }

  .portfolio-details .portfolio-info h3 {
    font-size: 20px; /* Ukuran teks lebih kecil */
  }

  .portfolio-details .portfolio-description h2 {
    font-size: 22px; /* Sesuaikan ukuran teks */
  }

  .portfolio-details-slider {
    max-width: 95%; /* Lebar slider untuk layar kecil */
  }
}

/* Pengaturan Slider */
.portfolio-details-slider {
  max-width: 90%; /* Atur lebar slider */
  margin: 0 auto; /* Posisikan slider di tengah */
  overflow: hidden;
  border-radius: 10px; /* Efek sudut melengkung lebih lembut */
}

.portfolio-details-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-details-slider img {
  object-fit: contain; /* Jaga proporsi gambar */
  width: 100%;
  height: auto; /* Responsif */
}

/* Tambahan Media Query untuk Layar Ekstra Kecil */
@media (max-width: 480px) {
  .portfolio-details .portfolio-info {
    padding: 10px;
  }

  .portfolio-details .portfolio-description h2 {
    font-size: 20px;
  }

  .portfolio-details .portfolio-info h3 {
    font-size: 18px;
  }
}

/* General Section Styles */
.about-us {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.container {
    max-width: 1140px;
    margin: 5 auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

/* Image Styling */
.about-us .row img {
    width: 100%;
    border-radius: 8px;
}

/* Description Box Styling */
.description-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.description-box h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.description-box p {
    font-size: 1rem;
    color: #666;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 10px;
}

.quote-author {
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 5px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 767px) {
    .about-us .row img {
        margin-bottom: 20px;
    }
    .description-box {
        padding: 15px;
    }
    .description-box h4 {
        font-size: 1.3rem;
    }
    .quote-text,
    .quote-author {
        font-size: 1rem;
    }
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Tampilan wa
--------------------------------------------------------------*/
/* Styling untuk ikon WhatsApp */
.whatsapp-icon {
    position: fixed; /* Tetap di satu posisi layar */
    bottom: 14px; /* Jarak dari bawah layar */
    right: 60px; /* Jarak dari kanan layar */
    display: flex; /* Gunakan flexbox untuk tata letak */
    flex-direction: row; /* Teks dan ikon berdampingan */
    align-items: center; /* Pusatkan secara vertikal */
    background-color: #25D366; /* Latar belakang hijau khas WhatsApp */
    border-radius: 10px; /* Membuat sudut membulat untuk tombol panjang */
    padding: 10px 15px; /* Ruang dalam container */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Efek bayangan */
    animation: fadeIn 0.5s; /* Efek animasi saat muncul */
    z-index: 1000; /* Memastikan elemen di atas elemen lainnya */
    transition: all 0.3s; /* Transisi untuk efek hover */
}

/* Styling untuk ikon WhatsApp */
.whatsapp-icon a {
    font-size: 28px; /* Ukuran ikon */
    color: #ffffff; /* Warna putih untuk ikon agar kontras dengan latar belakang hijau */
    transition: transform 0.3s; /* Efek transisi pada hover */
    text-decoration: none; /* Hilangkan garis bawah */
    margin-right: 10px; /* Jarak antara ikon dan teks */
}

/* Styling untuk teks status */
.admin-status {
    font-size: 14px; /* Ukuran teks status */
    color: #ffffff; /* Warna teks putih untuk kontras dengan latar belakang hijau */
    text-align: center; /* Pusatkan teks */
}

/* Efek saat ikon di-hover */
.whatsapp-icon:hover {
    transform: scale(1.05); /* Perbesar sedikit saat di-hover */
}

/* Animasi saat muncul */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsif */
@media (max-width: 768px) {
    .whatsapp-icon {
        padding: 8px 12px; /* Sesuaikan ruang untuk layar kecil */
    }

    .whatsapp-icon a {
        font-size: 24px; /* Ukuran ikon lebih kecil */
    }

    .admin-status {
        font-size: 12px; /* Ukuran teks lebih kecil */
    }
}

/*--------------------------------------------------------------
# Produk Terlaris Section
--------------------------------------------------------------*/

/* Menata bagian produk terlaris */
.produk-terlaris {
  padding: 50px 0;
  background-color: #f8f9fa; /* Latar belakang terang untuk produk terlaris */
}

.produk-terlaris .container {
  margin-bottom: 30px;
}

.produk-terlaris h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

/* Menata layout produk terlaris */
.produk-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.produk-item {
  width: 250px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
  margin-bottom: 20px; /* Menambahkan jarak antar produk */
  height: 400px; /* Menetapkan tinggi tetap untuk setiap produk */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Mengatur gambar untuk memiliki ukuran tetap dan proporsional */
.produk-item img {
  width: 100%;
  height: 200px; /* Menjaga tinggi gambar agar konsisten */
  object-fit: cover; /* Pastikan gambar mengisi area secara proporsional */
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Menambahkan jarak antara gambar dan nama produk */
.produk-item h4 {
  font-size: 1.25rem; /* Ukuran font untuk nama produk */
  font-weight: 600;
  color: #333;
  margin-bottom: 10px; /* Memberikan jarak bawah */
}

/* Menambahkan jarak antara nama produk dan "Total Terjual" */
.produk-item p {
  font-size: 1rem;
  color: #777;
  margin: 5px 0;
}

.produk-item .btn-detail {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.produk-item .btn-detail:hover {
  background-color: #0056b3;
}

/* Hover effect untuk produk terlaris */
.produk-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsif: Layout produk pada perangkat lebih kecil (tablet dan mobile) */
@media (max-width: 768px) {
  .produk-list {
    flex-direction: column;
    align-items: center;
  }

  .produk-item {
    width: 90%; /* Mengatur lebar produk agar mengisi sebagian besar lebar layar */
    margin-bottom: 20px; /* Jarak antar produk */
    height: auto; /* Membebaskan tinggi produk pada perangkat lebih kecil */
  }

  .produk-item img {
    height: 180px; /* Menurunkan tinggi gambar untuk tampilan lebih baik di mobile */
  }
}

/* Responsif untuk perangkat sangat kecil (handphone) */
@media (max-width: 575px) {
  .produk-item {
    width: 100%; /* Produk mengisi seluruh lebar layar */
    padding: 15px; /* Mengurangi padding agar lebih efisien pada layar kecil */
    height: auto; /* Mengatur produk agar bisa menyesuaikan tinggi konten */
  }

  .produk-item img {
    height: 150px; /* Mengurangi ukuran gambar untuk tampilan lebih optimal di handphone */
  }

  .produk-item h4 {
    font-size: 16px; /* Ukuran font untuk nama produk */
  }

  .produk-item p {
    font-size: 14px; /* Ukuran font untuk deskripsi produk */
  }

  .produk-item .btn-detail {
    padding: 8px 16px; /* Menyesuaikan ukuran tombol di perangkat kecil */
  }
}

.produk-terlaris .portfolio-info h4 {
  margin-top: 10px; /* Memberikan jarak antara gambar dan nama produk */
}

/* Menambahkan CSS khusus untuk warna "Total Terjual" */
.produk-terlaris .portfolio-info p:last-of-type {
  color: #000; /* Menjadikan warna teks "Total Terjual" hitam */
  margin-top: 5px; /* Menambahkan jarak di atas "Total Terjual" */
}

/* Menyamakan ukuran teks nama produk dengan total terjual */
.produk-terlaris .portfolio-info h4, 
.produk-terlaris .portfolio-info p:last-of-type {
  font-size: 1rem; /* Menyamakan ukuran font dengan "Total Terjual" */
  color: #000; /* Warna teks hitam */
}

/* Mengatur gambar untuk produk terlaris */
.produk-terlaris .portfolio-content img {
  width: 100%; /* Mengisi lebar kontainer */
  height: 200px; /* Sama dengan ukuran gambar pada produk lainnya */
  object-fit: cover; /* Pastikan gambar mengisi area dengan proporsional */
  border-radius: 8px; /* Menjaga sudut gambar tetap rounded */
  margin-bottom: 15px; /* Memberikan jarak antara gambar dan informasi produk */
}