
/* 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: "Inter",  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: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0d83fd; /* 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: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #0d83fd; /* 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: #0d83fd; /* 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. */

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

.dark-background {
  --background-color: #0d83fd;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --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 {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

/* Container utama untuk logo dan teks */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Setiap item logo */
.logo-item {
  display: flex;
  flex-direction: column; /* Teks di bawah logo */
  align-items: center;
}

/* Container untuk logo-logo */
.logo-images {
  display: flex; /* Menyusun logo secara horizontal */
  gap: 10px; /* Jarak antar logo */
}

/* Gaya untuk gambar logo */
.logo-images img {
  max-height: 36px; /* Ukuran maksimal logo */
}

/* Gaya untuk teks */
.logo-text {
  margin-top: 5px;
  font-size: 6px;
  color: #333;
  text-align: center;
}

/* Menambahkan efek bold hanya pada IDONESIA */
.logo-text strong {
  font-weight: bold; /* Atau bisa juga biarkan default, karena <strong> sudah bold */
}


.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

  .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 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: 100%;
    visibility: hidden;
  }

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

/* Struktur Header */
.header-container {
  display: flex;
  flex-direction: row; /* Pastikan flexbox menggunakan baris */
  align-items: center;
  justify-content: space-between;
}

.top-nav {
  display: flex;
  justify-content: space-between; /* Logo di kiri, menu di kanan */
  align-items: center; /* Vertikal sejajar */
  padding: 5px 0;
  border-bottom: 1px solid #e0e0e0;
}

.top-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-menu li {
  margin-left: 15px;
}

.top-menu a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 10px; /* Jarak klik */
  transition: color 0.3s, background-color 0.3s; /* Efek hover */
}

.main-nav {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Pastikan logo tetap di kiri */
}

.logo-images img {
  height: 40px;
  margin-right: 8px;
}

.logo-text {
  font-size: 8px;
}

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu li {
  margin: 0 5px;
}

.main-menu a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
}

/* Styling umum navigasi */
.navmenu {
  display: flex;
  flex-direction: column; /* Buat elemen vertikal */
  gap: 5px; /* Jarak antar baris */
}

.nav-row {
  display: flex; /* Baris horizontal */
  justify-content: center; /* Tengah-tengahkan semua elemen */
  gap: 0px; /* Jarak antar item dalam baris */
}

.nav-row ul {
  display: flex;
  list-style: none; /* Hilangkan bullet points */
  padding: 0;
  margin: 0;
}

.nav-row li {
  margin: 0;
}

.nav-row a {
  text-decoration: none;
  color: #333; /* Warna teks default */
  padding: 5px 10px;
  transition: background-color 0.3s, color 0.3s; /* Efek smooth untuk warna */
}

.nav-row a:hover {
  color: #007bff; /* Warna teks berubah saat hover */
  background-color: transparent; /* Warna background ringan */
  border-radius: 5px; /* Sedikit rounded saat hover */
}

/* Baris pertama - Posisikan ke kanan */
.first-row {
  display: flex;
  justify-content: flex-end; /* Posisikan ke kanan */
}

.first-row ul {
  display: flex;
  gap: 0px; /* Jarak antar item */
}

.first-row ul li {
  margin: 0; /* Atur margin ke 0 untuk mengurangi jarak ekstra */
}

.first-row a {
  text-decoration: none;
  color: #333;
  padding: 5px 10px;
  transition: color 0.3s, background-color 0.3s;
}

.first-row a:hover {
  color: #007bff;
  background-color: transparent;
}

#video-section {
  position: relative;
  width: 100%;
  height: 125vh; /* kalau mau pake contain 100vh atau 125vh dan kalau cover heightnya harus 150vh Tinggi video bisa disesuaikan */
  overflow: hidden;
  padding-top: 15vh; /* Memberi jarak antara video dan header bisa pake 15vh/105px */
  }

.video-bg {
  width: 100%;
  height: 100%; /* pakai content (100%) kalau pake cover auto heightnya Memberi jarak antara video dan header bisa pake 15vh/105px */
  object-fit: contain; /* Bisa pakai cover/contain, bedanya cover full kalau containt dia sesuai ukuran layar video. Menjaga agar seluruh video terlihat tanpa terpotong */
}

#video-section video {
  display: block;
}


}

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

  /* Video Section - Mobile */
  @media (max-width: 768px) {
  #video-section {
    height: 80vh; /* Sesuaikan tinggi video untuk mobile */
    padding-top: 12vh; /* Memberi jarak antara video dan header */
  }

  .video-bg {
    object-fit: cover; /* Memastikan video tetap menutupi layar */
    width: 100%;
    height: 100%;
  }
}

}

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

.footer .footer-top {
  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 .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 20%);
  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-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: 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: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  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: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  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: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 160px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

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

  100% {
    transform: translateY(0);
  }
}

/* Container untuk logo */
#Clients .logo-container {
  display: flex;               /* Elemen logo berjajar secara horizontal */
  flex-wrap: wrap;             /* Membungkus elemen ke baris baru jika perlu */
  gap: 20px;                   /* Jarak antar logo */
  justify-content: center;     /* Menyusun logo di tengah */
}

/* Setiap logo card */
#Clients .logo-card {
  display: flex;
  align-items: center;         /* Posisikan gambar di tengah vertikal */
  justify-content: center;     /* Posisikan gambar di tengah horizontal */
  height: 68px;
  width: auto;                 /* Ukuran logo akan disesuaikan dengan konten */
  border: 1px solid #E8EAF2;   /* Warna border */
  border-radius: 18px;         /* Sudut border melengkung */
  padding: 10px;
  background-color: white;     /* Latar belakang putih */
  transition: all 0.3s ease;   /* Efek transisi saat hover */
}

