/* Fonts */
:root {
  --default-font: "Poppins", 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: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #222222;
  /* Background color for the entire website, including individual sections */
  --default-color: #E0E0E0;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #E0E0E0;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #BD037D;
  /* 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: #3A3A3A;
  --surface-color-2: #505050;
  --surface-color-3: #5F5F5F;
  /* 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: #E0E0E0;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --black-color: #060606;
}

/* 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: #E0E0E0;
  /* The default color of the main navmenu links */
  --nav-hover-color: #BD037D;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #222222;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #222222;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #E0E0E0;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #BD037D;
  /* 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: #f4fafd;
  --surface-color: #ffffff;
}

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

.color-default {
  color: var(--default-color);
}

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

.bg-accent {
  background-color: var(--accent-color);
}

.bg-color {
  background-color: var(--background-color);
}

.bg-surface {
  background-color: var(--surface-color);
}

.bg-surface-2 {
  background-color: var(--surface-color-2);
}

.bg-surface-3 {
  background-color: var(--surface-color-3);
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  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);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0.5rem 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 3rem;
  margin-right: 8px;
}

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

.header .search-form {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  display: flex;
  flex: 1 1 auto;
}

.header .search-form .bi-search {
  position: absolute;
  left: 1rem;
  top: 7px;
}

.header .search-form .search-box {
  color: var(--default-color);
  background-color: var(--input-color);
  border: 0;
  padding-left: 2.5rem;
  padding-inline-end: 2.5rem;
}

.header .search-form .search-box::placeholder {
  color: var(--default-color);
  opacity: 1;
}

.header .search-form .search-box::-webkit-search-cancel-button {
  display: none;
}

.header .search-form .clear-btn {
  color: var(--default-color);
}

.header .search-form .search-box:focus {
  color: var(--default-color);
  border: none;
  box-shadow: 0 0 0 0.1rem var(--accent-color);
}

.header .search-form #autocompleteList {
  z-index: 1000;
  display: none;
  margin: 3rem auto 0 0;
}

.header .search-form #autocompleteList li {
  cursor: pointer;
}

.header .search-form #autocompleteList li:hover {
  background-color: #f0f0f0;
}

.header .mobile-search-toggle {
  display: none;
}

/* Header Mobile */
@media (max-width: 575.98px) {
  .header .logo {
    order: 1;
  }

  .header .search-form {
    display: none;
  }

  .header .search-form.show {
    display: flex;
    flex: 1 1 100%;
    order: 6;
    margin-left: 0;
  }

  .header .search-form.show .search-box {
    width: 100%;
  }

  .header .mobile-search-toggle {
    display: flex;
    order: 2;
    color: var(--nav-color);
    font-size: 20px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 90%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.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 .btn-register,
.navmenu .btn-register:focus {
  color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.25rem 1rem !important;
  margin: 0 0 0 1.5rem;
  transition: 0.3s;
  width: fit-content !important;
}

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

.navmenu .btn-login,
.navmenu .btn-login:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 0.25rem 1rem !important;
  margin: 0 0 0 1.5rem;
  transition: 0.3s;
  width: fit-content !important;
  border: none;
}

.navmenu .btn-login:hover,
.navmenu .btn-login:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.navmenu .mobile-nav-toggle {
  display: none;
}

/* Navmenu - Mobile */
@media (max-width: 991.98px) {

  .mobile-nav-toggle {
    display: inline-block !important;
    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 ease;
    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 {
    font-weight: 500;
  }

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

  .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: scroll;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .mobile-search-toggle {
    display: none;
  }

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

  .header .btn-login {
    margin-bottom: 0.75rem;
  }
}

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

.footer .footer-top {
  padding-top: 50px;
  background-color: var(--black-color);
}

.footer .footer-top img {
  max-width: 100px;
}

.footer .footer-description {
  margin-right: 40px;
}

.footer .social-links {
  padding-bottom: 20px;
}

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

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-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 {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.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 {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

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

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Notification
--------------------------------------------------------------*/
.notification {
  position: fixed;
  bottom: 1rem;
  left: 2rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  backdrop-filter: blur(8px);
  color: var(--default-color);
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 99999;
  min-width: 300px;
}

.notification .icon {
  font-size: 3rem;
  color: var(--accent-color);
}

.notification .close-btn {
  position: fixed;
  top: 2px;
  right: 2px;
  background: none;
  border: none;
  color: var(--default-color);
  font-size: 1.5rem;
}

.notification-text .nama {
  color: var(--accent-color);
  font-weight: bold;
}

.notification-text .produk {
  color: #FFD700;
  font-weight: bold;
}

@media (max-width: 576px) {
  .notification {
    left: 8px;
    right: 8px;
    bottom: 8px;
    margin: 0 auto;
    width: auto;
  }
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 700;
  position: relative;
}

.section-title p {
  font-size: clamp(12px, 2vw, 16px);
}

/*--------------------------------------------------------------
# Meteor Section
--------------------------------------------------------------*/
/* #meteorCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
} */

/*--------------------------------------------------------------
# Carousel Section
--------------------------------------------------------------*/
#carousel {
  background-color: #060606;
  padding: auto;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
  z-index: 2;
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: left;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0 8px 5px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
  background-color: var(--surface-color);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

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

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

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

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: 0.2s ease-in;
  cursor: pointer;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  z-index: 3;
  bottom: -100%;
  transition: all ease-in-out 0.3s;
  padding: clamp(4px, 2vw, 12px);
  width: 100%;
  height: 100%;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 600;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio .portfolio-content .portfolio-info p {
  color: var(--default-color);
  font-size: clamp(8px, 2vw, 12px);
  margin-bottom: 0;
}

.portfolio .portfolio-content .hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, black 0%, color-mix(in srgb, var(--default-color), transparent 70%) 100%);
  opacity: 0;
  transition: opacity 0.3s ease-in;
  z-index: 3;
}

.portfolio .portfolio-content:hover {
  box-shadow: 0 0 0 0.125rem var(--accent-color);
}

.portfolio .portfolio-content:active {
  transform: scale(0.9);
}

.portfolio .portfolio-content:hover .hover-overlay {
  opacity: 1;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/

.recent-posts .post-item {
  background-color: var(--surface-color);
  transition: 0.3s;
  border-radius: 8px;
  cursor: pointer;
}

.recent-posts .post-item .post-img {
  border-radius: 8px 8px 0 0;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
  border-radius: 8px 0 0 0;
}

.recent-posts .post-item .post-content {
  padding: 30px;
}

.recent-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts .post-item:hover {
  box-shadow: 0 0 0 0.125rem var(--accent-color);
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

.recent-posts .all-articles-btn {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: none;
  transition: 0.3s ease-in;
}

.recent-posts .all-articles-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

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

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

.service-details h4 {
  font-size: 20px;
  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);
}

/*--------------------------------------------------------------
# Invoices
--------------------------------------------------------------*/

#invoices #searchInvoice::placeholder {
  color: var(--default-color);
  opacity: 1;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

#invoices #searchInvoice {
  background-color: var(--surface-color);
  border: 0;
}

#invoices #searchInvoice:focus {
  color: var(--default-color);
  border: none;
  box-shadow: 0 0 0 0.1rem var(--accent-color);
}

#invoices .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

#invoices .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 40%);
}

@media (max-width: 1199px) {
  #invoices h2 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Leaderboard
--------------------------------------------------------------*/

.leaderboard .subtitle,
.box {
  background-color: var(--surface-color);
  color: var(--default-color);
}

/* ==============================================================
# Admin Navbar
-------------------------------------------------------------- */
.admin-navbar {
  background-color: #111;
  padding: 0.625rem 1.25rem;
  font-family: 'Poppins', sans-serif;
  color: white;
}

.admin-navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.admin-title {
  font-weight: 600;
  font-size: 0.875rem;
  margin-right: 1.25rem;
  margin-left: 4rem;
  white-space: nowrap;
}

.admin-nav-menu {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.admin-nav-menu li a {
  color: white;
  text-decoration: none;
  padding: 0.3125rem 0.625rem;
  border-radius: 0.3125rem;
  transition: background 0.3s;
  font-size: 0.875rem;
}

.admin-nav-menu li a.active {
  background-color: #BD037D;
  color: black;
  font-weight: 600;
}

.admin-nav-menu li a:hover:not(.active) {
  background-color: #222;
}



/*--------------------------------------------------------------
# Aritkel Section
--------------------------------------------------------------*/
.artikel-item {
  position: relative;
  border-radius: 10px;
}

.artikel-cnt {
  overflow: hidden;

}

.artikel-isi p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.artikel-gambar img {
  border-radius: 0.5rem;
}

.artikel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.artikel-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  color: #fff;
}

.artikel-item:hover img {
  transform: scale(1.05);
}

.artikel-item:hover .overlay {
  transform: translateY(0);
}

.artikel-item:hover .overlay h6 {
  color: #BD037D;
}

.artikel-item.besar {
  height: 250px;
}

.artikel-item.kecil {
  height: 180px;
}

.artikel-item .artikel-meta i {
  color: #fff;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.artikel-item .artikel-meta .kategori {
  color: #BD037D;
  font-weight: bold;
  transition: color 0.3s ease;
}

.artikel-item:hover .artikel-meta i {
  transform: rotate(15deg);
}

.artikel-item:hover .artikel-meta .kategori {
  color: #fb7ecf;
}

.custom-breadcrumb {
  background-color: transparent;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
}

.custom-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
  content: " / ";
  /* ganti default icon bootstrap */
}

.custom-breadcrumb .breadcrumb-item a {
  font-weight: 600;
}



.kategori-item {
  border: 2px solid transparent;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease-in-out;
  background: #1e1d2b;
  padding: 15px;
  height: 100%;
}

.kategori-item:hover {
  transform: scale(1.02);
  border-color: #BD037D;
  box-shadow: 0 0 0 3px #BD037D;
}

.kategori-img img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.kategori-content {
  color: #fff;
  margin-top: 10px;
  flex-grow: 1;
}

.kategori-title {
  font-size: 1.05rem;
  font-weight: bold;
  transition: color 0.3s ease;
  line-height: 1.4;
  color: #fff;
}

.kategori-title a {
  color: #fff;
}

.kategori-item:hover .kategori-title a {
  color: #BD037D;
}

.kategori-meta {
  font-size: 0.85rem;
  color: #ccc;
}



/* Artikel Kategori Filters */
.kategori-filters {
  padding: 0;
  margin: 0 0 20px 0;
  list-style: none;
  text-align: left;
}

.kategori-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px;
  margin: 0 8px 5px 0;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  background-color: #444;
  color: #fff;
}

