/*--------------------------------------------------------------
# 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-serif;
  --nav-font: "Lato", 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;
  /* Background color for the entire website, including individual sections */
  --default-color: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d405f;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3b4ef8;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* 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 */
:root {
  --nav-color: #ffffff;
  /* The default color of the main navmenu links */
  --nav-hover-color: #fdf731;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3b4ef8;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

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

.badge-visitor-info {
  /* Ganti warna latar belakang dengan warna yang lebih terang atau transparan jika read-more tidak punya background solid */
  background-color: rgba(0, 123, 255, 0.1);
  /* Biru muda transparan */
  color: #ffffff;
  /* Teks biru utama */
  padding: 6px 12px;
  border-radius: 20px;
  /* Tetap bulat seperti pil */
  font-size: 0.85em;
  /* Ukuran font disesuaikan agar terbaca */
  font-weight: 600;
  /* Sedikit lebih tebal, mirip read-more */
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* Spasi antara teks dan tombol */
  border: 2px solid #fdf731;
  /* Border biru yang senada */
  transition: all 0.3s ease;
  cursor: default;
  /* Karena ini informasi, bukan link utama */
}

.badge-visitor-info:hover {
  background-color: rgba(0, 123, 255, 0.2);
  /* Biru sedikit lebih gelap saat hover */
  transform: translateY(-1px);
}

.light-background {
  --background-color: #f6f7ff;
  --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
--------------------------------------------------------------*/
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(--background-color);
  background-color: #16304c;
  padding: 20px 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s; /* Tambahkan prefiks Webkit */
  z-index: 997;
}

.header .logo {
  position: relative;
}

/* Aturan default untuk logo di layar besar (atau sebagai fallback) */
.header .logo img {
  position: absolute;
  top: -70px; /* Naikkan logo dari posisi header */
  left: 10px;
  max-height: 150px;
  z-index: 10;
}


.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .header-social-links {
  padding-right: 15px;
}

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

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

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

/* --- Media Queries (diurutkan dari max-width TERBESAR ke TERKECIL) --- */

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

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

  .header .navmenu {
    order: 3;
  }
  /* Tidak perlu mengubah .header .logo img di sini, karena 1149px akan menangani */
}

@media (max-width: 1149px) {
  .header .logo img {
    position: absolute;
    top: -60px;
    left: 10px;
    max-height: 120px;
    z-index: 10;
  }
}

@media (max-width: 768px) {
  .header .logo img {
    position: absolute;
    top: auto; /* Bisa juga disesuaikan jika ingin nilai spesifik untuk 768px */
    max-height: 90px;
    transform: none; /* Pastikan transform juga tidak aktif jika ada */
    -webkit-transform: none; /* Tambahkan prefiks Webkit */
    z-index: 10;
  }
}

@media (max-width: 375px) {
  .header .logo img {
    position: absolute;
    top: -45px; /* Jarak dari atas */
    left: 1px;  /* Jarak dari kiri */
    max-height: 90px; /* Tinggi maksimal */
    z-index: 10; /* Tetap di atas elemen lain */
  }
}

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

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

  .navmenu ul {
    margin-left: 150px;
    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 15px;
    font-size: 16px;
    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:last-child a {
    padding-right: 0;
  }

  .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;
  }
}

/* Navmenu - 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;
  }
}

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

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.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 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

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

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

.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-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

/*--------------------------------------------------------------
# Specificity Fix for .btn-inline-custom in Footer
--------------------------------------------------------------*/
/* Pastikan gaya normal .btn-inline-custom diterapkan di footer */
.footer .btn-inline-custom {
  /* Copy-paste properti dari .btn-inline-custom di atas, jika diperlukan.
     Biasanya tidak perlu semua, hanya yang mungkin ditimpa */
  background: linear-gradient(135deg, #16304c 0%, #2a527f 100%);
  color: #ffffff;
  /* Tambahkan properti lain yang mungkin ditimpa seperti padding, border-radius dll. */
}

/* Pastikan efek kilau ::before juga bekerja di footer */
.footer .btn-inline-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transition: transform 0.4s ease-out;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  z-index: 2;
}