/* Efek hover untuk logo */
#Clients .logo-card:hover {
  cursor: pointer;             /* Kursor berubah saat di-hover */
  border-color: #0066cc;        /* Ubah warna border saat hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Tambahkan efek shadow */
}

/* Gambar logo */
#Clients .logo-card img {
  max-height: 36px;             /* Ukuran logo yang lebih besar */
  object-fit: contain;          /* Memastikan gambar logo tetap proporsional */
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: justify; /* Menambahkan properti ini */
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 47%; /* biar agak turun */
  left: -11%; /* geser dikit biar komposisi pas */
  width: 55%; /* dibesarin */
  border: 6px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* biar badge-nya tetap ke kanan */
}


.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: -100px; /* makin negatif = makin keluar dari gambar */
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

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

  100% {
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------
# Teams Section
--------------------------------------------------------------*/
/* Teams Section */
.teams-section {
  background: #f6f7fa;
  padding: 40px 10px;
  margin-top: 80px;
  /* Hapus overflow-x dan white-space untuk ngilangin scroll */
}

.container {
  max-width: 1130px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.heading {
  text-align: center;
}

.badge {
  background: #007aff;
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.heading h2 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  color: #1f2937;
}

.teams-card-container {
  display: grid; /* Ganti flex ke grid untuk kontrol lebih mudah */
  grid-template-rows: auto auto; /* 2 baris */
  grid-template-columns: repeat(4, 1fr); /* 4 kolom per baris */
  gap: 30px;
  width: 100%;
  justify-items: center; /* Tengah-tengah */
}

.teams-card-container .featured {
  grid-column: span 4; /* Membentang sepanjang 4 kolom */
  justify-self: center; /* Tengah di grid */
}

.card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 250px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.avatar-container {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  background: linear-gradient(150.55deg, #60676f 8.72%, #535368 87.11%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Pastikan tidak ada bagian gambar yang keluar */
}

.avatar {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info .name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
}

.info .role {
  font-size: 1.0rem; /* Perbesar ukuran font */
  font-weight: 400; /* Atur ketebalan teks sesuai kebutuhan */
  color: #6c757d;
}

.location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #007aff;
  font-weight: bold;
}

.location img {
  width: 16px;
  height: 16px;
  object-fit: contain; /* Nambahin object-fit biar icon nggak terdistorsi */
  margin-bottom: 0; /* Mengatur margin supaya sejajar dengan teks */
}

.location span { /* Pastikan teks "Jakarta, Indonesia" ada di dalam span */
  display: inline-flex;  /* Ganti ke inline-flex untuk kontrol yang lebih baik */
  align-items: center;   /* Pastikan teks sejajar vertikal */
  line-height: normal;  /* Set line-height sama dengan ukuran icon agar sejajar */
}

.view-all {
  display: block; /* Menjadikan link memenuhi seluruh area card */
  text-decoration: none;
  color: inherit;
  padding: 30px;
  border-radius: 20px; /* Sesuai dengan card lainnya */
}

.view-all:hover {
  background: #007aff;
  color: white;
  transform: translateY(-5px);
}





/*--------------------------------------------------------------
# End Teams Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

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

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

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

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

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

.features .nav-link.active h4 {
  color: var(--contrast-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;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

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

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

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

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
/* end Clients Section swipper */

/* Clients Section carousel */
.clients .client-logo {
  max-width: 150px;
  max-height: 50px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.clients .client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.carousel-indicators [data-bs-target] {
  background-color: #000;
  border: none;
}

.carousel-indicators .active {
  background-color: #ff5722; /* Warna aksen */
}

.clients .carousel-inner .d-flex {
  gap: 1rem; /* Menjaga jarak antar logo */
}
@media (max-width: 768px) {
  .clients .client-logo {
    max-width: 100px; /* Ukuran lebih kecil untuk layar kecil */
  }
}

/* Move carousel control buttons to the left and right outside the carousel */
#clientsCarousel .carousel-control-prev,
#clientsCarousel .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 5%;
}

/* Align the "previous" button to the left */
#clientsCarousel .carousel-control-prev {
  left: 0;
}

/* Align the "next" button to the right */
#clientsCarousel .carousel-control-next {
  right: 0;
}

/* Optional: increase visibility of the control buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
/* end Clients Section carousel */

/* Start Clients Partner Logo */
.clients .logo-card {
  width: 300px;
  height: 300px;
  border: 3px solid #ccc; /* Menambahkan border */
  border-radius: 8px; /* Agar sudut border melengkung */
  overflow: hidden; /* Agar gambar tidak melampaui batas border */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem; /* Memberi ruang tambahan pada card */
  outline: none;
}

.clients .logo-grid {
  display: flex;
  grid-template-columns: repeat(5, 1fr); /* Tetap 5 kolom */
  gap: 1.5rem; /* Jarak antar logo */
  justify-content: center; /* Elemen ditengahkan secara horizontal */
}

.clients .logo-card img {
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  width: auto; /* Gambar mengikuti lebar container */
  height: auto; /* Menjaga rasio gambar */
  max-width: 90%; /* Pastikan gambar mengikuti lebar card */
  max-height: 90%; /* Membatasi tinggi gambar */
  
}

.clients .logo-card:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1); /* Membesarkan gambar saat di-hover */
}

.clients .logo-card:hover {
  border-color: #000; /* border hitam saat hover */
  outline: none;
}
/* End Clients Partner Logo */

/* Start Clients Gambar besar kalender */

/* Gambar Besar */
.large-image {
  display: flex; /* Gunakan Flexbox untuk memposisikan */
  justify-content: center; /* Posisi di tengah secara horizontal */
  align-items: center; /* Posisi di tengah secara vertikal jika ada tinggi */
  margin-top: 2rem; /* Jarak antara gambar besar dengan elemen atas */
}