.kategori-filters li:hover,
.kategori-filters li.filter-active {
  color: #fff;
  background-color: #BD037D;
}

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

.kategori-filters {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.kategori-filters li {
  display: inline-block;
  padding: 8px 20px;
  margin: 0 8px 8px 0;
  cursor: pointer;
  border-radius: 20px;
  background-color: #535353;
  color: #ffffff;
  transition: all 0.3s ease;
  font-weight: 500;
}

.kategori-filters li.filter-active,
.kategori-filters li:hover {
  background-color: #BD037D;
  color: #fff;
}


/*--------------------------------------------------------------
# Joki Section
--------------------------------------------------------------*/
.harga-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}


.form-control {
  background-color: #1f1f1f;
  color: white;
  border: 1px solid #444;
  border-radius: 10px;
  padding-left: 2rem;
}

.btn-hitung {
  background: #61e4c5;
  color: black;
  font-weight: bold;
  padding: 12px;
  border-radius: 12px;
  border: none;
}

.guide-box {
  color: #ccc;
  font-size: 14px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }
}

.collapse-content {
  transition: all 0.3s ease;
}

.rotate-180 {
  transform: rotate(180deg);
}

.collapse-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.collapse-content.show {
  max-height: 1000px;
  /* pastikan cukup besar agar muat semua teks */
  padding-bottom: 12px;
}