/* Ini adalah aturan KRITIS untuk efek HOVER di footer */
.footer .btn-inline-custom:hover {
  background: linear-gradient(135deg, #2a527f 0%, #16304c 100%); /* Membalik gradien */
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4); /* Bayangan lebih besar */
  transform: translateY(-5px); /* Bergerak ke atas */
  -webkit-transform: translateY(-5px);
  color: #fdf731; /* Warna kuning saat hover */
  /* Pastikan properti lain juga tidak ditimpa di sini jika diperlukan */
}

.footer .btn-inline-custom:hover::before {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

/* Aturan ikon di footer */
.footer .btn-inline-custom i {
  /* Copy-paste properti ikon jika perlu ditimpa */
  font-size: 1rem;
  margin-left: 0;
  line-height: 1;
  transition: transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
  z-index: 3;
}

.footer .btn-inline-custom:hover i.bi-arrow-right {
  transform: translate(5px, 0);
  -webkit-transform: translate(5px, 0);
}

/* Media Queries untuk tombol di footer */
@media (max-width: 768px) {
  .footer .btn-inline-custom {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer .btn-inline-custom {
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: 40px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color); /* Background preloader */
  display: flex; /* Untuk memposisikan konten di tengah */
  justify-content: center;
  align-items: center;
  transition: all 0.6s ease-out;
  opacity: 1;
  visibility: visible;
}

/* Lingkaran Luar (Kuning) - Segmen Atas & Bawah */
#preloader::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Pusatkan lingkaran */
  
  width: 220px; /* Ukuran lingkaran luar, sesuaikan untuk jarak */
  height: 220px;
  border-radius: 50%;
  
  /* Membuat hanya bagian atas dan bawah border yang terlihat (kuning) */
  border: 6px solid transparent; /* Border dasar transparan */
  border-top-color: #fcf630;    /* Segmen atas kuning */
  border-bottom-color: #fcf630; /* Segmen bawah kuning */
  
  /* Animasi putar */
  animation: animate-preloader 1.5s linear infinite;
  
  z-index: 1; /* Pastikan lingkaran ini di bawah logo */
}

/* Lingkaran Dalam (Biru Tua) - Segmen Kiri & Kanan */
#preloader::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Pusatkan lingkaran */
  
  width: 190px; /* Ukuran lingkaran dalam, sedikit lebih kecil dari lingkaran luar */
  height: 190px;
  border-radius: 50%;
  
  /* Membuat hanya bagian kiri dan kanan border yang terlihat (biru tua) */
  border: 6px solid transparent; /* Border dasar transparan */
  border-left-color: #16304d;    /* Segmen kiri biru tua */
  border-right-color: #16304d;   /* Segmen kanan biru tua */
  
  /* Animasi putar berlawanan arah agar terlihat terpisah */
  animation: animate-preloader 1.5s linear reverse infinite; 
  
  z-index: 1; /* Pastikan lingkaran ini juga di bawah logo */
}


/* Animasi Putar (digunakan oleh kedua pseudo-element) */
@keyframes animate-preloader {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Gaya untuk Logo di Preloader */
#preloader .preloader-logo {
  max-width: 150px; /* Ukuran maksimum logo Anda */
  height: auto;
  opacity: 0; /* Mulai dengan opacity 0 */
  animation: animate-logo-fade-in 1.5s forwards ease-out, animate-logo-pulse 2s infinite ease-in-out; /* Animasi logo */
  position: relative; /* Penting: agar logo berada di atas kedua lingkaran */
  z-index: 2; /* Pastikan logo di atas kedua lingkaran */
}

/* Animasi Fade-in Logo */
@keyframes animate-logo-fade-in {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animasi Pulse (denyutan) Logo (opsional) */
@keyframes animate-logo-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Kelas untuk menyembunyikan preloader setelah loading (ditambahkan oleh JS) */
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #fcf630;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #16304c;
  line-height: 0;
}

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

.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);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav 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);*/
  background-image: url('https://png.pngtree.com/background/20210714/original/pngtree-stationery-border-background-flying-book-cartoon-school-season-picture-image_1211979.jpg');
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #16304d;
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  /* Base minimum height for large screens */
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero .hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keep 'cover' to ensure it fills the area */
  object-position: center top; /* CHANGE THIS: Fokuskan ke bagian atas gambar */
  z-index: 1;
  filter: brightness(85%);
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--contrast-color, white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  padding-top: 120px;
  /* Padding for content from top of container */
  padding-bottom: 80px;
  /* Increased padding bottom to give more space for buttons */
}

.hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: white;
  margin: 5px auto 30px auto;
  font-size: 20px;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  max-width: 800px;
}

.btn-jelajahi {

/* Gradien biru gelap yang elegan */

background: linear-gradient(135deg, #16304c 0%, #2a527f 100%);

/* Dari nav-mobile-background ke biru yang sedikit lebih terang */

color: #ffffff;

/* Teks putih bersih */

padding: 15px 30px;

/* Padding lebih besar agar terasa substansial */

border: none;

border-radius: 50px;

/* Lebih membulat, mirip pil */

font-size: 18px;

cursor: pointer;

box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);

/* Bayangan lebih dalam */

transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

/* Transisi lebih halus dan dinamis */

text-decoration: none;

display: inline-flex;

align-items: center;

justify-content: center;

font-weight: 700;

/* Lebih tebal agar menonjol */

letter-spacing: 0.5px;

/* Sedikit spasi antar huruf */

overflow: hidden;

/* Penting untuk efek pseudo-elemen */

position: relative;

/* Penting untuk efek pseudo-elemen */

z-index: 1;

/* Untuk mengatur stacking context */

}

/* Pseudo-elemen untuk efek kilau/overlay pada hover */

.btn-jelajahi::before {

content: '';

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

background: rgba(255, 255, 255, 0.15);

/* Overlay putih transparan */

transform: translateX(-100%);

transition: transform 0.4s ease-out;

z-index: 2;

}

/* Efek hover untuk tombol */

.btn-jelajahi:hover {

background: linear-gradient(135deg, #2a527f 0%, #16304c 100%);

/* Membalik gradien saat hover */

box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);

/* Bayangan lebih besar saat hover */

transform: translateY(-5px);

/* Bergerak lebih jauh ke atas */

color: #fdf731;

/* Ubah warna teks menjadi kuning saat hover */

}



.btn-jelajahi:hover::before {

transform: translateX(0);

/* Kilau muncul dari kiri */

}



.btn-jelajahi i {

margin-left: 10px;

font-size: 22px;

/* Ukuran ikon sedikit lebih besar */

transition: transform 0.3s ease;

/* Transisi untuk ikon */

z-index: 3;

/* Pastikan ikon di atas pseudo-elemen */

animation: bounce 3s infinite;

/* Animasi bounce default */

}



/* Efek animasi bounce pada ikon panah ke bawah */

@keyframes bounce {



0%,

20%,

50%,

80%,

100% {

transform: translateY(0);

}



40% {

transform: translateY(5px);

}



60% {

transform: translateY(3px);

}

}



.btn-jelajahi:hover i {

transform: translateY(3px);

/* Ikon sedikit turun saat hover */

animation: none;

/* Hentikan animasi bounce saat hover */

}



/* --- Media Queries untuk Responsivitas --- */



/* Untuk layar yang lebih kecil dari 768px (misalnya tablet dalam mode portrait, sebagian besar ponsel) */

@media (max-width: 768px) {

.btn-jelajahi {

padding: 12px 25px;

/* Padding sedikit lebih kecil */

font-size: 16px;

/* Ukuran font sedikit lebih kecil */

box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);

/* Bayangan sedikit dikurangi */

}



.btn-jelajahi i {

font-size: 18px;

/* Ukuran ikon sedikit lebih kecil */

}



/* Jika posisi tombol perlu disesuaikan lebih jauh pada mobile */

.button-wrapper {

/* Anda mungkin perlu menyesuaikan 'bottom' lagi di sini jika 5% terlalu rendah/tinggi pada mobile */

/* Contoh: bottom: 3%; */

}

}



/* Untuk layar yang sangat kecil (misalnya ponsel kecil) */

@media (max-width: 480px) {

.btn-jelajahi {

padding: 10px 20px;

/* Padding lebih kecil lagi */

font-size: 14px;

/* Ukuran font lebih kecil lagi */

border-radius: 40px;

/* Membulat sedikit lebih kecil */

}



.btn-jelajahi i {

margin-left: 8px;

/* Jarak ikon sedikit dikurangi */

font-size: 16px;

/* Ukuran ikon lebih kecil lagi */

}

}