.large-image .big-image {
  width: 100%; /* Lebar penuh */
  max-width: 900px; /* Lebar maksimum */
  height: auto; /* Menjaga proporsi gambar */
  border-radius: 12px; /* Sudut gambar melengkung */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Efek bayangan */
}

@media (max-width: 600px) {
  .large-image .big-image {
    max-width: 90%;
  }
}

/* End Clients Gambar besar kalender */


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.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 .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.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: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  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-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 h3 {
  color: var(--accent-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);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
}

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

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

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

.call-to-action-2 .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;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-btn:hover {
  border-color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/* Map container */
.contact .map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsiveness */
@media (max-width: 992px) {
  .contact .map-container {
    margin-top: 30px;
    min-height: 300px;
  }
}

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

/*--------------------------------------------------------------
# End Service Details Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Starter Section Info competition sasmo, amo dll
--------------------------------------------------------------*/

/* Info Section untuk SASMO */
#infosasmo-container {
  background: #e8f0fe; /* Biru muda */
  border-radius: 25px; /* Ujung kotak beda */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15); /* Shadow lebih jelas */
  padding: 30px;
  max-width: 900px; /* Batas maksimal lebar */
  margin: auto; /* Tengah-tengah halaman */
  text-align: center; /* Biar gambar di tengah */
}

#infosasmo-container .info-image {
  margin-bottom: 20px; /* Jarak bawah gambar ke konten */
}

#infosasmo-container .info-image img {
  max-width: 400px; /* Ukuran gambar */
  height: 300px; /* Ukuran gambar */
  object-fit: contain; /* Gambar menyesuaikan tanpa terpotong */
  border-radius: 15px; /* Ujung gambar beda */
  display: block; /* Pastikan block element */
  margin: 0 auto; /* Gambar di tengah */
}

#infosasmo-container .info-image img:hover {
  transform: scale(1.05); /* Sedikit membesar */
  transition: transform 0.3s ease; /* Efek transisi */
}

#infosasmo-content {
  text-align: justify; /* Teks justify */
}

#infosasmo-content h2 {
  font-size: 30px; /* Ukuran font lebih besar */
  color: #000000; /* Warna hitam */
  margin-bottom: 10px; /* Jarak bawah judul */
  text-align: center; /* Buat teks di tengah */
  text-decoration: underline; /* Tambahkan garis bawah */
}

#infosasmo-content p {
  font-size: 15px; /* Sedikit lebih besar */
  line-height: 1.8; /* Jarak antar baris lebih lega */
  color: #444; /* Warna abu-abu gelap */
  margin-bottom: 20px; /* Jarak bawah teks */
  margin-bottom: 15px; /* Jarak antar paragraf */
  line-height: 1.8; /* Jarak antar baris */
}

#infosasmo-content ul {
  padding: 0;
  list-style-type: none; /* Hilangkan bullet */
  text-align: left; /* Rata kiri untuk list */
  margin: 0 auto;
}

#infosasmo-content ul li {
  color: #222; /* Warna lebih gelap */
  font-weight: bold;
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  #infosasmo-container .info-image img {
    max-width: 80%; /* Gambar lebih fleksibel pada layar kecil */
  }
}


/*--------------------------------------------------------------
# End Section Info competition sasmo dll
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Starter Section Registration sasmo, amo dll
--------------------------------------------------------------*/
#sasmo-container {
  background: #e8f0fe; /* Biru muda */
  border-radius: 25px; /* Ujung kotak beda */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15); /* Shadow lebih jelas */
  padding: 30px;
  max-width: 900px; /* Batas maksimal lebar */
  margin: auto; /* Tengah-tengah halaman */
  text-align: center; /* Biar gambar di tengah */

  /* Tambahan biar lebih panjang ke bawah */
  min-height: 650px; /* Bisa disesuaikan */
  padding-bottom: 60px; /* Biar ada ruang ekstra untuk dropdown / tombol */
}

#sasmo-container .info-image {
  margin-bottom: 20px; /* Jarak bawah gambar ke konten */
}

#sasmo-container .info-image img {
  max-width: 400px; /* Ukuran gambar */
  height: auto; /* Ukuran gambar */
  object-fit: contain; /* Gambar menyesuaikan tanpa terpotong */
  border-radius: 15px; /* Ujung gambar beda */
  display: block; /* Pastikan block element */
  margin: 0 auto; /* Gambar di tengah */
}

#sasmo-content {
  text-align: justify; /* Teks justify */
}

#sasmo-content h2 {
  font-size: 30px; /* Ukuran font lebih besar */
  color: #000000; /* Warna #1a73e8 biru tua */
  margin-bottom: 10px; /* Jarak bawah judul */
  text-align: center; /* Buat teks di tengah */
}

#sasmo-content p {
  font-size: 15px; /* Sedikit lebih besar */
  line-height: 1.8; /* Jarak antar baris lebih lega */
  color: #444; /* Warna abu-abu gelap */
  margin-bottom: 20px; /* Jarak bawah teks */
}

#sasmo-content ul {
  padding: 0;
  list-style-type: none; /* Hilangkan bullet */
  text-align: left; /* Rata kiri untuk list */
  margin: 0 auto;
}

#sasmo-content ul li {
  color: #222; /* Warna lebih gelap */
  font-weight: bold;
  margin-bottom: 10px;
}

/* Class umum untuk tombol */
.btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: white; /* Warna teks */
}

.btn-container {
  display: flex;
  justify-content: center; /* Untuk memusatkan tombol */
  margin-top: 20px; /* Jarak atas tombol */
}