.rotate-180 {
  transform: rotate(180deg);
}

#togglePanduan {
  cursor: pointer;
}

.panduan-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.panduan-content.show {
  max-height: 1000px;
  /* pastikan cukup tinggi untuk isi kontennya */
}

.harga-card {
  background: linear-gradient(to bottom, #3ed2c1, #2bb5aa);
  border-radius: 16px;
  overflow: hidden;
  width: 180px;
  text-align: center;
  color: white;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.harga-img {
  width: 70px;
  height: 70px;
  margin-top: 12px;
}

.harga-text {
  font-size: 18px;
  font-weight: 600;
  padding: 5px 0;
  line-height: 1.2;
}

.harga-footer {
  background-color: #a8edea;
  color: #4a4a4a;
  font-size: 15px;
  padding: 10px 0;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}


/*--------------------------------------------------------------
# Top Up Section
--------------------------------------------------------------*/
.top-up .banner img {
  object-position: center;
  min-height: 14rem;
}

.top-up .bg-title-product {
  min-height: 14rem;
  background-color: var(--surface-color);
}

.top-up .bg-title-product .product-thumbnail {
  position: relative;
  top: -4rem;
}

.top-up .bg-title-product .product-thumbnail img {
  position: relative;
  z-index: 20;
  width: 10rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 1rem 3 rem rgba(0, 0, 0, 0.3);
  margin-bottom: -3.5rem;
  display: block;
}

.text-pink {
  color: #FF3399 !important;
}

.btn-pink {
  background-color: #BD037D;
  border: none;
}

.btn-pink:hover {
  background-color: #8f1240;
}

.nav-tabs .nav-link.active {
  background-color: transparent;
  border: none;
  color: #FF3399 !important;
  border-bottom: 3px solid #FF3399;
}

.top-up .tag-games {
  font-size: 0.875rem;
}

.top-up .trusted-card {
  background-color: var(--surface-color);
}

.top-up .trusted-card svg {
  fill: var(--surface-color);
  stroke: var(--default-color);
}

.nav-pills-custom .nav-link {
  color: #6c757d;
  /* text-muted-foreground equivalent */
  background-color: #e9ecef;
  /* bg-muted equivalent */
  border-radius: 0.75rem;
  /* rounded-xl */
  margin: 0 0.25rem;
}

.nav-pills-custom .nav-link.active {
  background-color: var(--bs-primary);
  /* data-[state=active]:bg-primary */
  color: var(--bs-light);
  /* data-[state=active]:text-primary-foreground */
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  /* data-[state=active]:shadow-sm */
}

/* Card styling */
.card-custom {
  background-color: rgba(var(--bs-card-bg-rgb), 0.85);
  /* bg-card/50, adjust opacity as needed */
  box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, .175);
  /* shadow-2xl */
  border-radius: 0.75rem;
  /* rounded-xl */
}

.card-custom .card-header {
  background-color: var(--bs-card-cap-bg);
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.step-number {
  width: 40px;
  height: 40px;
}

/* Input styling */
.form-control-custom {
  height: 36px;
  /* h-9 */
  font-size: 0.875rem;
  /* text-xs */
  border-radius: 0.5rem;
  /* rounded-lg */
}

.form-control-custom:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
  z-index: 10;
}

.form-label-custom {
  font-size: 0.75rem;
  /* text-xs */
}

/* Flash Sale Banner */
.flash-sale-banner {
  border-radius: 9999px;
  /* rounded-full */
  padding-left: 1rem;
  padding-right: 1.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  box-shadow: inset 0 -8px 10px #8fdfff1f;
  transition: box-shadow 0.5s ease-out;
  font-size: 0.875rem;
  /* text-sm/6 */
  font-style: italic;
  position: relative;
  overflow: hidden;
  /* Untuk mask */
}

.flash-sale-banner:hover {
  box-shadow: inset 0 -5px 10px #8fdfff3f;
}

.flash-sale-gradient-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  /* rounded-[inherit] */
  padding: 2px;
  /* p-[2px] */
  background: linear-gradient(to right, rgba(255, 170, 64, 0.5), rgba(156, 64, 255, 0.5), rgba(255, 170, 64, 0.5));
  background-size: 300% 100%;
  animation: gradient-animation 3s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: subtract;
  mask-composite: subtract;
}