/* --- Gaya & Posisi Kontainer Tombol (hero-action-buttons) --- */
.hero .hero-action-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: auto;
  /* Pushes the button container to the bottom within the flex container */
  margin-bottom: -68px;
  /* **FIXED**: Ubah dari -68px menjadi 0. Gunakan padding-bottom pada .container */

  position: relative;
  z-index: 3;
}

/* --- Gaya Tombol "Jelajahi Sekarang" --- */
.hero .hero-explore-main-button {
  color: var(--contrast-color, white);
  text-decoration: none;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: 50px;
  background: #16304c;
  backdrop-filter: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease-in-out;
}

.hero .hero-explore-main-button i {
  font-size: 1.8rem;
  transition: transform 0.4s ease-in-out;
  line-height: 1;
  color: var(--contrast-color, white);
}

.hero .hero-explore-main-button:hover {
  color: var(--contrast-color, white);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-8px) scale(1.05);
}

.hero .hero-explore-main-button:hover i {
  transform: translateY(8px) scale(1.1);
  color: var(--contrast-color, white);
}

/* --- Gaya Tombol "Lihat Video" --- */
.hero .btn-watch-video {
  font-size: 1.1rem;
  transition: 0.4s;
  color: var(--contrast-color, white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  border-radius: 50px;
  padding: 12px 25px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.hero .btn-watch-video i {
  color: var(--contrast-color, white);
  font-size: 2.2rem;
  transition: 0.3s;
  line-height: 0;
}

.hero .btn-watch-video:hover {
  color: var(--contrast-color, white);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero .btn-watch-video:hover i {
  color: var(--contrast-color, white);
  transform: scale(1.1);
}

/* --- Keyframes for Animation --- */
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991px) {

  /* Tablets and smaller laptops */
  .hero {
    min-height: 70vh;
  }

  .hero .hero-background-image {
    object-position: center 35%;
    /* Sesuaikan fokus gambar untuk tablet */
  }

  .hero .container {
    padding-top: 100px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: 40px;
  }

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

@media (max-width: 768px) {

  /* Larger smartphones in landscape, smaller tablets */
  .hero {
    min-height: 60vh;
  }

  .hero .hero-background-image {
    object-position: center 50%;
    /* Pusatkan gambar secara vertikal di perangkat yang lebih sempit */
    filter: brightness(80%);
    /* Sedikit lebih gelap untuk kontras teks yang lebih baik */
  }

  .hero .container {
    padding-top: 60px;
    padding-bottom: 50px;
    justify-content: flex-end;
  }

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

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

  /* Kontainer tombol di mobile: Stack vertically */
  .hero .hero-action-buttons {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0;
  }

  /* Reset transform effects on hover for mobile for simplicity */
  .hero .hero-explore-main-button,
  .hero .btn-watch-video {
    font-size: 1rem;
    padding: 10px 20px;
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .hero .hero-explore-main-button i,
  .hero .btn-watch-video i {
    font-size: 1.6rem;
    transform: none;
  }

  .hero .hero-explore-main-button:hover,
  .hero .btn-watch-video:hover {
    transform: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  .hero .hero-explore-main-button:hover i,
  .hero .btn-watch-video:hover i {
    transform: none;
  }
}

@media (max-width: 576px) {

  /* Smaller smartphones */
  .hero {
    min-height: 50vh;
  }

  .hero .hero-background-image {
    object-position: center 60%;
    /* Geser fokus sedikit lebih rendah untuk layar yang sangat pendek */
    filter: brightness(75%);
    /* Lebih gelap lagi untuk kontras maksimal di layar kecil */
  }

  .hero .container {
    padding-top: 40px;
    padding-bottom: 5px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.1;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Gaya untuk Daftar Link (Seperti Tabel 2 Kolom dengan Flexbox)
--------------------------------------------------------------*/
ul {
  list-style: none;
  /* Menghapus bullet default dari daftar */
  padding: 0;
  margin: 0;
}

li {
  display: flex;
  /* Mengaktifkan Flexbox untuk setiap item daftar (ini seperti satu baris/row) */
  align-items: center;
  /* Menyelaraskan konten (teks dan tombol) secara vertikal di tengah */
  justify-content: space-between;
  /* Mendorong elemen pertama (teks) ke kiri, elemen kedua (tombol) ke kanan */
  padding: 12px 0;
  /* Memberi jarak vertikal antar baris */
  border-bottom: 1px solid #eee;
  /* Garis pemisah antar baris untuk tampilan tabel */
}

li:last-child {
  border-bottom: none;
  /* Menghapus garis pemisah di baris terakhir */
}

.link-description {
  /* Ini adalah 'kolom' kiri */
  flex-grow: 1;
  /* Memungkinkan teks deskripsi mengambil semua ruang kosong yang tersedia */
  margin-right: 20px;
  /* Jarak antara teks deskripsi dan tombol */
  font-size: 1.05rem;
  /* Ukuran font teks deskripsi */
  color: #333;
  /* Warna teks deskripsi */
}

/*--------------------------------------------------------------
# Gaya untuk Daftar Link (Seperti Tabel 2 Kolom dengan Flexbox)
--------------------------------------------------------------*/
ul {
  list-style: none;
  /* Menghapus bullet default dari daftar */
  padding: 0;
  margin: 0;
}

li {
  display: flex;
  /* Mengaktifkan Flexbox untuk setiap item daftar (ini seperti satu baris/row) */
  align-items: center;
  /* Menyelaraskan konten (teks dan tombol) secara vertikal di tengah */
  /* --- PERUBAHAN UTAMA DI SINI --- */
  justify-content: flex-start;
  /* Mengatur semua item ke awal (kiri) kontainer flex */
  gap: 20px;
  /* Memberikan jarak antar item secara horizontal (ini modern dan bagus!) */
  /* Jika 'gap' belum didukung di browser target Anda, gunakan margin-right pada .link-description */
  /* --- AKHIR PERUBAHAN --- */

  padding: 12px 0;
  /* Memberi jarak vertikal antar baris */
  border-bottom: 1px solid #eee;
  /* Garis pemisah antar baris untuk tampilan tabel */
}

li:last-child {
  border-bottom: none;
  /* Menghapus garis pemisah di baris terakhir */
}

.link-description {
  /* Ini adalah 'kolom' kiri */
  /* flex-grow: 1; --> Hapus ini atau set ke 0 jika Anda ingin mengontrol lebarnya lebih spesifik */
  /* margin-right: 20px; --> Ini bisa dihapus jika menggunakan 'gap' pada li */
  /* Jika Anda tidak menggunakan 'gap', aktifkan kembali margin-right di sini */

  /* Contoh: Anda bisa memberi lebar maksimum atau lebar fleksibel yang lebih terkontrol */
  max-width: 70%;
  /* Contoh: agar kolom deskripsi tidak terlalu lebar */
  /* Atau gunakan flex-basis jika Anda ingin kontrol lebar yang lebih granular */

  font-size: 1.05rem;
  /* Ukuran font teks deskripsi */
  color: #333;
  /* Warna teks deskripsi */
}

/*--------------------------------------------------------------
# Gaya untuk Tombol Inline Baru (btn-inline-custom)
--------------------------------------------------------------*/
.btn-inline-custom {
  background: linear-gradient(135deg, #16304c 0%, #2a527f 100%);
  color: #ffffff;
  padding: 8px 15px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.btn-inline-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transition: transform 0.4s ease-out;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  z-index: 2;
}

.btn-inline-custom:hover {
  background: linear-gradient(135deg, #2a527f 0%, #16304c 100%);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  color: #fdf731; /* Warna kuning saat hover */
}

.btn-inline-custom:hover::before {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.btn-inline-custom i {
  font-size: 1rem;
  margin-left: 0;
  line-height: 1;
  transition: transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
  z-index: 3;
}

.btn-inline-custom:hover i.bi-arrow-right {
  transform: translate(5px, 0);
  -webkit-transform: translate(5px, 0);
}

/* --- Responsivitas untuk kelas baru --- */
@media (max-width: 768px) {
  .btn-inline-custom {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  .btn-inline-custom i {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .btn-inline-custom {
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: 40px;
  }
  .btn-inline-custom i {
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# About Section (Fixed and Consolidated Styles) - PENDAFTARAN
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color, #2563eb);
}

#about p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #374151;
  text-align: justify;
  padding: 0 15px;
}

#about .container p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#about p span {
  margin-left: 0 !important; /* !important ini bisa saja menyebabkan unexpected behavior di tempat lain jika ada margin-left yang diinginkan */
}

@media (max-width: 768px) {
  #about p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
  }

  #about .container p {
    padding: 0 20px;
  }
}

/* Consolidated and Prioritized Style for ALL .read-more buttons within #about and #services */
/* Kita akan pecah sedikit untuk memastikan #about mendapat prioritas jika ada konflik */

/* Gaya dasar untuk semua tombol read-more */
.about .read-more,
.services .read-more {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  align-items: center;
  gap: 8px;
  background-color: #16304c;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Pastikan ini ada */
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: normal;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Efek kilau pseudo-elemen untuk semua tombol read-more */
.about .read-more::before,
.services .read-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transition: transform 0.4s ease-out;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  z-index: 2;
}


/* --- HOVER STATE --- */

/* Gaya hover untuk tombol di section #services (karena sudah berhasil) */
.services .read-more:hover {
  background: linear-gradient(135deg, #2a527f 0%, #16304c 100%);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  color: #fdf731;
}

/* Gaya hover untuk tombol di section #about (dengan specificity lebih tinggi) */
#about .read-more:hover {
  background: linear-gradient(135deg, #2a527f 0%, #16304c 100%);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  color: #fdf731;
}

/* Efek hover untuk pseudo-elemen */
.about .read-more:hover::before,
.services .read-more:hover::before {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}


/* Gaya ikon untuk semua tombol read-more */
.about .read-more i,
.services .read-more i {
  font-size: 1rem;
  margin-left: 0;
  line-height: 1;
  transition: transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
  z-index: 3;
}

/* Gaya ikon hover untuk tombol di #about (panah kanan) */
#about .read-more:hover i.bi-cursor-fill { /* Ganti bi-arrow-right dengan bi-cursor-fill jika itu ikonnya */
    transform: translate(5px, 0); /* Menggeser ikon panah */
    -webkit-transform: translate(5px, 0);
}

/* Gaya ikon hover untuk tombol di #services (telepon) */
.services .read-more:hover i.bi-telephone-outbound-fill { /* Ganti bi-telephone dengan bi-telephone-outbound-fill */
    /* Jika Anda ingin ikon telepon juga bergerak, tambahkan transform di sini */
    /* Contoh: transform: translateY(-3px); */
    /* Atau biarkan kosong jika tidak ada gerakan khusus */
}


/* --- Media Queries untuk Responsivitas (Selector disederhanakan ke .read-more) --- */
@media (max-width: 768px) {
  /* Menggunakan selector .read-more karena di dalam media query ini, dia akan berlaku untuk keduanya */
  .read-more {
    padding: 10px 20px;
    font-size: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 480px) {
  .read-more {
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 6px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

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

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

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

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

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 40px;
  margin: -1px;
  border-radius: 0;
}

.why-us .card span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-color);
}

.why-us .card h4 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.why-us .card p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Services Section (Fixed and Consolidated Styles) - CALL CENTER 
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color, #e0f7fa), transparent 85%);
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color, #2563eb);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: var(--contrast-color, white);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

#services p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #374151;
  text-align: justify;
  padding: 0 15px;
}

#services .container p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#services p span {
  margin-left: 0 !important;
}

@media (max-width: 768px) {
  #services p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
  }

  #services .container p {
    padding: 0 20px;
  }
}

.services .service-item:hover {
  border-color: var(--accent-color, #2563eb);
}

.services .service-item:hover h3 {
  color: var(--accent-color, #2563eb);
}

/* Tambahan dari diskusi sebelumnya untuk tombol inline jika masih relevan */
/* Gaya Umum untuk Tombol "read-more" (Gaya Dasar) */
.read-more-inline {
  /* Hanya untuk tombol inline, bukan tombol utama Call Center */
  background-color: #16304c;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.read-more-inline:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.read-more-inline i {
  font-size: 1rem;
  margin-left: 0;
  line-height: 1;
  transition: transform 0.3s ease;
}

.read-more-inline:hover i.bi-arrow-right {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.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: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

/* Gaya untuk keadaan NORMAL (default) */
.portfolio .portfolio-filters li {
  color: #555; /* Contoh warna teks default (sesuaikan dengan warna default Anda) */
  cursor: pointer;
  padding: 8px 15px; /* Padding untuk spasi */
  display: inline-block; /* Penting untuk border-bottom */
  border-bottom: 2px solid transparent; /* Untuk persiapan underline */
  transition: all 0.3s ease; /* Transisi untuk semua perubahan */
}

/* Gaya untuk keadaan HOVER (saat mouse di atasnya, tapi BELUM active) */
.portfolio .portfolio-filters li:hover {
  color: #16304d; /* Warna teks menjadi biru tua saat hover */
  border-bottom: 2px solid transparent; /* Tidak ada underline saat hover */
}

/* Gaya untuk keadaan ACTIVE (.filter-active) */
.portfolio .portfolio-filters li.filter-active {
  color: #16304d; /* Warna teks menjadi biru tua saat active */
  border-bottom: 2px solid #fcf630; /* Garis bawah kuning saat active */
}

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

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

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

.portfolio .portfolio-item {
  position: relative;
  /* Beri sedikit ruang di bawah item agar info tidak terlalu rapat dengan item berikutnya */
  margin-bottom: 30px;
  /* Tambahkan ini jika belum ada */
  overflow: hidden;
  /* Penting untuk menyembunyikan bagian gambar yang terpotong */
  /* Opsional: Tambahkan border-radius jika gambar Anda ingin sudut membulat */
  border-radius: 8px;
  /* Sesuaikan dengan border-radius pada portfolio-info jika diinginkan */
}

/* --- PERUBAHAN UTAMA UNTUK MENYESUAIKAN TINGGI GAMBAR --- */
.portfolio .portfolio-item img {
  width: 100%;
  /* Pastikan gambar mengisi lebar kolom */
  height: 250px;
  /* **INI PENTING**: Atur tinggi yang diinginkan untuk semua gambar */
  object-fit: cover;
  /* **INI SANGAT PENTING**: Memastikan gambar mengisi area tanpa terdistorsi, memotong bagian yang tidak sesuai */
  display: block;
  /* Menghilangkan spasi ekstra di bawah gambar */
}

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


.portfolio .portfolio-item .portfolio-info {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  opacity: 1;
  /* **FIXED**: Selalu visible (seperti saat di-hover) */
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 20px;
  /* **FIXED**: Posisi default sama dengan posisi saat di-hover */
  z-index: 3;
  /* Transisi tetap ada jika ada properti lain yang mungkin berubah, tapi untuk opacity & bottom tidak lagi. */
  transition: all ease-in-out 0.3s;
  padding: 15px;
  /* Tambahkan border-radius agar bentuknya tetap bagus seperti saat di-hover */
  border-radius: 8px;
  /* Sesuaikan dengan border-radius gambar atau desain Anda */
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
  /* Biarkan ini, ikon akan tetap di kanan */
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
  /* Biarkan ini, ikon akan tetap di kanan */
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

/* **FIXED**: Hapus atau netralkan efek hover pada item portfolio secara keseluruhan */
/* Karena info sudah selalu terlihat, tidak perlu ada perubahan opacity atau bottom lagi saat hover */
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  /* Pastikan tetap 1 */
  bottom: 20px;
  /* Pastikan tetap pada posisi default */
  /* Anda bisa menghapus rule ini sepenuhnya jika tidak ada properti lain yang berubah saat hover */
}

/* Styling for the description paragraph in the Virtual Tour section */
.portfolio .section-title p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #374151;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

/* Responsive adjustments for the description paragraph */
@media (max-width: 768px) {
  .portfolio .section-title p {
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 20px;
  }
}

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

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

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 40%);
  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 15px 15px;
  padding: 20px;
  background: var(--surface-color);
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid var(--surface-color);
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

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

.testimonials .swiper-pagination {
  margin-top: 40px;
  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 .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .team .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.team .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
}

.team .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.team .team-member:hover {
  transform: translateY(-10px);
}

.team .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .team .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.team .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

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

@media (max-width: 468px) {
  .team .team-member span::after {
    left: calc(50% - 25px);
  }
}

.team .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .team .team-member .social {
    justify-content: center;
  }
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}

.team .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

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

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

.team .team-member .social a+a {
  margin-left: 8px;
}


/*--------------------------------------------------------------
# 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);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}