.btn-register {
  padding: 10px 20px; /* Ukuran tombol */
  background-color: #ffb200; /* Warna biru */
  color: #fff; /* Teks putih */
  font-size: 16px; /* Ukuran font */
  text-align: center; /* Teks rata tengah */
  text-decoration: none; /* Hilangin garis bawah */
  border-radius: 25px; /* Ujung tombol melengkung */
  transition: 0.3s; /* Efek transisi */
}

.btn-register:hover {
  background-color: #0056b3; /* Biru lebih gelap */
}

.btn-whatsapp {
  display: inline-block;
  background-color: #25d366; /* Warna hijau WhatsApp */
  color: white;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.btn-whatsapp i {
  margin-right: 8px; /* Memberi jarak antara ikon dan teks */
  font-size: 18px; /* Ukuran ikon */
  vertical-align: middle; /* Ikon sejajar dengan teks */
}

.btn-whatsapp:hover {
  background-color: #1da851; /* Warna hover lebih gelap */
  color: white;
}

.btn i {
  margin-right: 8px; /* Jarak antara ikon dan teks */
  font-size: 18px; /* Ukuran ikon */
  vertical-align: middle; /* Sejajar dengan teks */
}

.btn-payment {
  background-color: #1a73e8; /* Warna hijau untuk tombol Payment */
  color: white;
  padding: 10px 20px; /* Menambahkan padding untuk memperbesar tombol */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 25px; /* Ubah radius untuk tombol lebih bulat */
  font-size: 16px;
  margin-top: 10px; /* Jarak tombol dengan yang lainnya */
  transition: background-color 0.3s ease; /* Animasi perubahan warna saat hover */
}

.btn-payment:hover {
  background-color: #0056b3; /* Warna hijau gelap saat hover */
}

.btn-pdf {
  display: inline-block;
  padding: 8px 14px;
  background-color: #ff4d4d; /* Warna merah khas untuk PDF */
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-left: 0px; /* Menambahkan margin kiri untuk menggeser tombol ke kiri */
}

.btn-pdf i {
  margin-right: 6px; /* Memberikan jarak antara ikon dan teks */
}

.btn-pdf:hover {
  background-color: #ff3333; /* Warna merah lebih gelap saat hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Menambah bayangan saat hover */
}

.btn-pdf:focus {
  outline: none;
}

.how-to-register {
  background-color: #f5f8ff; /* biru muda lembut */
  padding: 25px;
  border-radius: 20px;
  margin-top: 30px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.how-to-register h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  color:#000000; /* Hitam */;
}

.how-to-register ol {
  padding-left: 20px;
}

.how-to-register li {
  margin-bottom: 15px;
  line-height: 1.6;
}

.how-to-register li ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-top: 5px;
}

.how-to-register li ul li {
  margin-bottom: 5px;
  font-weight: normal;
}

/* Responsive untuk layar kecil */
@media (max-width: 576px) {
  .how-to-register {
    padding: 15px; /* Kurangi padding biar pas layar kecil */
    margin-top: 20px;
  }

  .how-to-register h3 {
    font-size: 20px; /* Ukuran heading lebih kecil */
  }

  .how-to-register ol {
    padding-left: 15px; /* Sedikit lebih rapat */
  }

  .how-to-register li {
    margin-bottom: 12px;
    line-height: 1.5; /* Lebih compact */
  }

  .how-to-register li ul {
    padding-left: 15px;
  }
}



/* Media Query untuk layar kecil */
@media (max-width: 568px) {
  #infosasmo-content {
    max-width: 100%; /* Pastikan konten penuh */
    padding: 0 10px; /* Tambahkan padding agar lebih rapi */
  }

  .info-section {
    flex-direction: column; /* Susun elemen ke bawah */
    align-items: center;
    overflow: hidden; /* Hindari elemen keluar kontainer */
  }

  #sasmo-container {
    flex-direction: column; /* Susun elemen ke bawah */
    gap: 20px;
    width: 100%; /* Pastikan kontainer penuh */
    overflow: hidden; /* Cegah elemen keluar */
  }

  .info-image img {
    max-width: 80%; /* Sesuaikan ukuran gambar */
    height: auto; /* Jaga proporsi gambar */
    max-height: 160px; /* Batas tinggi maksimum */
    object-fit: contain; /* Isi area tanpa distorsi */
    margin: 0 auto; /* Tengahkan gambar */
    border-radius: 10px;
  }

  .btn-container {
    flex-direction: column; /* Tombol tersusun ke bawah */
    gap: 10px;
    width: 100%; /* Lebar penuh */
    text-align: center;
  }

  
}




/*--------------------------------------------------------------
# End Section Registration sasmo dll
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Start Section Buat Barcode Qris Scanner
--------------------------------------------------------------*/
/* Modal Style */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 80px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 8px;
  width: 350px;
  max-width: 90%;
  text-align: center;
  position: relative;
}

.modal-content h3 {
  margin-bottom: 15px;
  color: #333;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.close-btn:hover {
  color: red;
}

/* QR code biar responsif penuh */
.qris-img {
  max-width: 100%; /*gedin atau kecilin gambar qris */
  height: auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  display: block;
  margin: 0 auto; /*biar jadi ditengah */
}

/* Responsive modal di HP */
@media (max-width: 480px) {
  .modal-content {
    width: 90%;
    padding: 15px;
  }

  .modal-content h3 {
    font-size: 16px;
  }

  .close-btn {
    font-size: 20px;
    top: 8px;
    right: 10px;
  }
}

/* Responsive modal di tablet */
@media (max-width: 768px) {
  .modal-content {
    width: 80%;
    padding: 18px;
  }
}