.flash-sale-text {
  font-size: 0.875rem;
  /* text-sm */
  font-weight: 500;
  /* font-medium */
  background-image: linear-gradient(to right, var(--color-from, #ffaa40), var(--color-to, #9c40ff), var(--color-from, #ffaa40));
  background-size: var(--bg-size, 300%) 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-animation var(--duration, 3s) linear infinite;
  --color-from: #ffaa40;
  --color-to: #9c40ff;
  --bg-size: 300%;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Product Variant Card */
.product-variant {
  min-height: 110px;
  /* min-h-[85px] - adjusted for better spacing with Bootstrap card */
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  /* border-transparent */
  background-color: #e9ecef;
  /* bg-muted */
  color: #6c757d;
  /* text-muted-foreground */
}

.product-variant:hover,
.product-variant.active {
  /* Simulate data-[state=active] */
  border-color: var(--bs-primary);
  background-color: var(--bs-white);
  /* Example: slightly different background when active */
}

.product-variant.active {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.product-variant .card-body {
  padding: 0.75rem;
  /* p-3 */
}

.product-variant-name {
  font-size: 0.75rem;
  /* text-xs */
  font-weight: 600;
  /* font-semibold */
}

.product-image-container {
  width: 2rem;
  /* md:w-8 */
  height: 2rem;
  /* md:w-8 */
  aspect-ratio: 1/1;
}

.product-image {
  object-fit: contain;
  object-position: right;
  transition: transform 0.3s ease;
}

.product-variant:hover .product-image {
  transform: rotate(12deg) scale(1.1);
}

.flash-sale-item .product-image {
  /* group-hover/flashsale:scale-110 */
  /* This specific hover might need JS if it depends on parent flash-sale hover */
}

.product-price {
  font-size: 0.875rem;
  /* text-[14px] */
  font-weight: 600;
  /* font-semibold */
}

@media (min-width: 768px) {

  /* md: */
  .product-price {
    font-size: 1rem;
    /* md:text-[16px] */
  }
}

.product-progress {
  height: 0.375rem;
  /* h-1.5 */
}

.product-stock-text {
  font-size: 0.6rem;
  /* text-[8px] */
  font-weight: 600;
  /* font-semibold */
}

@media (min-width: 768px) {

  /* md: */
  .product-stock-text {
    font-size: 0.625rem;
    /* md:text-[10px] */
  }
}

.product-footer {
  background: linear-gradient(to bottom, #e9ecef, rgba(233, 236, 239, 0.4));
  /* from-muted to-muted/40 */
  padding: 0.5rem;
  /* p-2 */
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

.payment-logo-container {
  background-color: white;
  padding: 0.25rem;
  /* p-1 */
  border-radius: 0.25rem;
  /* rounded */
}

.payment-logo {
  height: 0.75rem;
  /* h-3 */
  width: 3rem;
  /* w-12 */
  color: #285346;
  /* fill color from SVG */
}

/* Info icon styling */
.info-icon-container {
  position: absolute;
  bottom: 2.5rem;
  /* bottom-10 (10 * 0.25rem = 2.5rem) */
  right: 0.25rem;
  /* right-1 */
}

.info-icon-container .bi-info-circle {
  font-size: 1rem;
  /* h-4 w-4 */
  color: #6c757d;
  /* text-muted-foreground */
}