/*--------------------------------------------------------------
# End Section Buat Barcode Qris Scanner
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Start Section Buat Dropdown List payment methods
--------------------------------------------------------------*/

/* Dropdown biar lebih modern dan friendly */
.dropdown-menu {
  border-radius: 12px;
  border: none;
  padding: 6px 0;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  z-index: 2000; /* pastiin lebih tinggi dari footer */
}

.dropdown-item {
  padding: 10px 16px;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover {
  background-color: #f8f9fa; /* abu2 terang */
  color: #0d6efd; /* biru Bootstrap */
  font-weight: 500;
}

/* 📱 Responsive style khusus HP */
@media (max-width: 576px) {
  .dropdown-menu {
    width: 100%;              /* Lebar full biar enak di tap */
    border-radius: 0 0 12px 12px;
    margin-top: 5px;
  }

  .dropdown-item {
    font-size: 16px;          /* Tulisan agak gede biar kebaca */
    padding: 14px 18px;       /* Tap area lebih luas */
  }

  .btn-payment {
    width: 100%;              /* Tombol utama juga full biar gampang di klik */
  }
}


/*--------------------------------------------------------------
# End Section Buat Dropdown List payment methods
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Start Section Buat Payment Methods Footer
--------------------------------------------------------------*/
.footer-sitename {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.payment-logo {
  max-height: 150px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  margin-left: -35px; /* geser logo agak ke kiri */
}

/* Responsif Tablet */
@media (max-width: 992px) {
  .payment-logo {
    max-height: 150px;
  }
}

/* Responsif HP */
@media (max-width: 768px) {
  .footer-right {
    margin-top: 15px;         /* biar turun ke bawah */
    text-align: center;
  }
  .payment-logo {
    max-height: 150px;
  }
}

/* Responsif HP kecil banget */
@media (max-width: 480px) {
  .payment-logo {
    max-height: 120px;
  }
}







/*--------------------------------------------------------------
# End Section Buat Payment Methods Footer
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Starter Section School Center
--------------------------------------------------------------*/
.info-section {
  padding: 40px;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
}

.info-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #fff;
  border-radius: 20px; /* Ini untuk mengubah ujung kotaknya biar galancip */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;  /* Ruang di dalam kotak */
  max-width: 900px; /* Batas maksimal lebar */
  width: 100%; /* Lebar 80% dari elemen induk */
}

.info-image img {
  max-width: 200px; /* Ubah ukuran logo info sekolah */
  border-radius: 12px;
  margin-right: 20px;
}

.info-content {
  flex: 1;
}

.info-content h2 {
  margin: 0 0 10px;
  font-size: 28px;
  color: #333;
}

.info-content p {
  margin: 0 0 15px;
  color: #555;
  line-height: 1.6;
  text-align: justify; /*tambahkan justify kalau mau rata kanan kiri */
  font-size: 14px; /* Tambahkan ukuran font */
}

.info-content ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.info-content ul li {
  margin: 5px 0;
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
    padding: 15px;
    text-align: center; /* opsional, biar rapi */
  }

  .info-image img {
    max-width: 100%;
    margin: 0 auto 20px; /* kasih jarak bawah */
    display: block;
  }

  .info-content h2 {
    font-size: 22px;
  }

  .info-content p {
    font-size: 13px;
    text-align: justify;
  }

  .info-item {
    text-align: left; /* biar WA pic tetap kiri */
  }

  .icon-box {
    flex-direction: row;
    justify-content: flex-start;
  }

  .icon-box h4 {
    font-size: 0.95rem;
  }

  .content p {
    font-size: 0.75rem;
  }
}


/* ini buat ubah dischool center logo awalnya ya sebelum masuk keinfo sekolah sekolah*/
.client-logo {
  height: 200px; /* Ubah sesuai kebutuhan */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  margin: 10px; /* tambahin margin buat jarak antar logo */
}

.client-logo:hover {
  transform: scale(1.05); /* efek zoom dikit kalau di-hover */
}

@media (min-width: 768px) {
  .client-logo {
    height: 120px; /* Lebih gede di layar besar */
    margin: 5px;
  }
}
/* end awalan school center*/

/*--------------------------------------------------------------
# End Section School Center
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Starter Section Buat Scholarship
--------------------------------------------------------------*/
/* General */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Hero Section */
.scholarship-hero {
  background: linear-gradient(135deg, #ffb200, #18478F);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.scholarship-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff; /* kasih warna biar kontras, misalnya hitam */
}

.scholarship-hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.scholarship-hero .btn-cta {
  display: inline-block;
  padding: 10px 25px;
  background-color: #2e7d32;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.scholarship-hero .btn-cta:hover {
  background-color: #1b5e20;
}

/* Summary Section */
.scholarship-summary h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.scholarship-summary ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.scholarship-summary ul li {
  margin: 10px 0;
  font-size: 1.1rem;
}

/* Scholarship List */
.scholarship-list h2 {
  text-align: center;
  margin-bottom: 30px;
}

.scholarship-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.scholarship-card:hover {
  transform: translateY(-5px);
}

.scholarship-card h3 {
  margin-top: 0;
}

.scholarship-card a {
  display: inline-block;
  margin-top: 10px;
  color: #1565c0;
  text-decoration: underline;
  font-weight: 500;
}

/* Contact Section */
.scholarship-contact {
  background-color: #e0f7fa;
  text-align: center;
  padding: 60px 20px;
}

.scholarship-contact h2 {
  margin-bottom: 15px;
}

.scholarship-contact .btn-contact {
  display: inline-block;
  background-color: #00796b;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.scholarship-contact .btn-contact:hover {
  background-color: #004d40;
}

/* Responsive */
@media (max-width: 768px) {
  .scholarship-summary ul li {
    font-size: 1rem;
    margin: 8px 0;
  }

  .scholarship-card h3 {
    font-size: 1.2rem;
  }

  .scholarship-card p {
    font-size: 0.95rem;
  }

  .scholarship-card a {
    font-size: 0.9rem;
  }

  .scholarship-hero p {
    font-size: 1rem;
  }

  .container {
    padding: 30px 15px;
  }
}

@media (max-width: 576px) {
  .scholarship-hero h1 {
    font-size: 1.6rem;
  }

  .scholarship-hero p {
    font-size: 0.95rem;
  }

  .scholarship-summary h2,
  .scholarship-list h2,
  .scholarship-contact h2 {
    font-size: 1.4rem;
  }

  .scholarship-card {
    padding: 12px;
    border-radius: 10px;
  }

  .scholarship-card p {
    font-size: 0.9rem;
  }

  .scholarship-contact .btn-contact {
    padding: 8px 16px;
    font-size: 0.95rem;
  }

  .scholarship-hero .btn-cta {
    padding: 8px 16px;
    font-size: 0.95rem;
  }
}



/*--------------------------------------------------------------
# End Section Buat Scholarship
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Starter Section Buat IJHS
--------------------------------------------------------------*/
/* General */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Hero Section */
.ijhs-hero {
  background: linear-gradient(135deg, #ffb200, #18478F); /* background: linear-gradient(135deg, #f2994a, #1565c0); (ini backup warna)*/
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.ijhs-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff; /* teks putih */
  text-shadow: 2px 2px 6px rgba(0,0,0,0.4); /* lebih tebel biar jelas di desktop */
}

/* Responsive - untuk HP */
@media (max-width: 576px) {
  .ijhs-hero h1 {
    font-size: 1.8rem; /* kecilin font */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3); /* shadow lebih ringan */
  }
}

.ijhs-hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.ijhs-btn-img {
  width: 200px;  /* atur sesuai kebutuhan */
  height: auto;
  display: block;
  margin: 20px auto 0; /* biar gambar di tengah */
}


/* navigation Section */
.ijhs-nav {
  background: #f9f9f9;
  padding: 20px 0;
  margin: 20px 0;
}

.ijhs-nav ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ijhs-nav li {
  position: relative;
}

.ijhs-nav a {
  text-decoration: none;
  font-size: 1.1rem;
  color: #333;
  padding: 5px 0;
}

.ijhs-nav li.active a {
  font-weight: bold;
  color: #222;
}

.ijhs-nav li.active::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 3px;
  background: #0066ff;
  border-radius: 3px;
}



/* Contact Section */
.ijhs-contact {
  background-color: #e0f7fa;
  text-align: center;
  padding: 60px 20px;
}

.ijhs-contact h2 {
  margin-bottom: 15px;
}

.ijhs-contact .btn-contact {
  display: inline-block;
  background-color: #00796b;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.ijhs-contact .btn-contact:hover {
  background-color: #004d40;
}

/* Responsive */
@media (max-width: 768px) {
  /* Hero */
  .ijhs-hero h1 {
    font-size: 2rem;
  }

  .ijhs-hero p {
    font-size: 1rem;
  }

  /* Nav */
  .ijhs-nav ul {
    gap: 20px; /* kecilin jarak antar menu */
  }

  .ijhs-nav a {
    font-size: 1rem;
  }

  /* Container */
  .container {
    padding: 30px 15px;
  }

  /* Gambar tombol */
  .ijhs-btn-img {
    width: 150px; /* lebih kecil biar muat di layar tablet */
  }
}

@media (max-width: 576px) {
  /* Hero */
  .ijhs-hero h1 {
    font-size: 1.6rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3); /* shadow ringan di HP */
  }

  .ijhs-hero p {
    font-size: 0.9rem;
  }

  /* Nav */
  .ijhs-nav ul {
    flex-direction: row; /* tetap horizontal */
    gap: 10px; /* kecilin jarak antar menu */
    flex-wrap: wrap; /* biar kalau sempit bisa turun ke bawah rapi */
    justify-content: center;
  }

  .ijhs-nav a {
    font-size: 0.9rem;
  }

  /* Gambar tombol */
  .ijhs-btn-img {
    width: 120px; /* lebih kecil di HP */
  }

  /* Contact */
  .ijhs-contact h2 {
    font-size: 1.3rem;
  }

  .ijhs-contact .btn-contact {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* About Us Section */
.ijhs-about {
  background: #fff;
  text-align: center;
  padding: 80px 20px;
  color: #333;
}

.ijhs-about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222; /* warna biar nyambung sama hero */
  position: relative;
  display: inline-block;
}

.ijhs-about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #0066ff; /* aksen orange */
  margin: 8px auto 0;
  border-radius: 2px;
}

.ijhs-about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .ijhs-about h2 {
    font-size: 1.8rem;
  }
  .ijhs-about p {
    font-size: 1rem;
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  .ijhs-about {
    padding: 60px 15px;
  }
  .ijhs-about h2 {
    font-size: 1.6rem;
  }
  .ijhs-about p {
    font-size: 0.95rem;
  }
}

.about-desc {
  font-style: italic;
  font-size: 1.2rem;   /* agak besar di desktop */
  line-height: 1.7;
  color: #444;
  max-width: 800px;   /* biar ga kepanjangan */
  margin: 0 auto;     /* center teks */
}

/* Responsive - HP */
@media (max-width: 576px) {
  .about-desc {
    font-size: 1rem;   /* kecilin di layar kecil */
    line-height: 1.6;
    padding: 0 15px;   /* kasih ruang kiri kanan biar ga mepet */
  }
}

/* Who We Are Section */
.ijhs-who {
  padding: 70px 20px;
  background: #fff;
}

.ijhs-who h2 {
  font-size: 2.2rem;  /* Judul besar */
  margin-bottom: 30px;
  text-align: left;
  color: #222;
}

.who-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap; /* biar di HP jadi kebawah */
}

.who-text {
  flex: 1 1 50%;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  text-align: justify; /*bikin jadi justify*/
}

.who-slider {
  flex: 1 1 45%;
  position: relative;
  max-width: 450px;
  height: 300px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-top: 85px;  /* atur manual biar turun */
}

.who-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.who-slider .slide.active {
  opacity: 1;
}

.who-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-text ul {
  list-style-type: disc;   /* bullet bulet */
  padding-left: 20px;      /* kasih jarak biar ga terlalu mepet */
  margin-bottom: 20px;
}

.who-text li {
  margin-bottom: 10px;
  line-height: 1.6;
  text-align: justify;     /* bikin isi bullet rata kanan-kiri */
}

@media (max-width: 768px) {
  .ijhs-who {
    padding: 40px 15px; /* biar ga terlalu lebar padding */
  }

  .ijhs-who h2 {
    font-size: 2rem; /* judul agak kecil di HP */
    margin-bottom: 20px;
  }

  .who-text {
    flex: 1 1 100%; /* full width di HP */
    font-size: 1rem; /* teks agak kecil */
    line-height: 1.6;
  }

  .who-slider {
    flex: 1 1 100%; /* full width juga */
    max-width: 100%;
    height: 220px; /* slider agak pendek di HP */
    margin-top: 30px; /* jarak ga terlalu jauh */
  }
}
/* END ABOUT US IJHS SECTION */


/* MEMBERSHIP IJHS SECTION */
/* How to Join Section */
.join-ijhs {
  padding: 60px 20px;
  background: #fff;
  color: #444;
}

.join-ijhs h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #222;
  text-align: left; /* biar ngikutin style atas */
}

.join-ijhs p {
  font-size: 1.1rem;  /* ukuran teks */
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify; /* rapihin teks kanan-kiri */
}

.join-ijhs img {
  max-width: 400px;  /* atur ukuran maksimal gambar */
  width: 100%;       /* biar responsif */
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 🔽 Responsif untuk HP */
@media (max-width: 768px) {
  .join-ijhs h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .join-ijhs p {
    font-size: 1rem;
    text-align: left; /* di HP biasanya lebih enak rata kiri */
  }

  .join-ijhs img {
    max-width: 100%; /* full width di HP */
  }
}

/* END MEMBERSHIP IJHS SECTION */


/* Events Section START */
.ijhs-events {
  padding: 60px 20px 40px; /* kasih jarak biar lega */
  background: #fff;
}

.ijhs-events .events-title {
  font-size: 2.8rem;   /* cukup besar */
  font-weight: 700;
  text-align: center;
  color: #222;
  margin-bottom: 30px;
  position: relative;
}

.ijhs-events .events-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #007bff; /* garis hiasan bawah judul */
  margin: 15px auto 0;
  border-radius: 2px;
}

/* STEAM AHEAD Camp Section */
.steam-camp {
  padding: 60px 20px;
  background: #f9f9f9;
  border-radius: 12px;
  margin-top: 40px;
}

.steam-camp .camp-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left !important;
  color: #222;
}

.steam-camp p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
  text-align: justify;
}

.steam-camp .camp-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.steam-camp .camp-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.steam-camp .camp-list em {
  font-style: italic;
  font-weight: 600;
  color: #000;
}

.steam-camp .camp-footer {
  font-size: 1.05rem;
  margin-top: 20px;
  font-weight: 500;
  color: #111;
}

/* Testimonial button */
.testimonial-btn {
  text-align: center;      /* biar tombol di tengah */
  margin-top: 20px;
}

.btn-learn {
  display: inline-block;
  background: #222;     /* warna biru */
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Hover effect */
.btn-learn:hover {
  background: #222;     /* biru lebih gelap */
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Events Section END */


/* Events Archive Section START */
.ijhs-events {
  margin-top: 40px;
}

.events-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.events-desc {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

/* Archive Container */
.events-archive {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* biar bisa ngebungkus kalau sempit */
  align-items: stretch;
}

/* Event Card */
.event-card {
  width: 300px; /* fix biar sejajar */
  text-align: center;
  display: flex;
  flex-direction: column;
}

.event-card img {
  width: 100%;
  height: 285px; /* biar rata */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.event-title {
  margin-top: 10px;
  font-weight: bold;
  font-size: 18px;
}

.event-subtitle {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* 📱 Responsif: turun kebawah hanya di HP */
@media (max-width: 576px) {
  .events-archive {
    flex-direction: column;
    align-items: center;
  }

  .event-card {
    width: 90%;
  }

  .event-card img {
    height: 250px;
  }
}



/* Events Archieve Section END */
/*--------------------------------------------------------------
# End Section Buat IJHS
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# Starter Section Buat tulisan Coming Soon
--------------------------------------------------------------*/
.coming-soon-section {
  display: flex; /* Gunakan flexbox untuk menengahkan konten */
  justify-content: center; /* Posisikan di tengah horizontal */
  align-items: center; /* Posisikan di tengah vertikal */
  height: 10vh; /* Buat tinggi section sesuai tinggi viewport */
}

.coming-soon-section h1 {
  color: red; /* Warna teks */
  font-size: 3rem; /* Sesuaikan ukuran font */
  font-weight: bold; /* Teks tebal */
  text-align: center; /* Pusatkan teks */
}

.coming-soon-section h1 {
  color: red;
  font-size: 2rem; /* Ukuran font default */
  font-weight: bold;
  text-align: center;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Mengecilkan ukuran teks di layar kecil */
@media (max-width: 768px) {
  .coming-soon-section h1 {
    font-size: 2rem; /* Ukuran font untuk layar sedang */
  }
}

@media (max-width: 480px) {
  .coming-soon-section h1 {
    font-size: 1.5rem; /* Ukuran font untuk layar kecil */
  }
}


/*--------------------------------------------------------------
# End Section Buat tulisan Coming Soon
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Starter Section news/berita
--------------------------------------------------------------*/

.news-article {
  border: 2px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  background-color: #f9f9f9; /* Warna latar belakang agar lebih kontras */
}

.news-article h3 {
  font-size: 1.5em;
  font-weight: bold;
}

.news-article ul {
  list-style-type: none;
  padding-left: 0;
}

.news-article ul li {
  margin-bottom: 10px;
}

.news-article img {
  width: 10%; /* Atur lebar gambar sesuai container */
  height: 50px; /* Atur tinggi gambar sesuai kebutuhan */
  object-fit: cover; /* Potong gambar agar sesuai tanpa mengubah proporsi */
  border-radius: 10px; /* Tetap menjaga radius sudut */
}

@media (max-width: 768px) {
  .news-row {
    flex-direction: column;
    gap: 20px;
  }

  .col-md-4 {
    width: 100%;
  }
}

.news-summary {
  font-size: 14px;
  color: #333;
}

.news-full {
  font-size: 14px;
  color: #555;
}

.read-more {
  color: #007bff;
  cursor: pointer;
  text-decoration: underline;
}

.read-more:hover {
  color: #0056b3;
}

.profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-image {
  width: 50px;  /* Ukuran gambar, bisa disesuaikan */
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
}

.profile-position {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.info-wrapper .row {
  justify-content: space-between;
}

.pagination-controls button {
  margin: 0 10px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* CSS untuk mengatur ukuran gambar banner */
.banner-image {
  height: 300px; /* Biarkan tinggi gambar otomatis mengikuti lebar */
  max-height: 500px; /* Tentukan batas tinggi maksimal */
  object-fit: contain; /* Membuat gambar tetap utuh tanpa terpotong */
  background-color: #f5f5f5; /* Tambahkan warna latar untuk ruang kosong (opsional) */
}

.carousel-content {
  position: relative;
}

.carousel-caption {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5); /* Transparansi latar teks */
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

/* Atur indikator untuk bulat tanpa angka */
.carousel-indicators [data-bs-slide-to] {
  width: 10px; /* Sesuaikan ukuran bulatan */
  height: 10px;
  border-radius: 50%;
  background-color: #666; /* Warna bulatan default */
}

.carousel-indicators [data-bs-slide-to].active {
  background-color: #000; /* Warna bulatan saat aktif */
}

/* Hilangkan angka tanpa menyembunyikan bulatan */
.carousel-indicators [data-bs-slide-to]::before {
  content: ''; /* Kosongkan angka */
  display: none; /* Hilangkan pseudo-elemen angka */
}

.carousel-indicators li::before {
  content: ''; /* Kosongkan konten angka */
  display: none; /* Hilangkan pseudo-elemen angka */
}

/* Sembunyikan elemen utama indikator */
.carousel-indicators [data-bs-slide-to] {
  display: none !important; /* Sembunyikan elemen utama */
}



/*--------------------------------------------------------------
# End Section news/berita
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Section Follow Our Social Media
--------------------------------------------------------------*/
.social-media-section {
  padding: 20px;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-media-container {
  max-width: 100%; /* Pastikan kontainer tidak membatasi */
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
  text-align: center;
}

.social-media-container h2 {
  font-family: Arial, sans-serif;
  font-size: 40px;
  margin-bottom: 20px;
  color: #333;
  position: relative;
}

.decorative-line {
  width: 80px;
  height: 4px;
  background-color: #007aff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.social-media-platforms {
  display: flex;
  gap: 40px; /* Atur jarak antar elemen */
  justify-content: center;
  align-items: flex-start;
  width: 100%; /* Pastikan elemen mengambil ruang penuh */
  flex-wrap: wrap;
}

.instagram-container,
.tiktok-container {
  max-width: auto;
  min-height: auto;
  margin: 0 auto; /* Tengah di dalam border */
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-container blockquote {
  height: auto; /* Samakan dengan tinggi TikTok */
  overflow: hidden; /* Untuk memastikan konten tidak melampaui kotak */
  display: flex;
  align-items: center;
  justify-content: center;
}

.tiktok-container blockquote {
  margin: 0 auto; /* Tengah di dalam kontainer */
  height: auto; /* Atur tinggi TikTok (jika perlu) */
}

.instagram-container blockquote,
.tiktok-container blockquote {
  width: 100%; /* Ambil seluruh lebar yang tersedia */
  height: 100%; /* Sesuaikan tinggi agar proporsional */
  object-fit: contain; /* Jaga isi agar tetap terlihat */
}

.instagram-wrapper{
  border: 2px solid #ccc; /* Border untuk tiap platform */
  border-radius: 10px;
  padding: 15px;
  background-color: #fafafa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Bayangan untuk elemen */
  max-width: 750px;
  box-sizing: border-box;
  flex: 1; /* Supaya berbagi ruang */
}
.tiktok-wrapper {
  border: 2px solid #ccc; /* Border untuk tiap platform */
  border-radius: 10px;
  padding: 15px;
  background-color: #fafafa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Bayangan untuk elemen */
  max-width: 375px;
  box-sizing: border-box;
  flex: 1; /* Supaya berbagi ruang */
}






/*--------------------------------------------------------------
# End Section Follow Our Social Media
--------------------------------------------------------------*/
