@import '../vendor/bootstrap/css/bootstrap.css';

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Open Sans",  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: "Jost",  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: #f1f1f1; /* Background color for the entire website, including individual sections */
    --default-color: #0c0f25; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #0154a2; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #ED2226; /* 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: #f1f1f1; /* 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: #f1f1f1; /* 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: #f1f1f1;  /* The default color of the main navmenu links */
    --nav-hover-color: #ED2226; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #f1f1f1; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #f1f1f1; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #0c0f25; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #ED2226; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  }
  
  :root {
    --kal-color: #ED2226;  /* The default color of the main navmenu links */
    --kal-hover-color: #f1f1f1; /* Applied to main navmenu links when they are hovered over or active */
    --kal-mobile-background-color: #f1f1f1; /* Used as the background color for mobile navigation menu */
    --kal-dropdown-background-color: #f1f1f1; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --kal-dropdown-color: #f1f1f1; /* Used for navigation links of the dropdown items in the navigation menu. */
    --kal-dropdown-hover-color: #f1f1f1; /* 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: rgba(255, 252, 250, 0.925);
    --surface-color: #f1f1f1;
  }
  
  .dark-background {
    --background-color: #0154a2;
    --default-color: #f1f1f1;
    --heading-color: #f1f1f1;
    --surface-color: #0154a2;
    --contrast-color: #f1f1f1;
  }
  
  /* Smooth scroll */
  :root {
    scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # Global Styling & Shared Classes
  --------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

main.main {
  flex: 1;
}

main#main {
  flex: 1;
  padding-bottom: 60px;
}
  
  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: #f1f1f1;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
  }
  
  .php-email-form .sent-message {
    display: none;
    color: #f1f1f1;
    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: #0154a2;
    --heading-color: #f1f1f1;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 1250;
  }
  
  .header .logo {
    line-height: 2;
  }
  
  .header .logo img {
    max-height: 80px;
    margin-right: 8px;
  }
  
  .header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 500;
    color: var(--heading-color);
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    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, #0154a2, transparent 15%);
  }
  
  @media (max-width: 100px) {
    .header .logo {
      order: 1;
    }
  
    .header .btn-getstarted {
      order: 2;
      margin: 0 15px 0 0;
      padding: 6px 15px;
    }
  
    .header .navmenu {
      order: 3;
    }
  }
  
  /* Index Page Header
  ------------------------------*/
  .index-page .header {
    --background-color: rgba(255, 255, 255, 0);
    --heading-color: #f1f1f1;
    --nav-color: #f1f1f1;
  }
  
  /* Index Page Header on Scroll
  ------------------------------*/
  .index-page.scrolled .header {
    --background-color: #0154a2;
  }
  
  /*--------------------------------------------------------------
  # Kalkulator Menu
  --------------------------------------------------------------*/
  .kal .info-wrap {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    padding: 30px;
    height: 100%;
  }
  
  @media (max-width: 575px) {
    .kal .info-wrap {
      padding: 20px;
    }
  }
  .kal button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
  }
  
  /* Customize the select dropdown */
  .kal input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #f1f1f1;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none; /* Safari */
    -moz-appearance: none; /* Firefox */
    position: relative;
    padding-right: 40px; /* Make room for the arrow */
  }

  .kal input:hover {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #f1f1f1;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none; /* Safari */
    -moz-appearance: none; /* Firefox */
    position: relative;
    padding-right: 40px; /* Make room for the arrow */
  }

  .kal select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #f1f1f1;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none; /* Safari */
    -moz-appearance: none; /* Firefox */
    position: relative;
    padding-right: 40px; /* Make room for the arrow */
  }
  
  /* Add a custom arrow */
  .kal select::after {
    content: '\25BC'; /* Unicode character for down arrow */
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none; /* Make sure arrow is not clickable */
    font-size: 16px;
    color: #ED2226;
  }
  
  /* Hover effect */
  .kal select:hover {
    border-color: #f1f1f1;
    background-color: #ED2226;
    color: #f1f1f1;
  }
  
  /* Customize options */
  .kal select option {
    padding: 10px;
    font-size: 16px;
    background-color: #f1f1f1;
    color: #315b4b;
  }
  
  /* Remove outline on focus */
  .kal select:focus {
    outline: none;
    border-color: #ED2226;
  }
  
  /*--------------------------------------------------------------
  # info warp kal Menu
  --------------------------------------------------------------*/
  
  .info-wrap {
    background-color: #f1f1f1; /* Light background color similar to form elements */
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd; /* Soft border to blend with other sections */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow for depth */
  }
  
  /* Add spacing and font styling */
  .info-wrap h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #315b4b; /* Dark color for readability */
  }
  
  .info-wrap ul {
    list-style-type: none;
    padding: 0;
  }
  
  .info-wrap ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  /* Reuse button styles for the .info-wrap a */
  .info-wrap a.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #b0c38b; /* Same as Send Message button */
    color: #f1f1f1;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s;
    cursor: pointer;
  }
  
  /* Hover effect for the button */
  .info-wrap a.btn:hover {
    background-color: #b7ce89;
    text-decoration: none;
  }
  
  .divtesti {
    display: flex;
    justify-content: center;  /* Posisi horizontal */
    align-items: center;      /* Posisi vertikal */
    height: 150px;            /* Berikan tinggi pada div jika diperlukan */
  }
  .btntesti {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ED2226; /* Same as Send Message button */
    color: #f1f1f1;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s;
    cursor: pointer;
    /* align-items: center; */
    padding: 10px 20px;
  }
  
  /* Hover effect for the button */
  .btntesti:hover {
    background-color: #c1d49b;
    text-decoration: none;
  }
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  @media (min-width: 1200px) {
    .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: 15px;
      font-family: var(--nav-font);
      font-weight: 400;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
    .navmenu li: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(62, 53,48, 0.1);
    }
  
    .navmenu .dropdown ul li {
      min-width: 200px;
    }
  
    .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: var(--nav-dropdown-color);
    }
  
    .navmenu .dropdown ul a i {
      font-size: 12px;
    }
  
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
    }
  
    .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
    }
  
    .navmenu .megamenu {
      position: static;
    }
  
    .navmenu .megamenu ul {
      margin: 0;
      padding: 10px;
      background: var(--nav-dropdown-background-color);
      box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
      position: absolute;
      top: 130%;
      left: 0;
      right: 0;
      visibility: hidden;
      opacity: 0;
      display: flex;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
    }
  
    .navmenu .megamenu ul li {
      flex: 1;
    }
  
    .navmenu .megamenu ul li a,
    .navmenu .megamenu ul li:hover>a {
      padding: 10px 20px;
      font-size: 15px;
      color: var(--nav-dropdown-color);
    }
  
    .navmenu .megamenu ul li a:hover,
    .navmenu .megamenu ul li .active,
    .navmenu .megamenu ul li .active:hover {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .megamenu:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navmenu .dd-box-shadow {
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  }
  
  /* Mobile Navigation */
  @media (max-width: 1199px) {
    .mobile-nav-toggle {
      color: var(--nav-color);
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
    }
  
    .navmenu {
      padding: 0;
      z-index: 9997;
    }
  
    .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: var(--nav-mobile-background-color);
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-dropdown-color);
      padding: 10px 20px;
      font-family: var(--nav-font);
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
      background-color: var(--accent-color);
      color: var(--contrast-color);
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .active i,
    .navmenu .active:focus i {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      transform: rotate(180deg);
    }
  
    .navmenu .dropdown ul {
      position: static;
      display: none;
      z-index: 99;
      padding: 10px 0;
      margin: 10px 20px;
      background-color: var(--nav-dropdown-background-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      transition: all 0.5s ease-in-out;
    }
  
    .navmenu .dropdown ul ul {
      background-color: rgba(33, 37, 41, 0.1);
    }
  
    .navmenu .dropdown>.dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
      color: #fff;
      position: absolute;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
    }
  }
  
  /*--------------------------------------------------------------
  # Global Footer
  --------------------------------------------------------------*/
  .footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
  }
  
  .footer .footer-newsletter {
    background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
    padding: 50px 0;
  }
  
  .footer .footer-newsletter h4 {
    font-size: 24px;
  }
  
  .footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    transition: 0.3s;
    border-radius: 50px;
  }
  
  .footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
  }
  
  .footer .footer-newsletter .newsletter-form input[type=email] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    color: var(--default-color);
  }
  
  .footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
    outline: none;
  }
  
  .footer .footer-newsletter .newsletter-form input[type=submit] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -8px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 50px;
  }
  
  .footer .footer-newsletter .newsletter-form input[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
  
  .footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  
  .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 {
    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: 28px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--heading-font);
  }
  
  .footer .footer-contact p {
    margin-bottom: 5px;
  }
  
  .footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  
  .footer .copyright p {
    margin-bottom: 0;
  }
  
  .footer .credits {
    margin-top: 6px;
    font-size: 13px;
  }
  
  /*--------------------------------------------------------------
  # 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 #f1f1f1;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
  }
  
  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  /*--------------------------------------------------------------
  # Scroll Top Button
  --------------------------------------------------------------*/
  .scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 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 {
    --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;
  }
  
  .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: 88px;
    overflow: clip;
  }
  
  @media (max-width: 1199px) {
  
    section,
    .section {
      scroll-margin-top: 66px;
    }
  }
  
  /*--------------------------------------------------------------
  # Global Section Titles
  --------------------------------------------------------------*/
  .section-title {
    text-align: center;
    padding-bottom: 30px;
    position: relative;
  }
  
  .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;
    position: relative;
  }
  
  .section-title h2:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
  }
  
  .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    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;
    overflow: hidden;
    padding: 0;
    width: 100%;
    min-height: 80vh;
  }
  
  /* Base carousel and item styles */
  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  /* Image container styling */
  .hero .carousel-item {
    background: transparent !important;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity;
    transition: transform 2.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .hero .carousel-item.active {
    opacity: 1;
    transform: scale(1);
  }
  
  .hero .carousel-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 2.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
  }
  
  .hero .carousel-item.active .carousel-image-container {
    transform: scale(1);
  }
  
  /* Slide transitions */
  .hero .carousel-item-next:not(.carousel-item-start),
  .hero .active.carousel-item-end {
    transform: translateX(30px) scale(0.95);
    opacity: 0;
  }
  
  .hero .carousel-item-prev:not(.carousel-item-end),
  .hero .active.carousel-item-start {
    transform: translateX(-30px) scale(0.95);
    opacity: 0;
  }
  
  /* Ensure content stays on top */
  .hero .carousel-caption {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1),
                transform 2s cubic-bezier(0.4, 0, 0.2, 1);
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero .carousel-item.active .carousel-caption {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Dark overlay with gradient for better text visibility */
  .hero .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.5) 75%
    );
    opacity: 0;
    transition: opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }
  
  .hero .carousel-item.active::before {
    opacity: 1;
  }
  
  /* Navigation controls */
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
    border: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 5;
  }
  
  .hero:hover .carousel-control-prev,
  .hero:hover .carousel-control-next {
    opacity: 1;
  }
  
  .hero .carousel-control-prev {
    left: 2rem;
    transform: translateY(-50%) translateX(-10px);
  }
  
  .hero .carousel-control-next {
    right: 2rem;
    transform: translateY(-50%) translateX(10px);
  }
  
  .hero:hover .carousel-control-prev {
    transform: translateY(-50%) translateX(0);
  }
  
  .hero:hover .carousel-control-next {
    transform: translateY(-50%) translateX(0);
  }
  
  .hero .carousel-control-prev-icon,
  .hero .carousel-control-next-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    background-size: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
  }
  
  .hero .carousel-control-prev:hover .carousel-control-prev-icon,
  .hero .carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
  }
  
  /* Carousel indicators */
  .hero .carousel-indicators {
    z-index: 5;
    margin-bottom: 2rem;
  }
  
  .hero .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    opacity: 0.6;
    margin: 0 6px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.8);
  }
  
  .hero .carousel-indicators button.active {
    background-color: #fff;
    border-color: var(--accent-color, #b0c38b);
    opacity: 1;
    transform: scale(1);
    width: 12px;
    height: 12px;
  }
  
  /* Mobile optimizations */
  @media (max-width: 768px) {
    .hero .carousel-control-prev {
      left: 1rem;
    }
    
    .hero .carousel-control-next {
      right: 1rem;
    }
    
    .hero .carousel-control-prev-icon,
    .hero .carousel-control-next-icon {
      width: 40px;
      height: 40px;
      background-size: 20px;
    }
  }
  
  /* Remove tap highlight on mobile */
  @media (hover: none) and (pointer: coarse) {
    .hero .carousel-control-prev,
    .hero .carousel-control-next,
    .hero .carousel-control-prev-icon,
    .hero .carousel-control-next-icon {
      -webkit-tap-highlight-color: transparent;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      user-select: none;
    }
  }
  
  .hero .carousel-caption {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    padding: 0 50px;
    z-index: 2;
    width: 100%;
  }
  
  .hero .carousel-caption h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .hero .carousel-caption p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
  }
  
  /* Updated Carousel Controls to ensure they're clickable */
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 10%;
    z-index: 100;
    opacity: 0.9;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
  }
  
  .hero .carousel-control-prev-icon,
  .hero .carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    background-size: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
  
  .hero .carousel-control-prev:hover .carousel-control-prev-icon,
  .hero .carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--accent-color, #b0c38b);
    transform: scale(1.1);
  }
  
  /* Fix for background elements that might be blocking controls */
  .hero::before {
    z-index: 5 !important;
  }
  
  .hero .carousel-item::before {
    z-index: 6 !important;
  }
  
  .hero .carousel-caption {
    z-index: 7 !important;
  }
  
  .hero .carousel-indicators {
    z-index: 99 !important;
  }
  
  @media (max-width: 768px) {
    .hero .carousel-caption h1 {
        font-size: 36px;
    }
    .hero .carousel-caption p {
        font-size: 16px;
    }
  }
  
  .testi {
    width: 100%;
    min-height: 5vh;
    position: relative;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
    z-index: 1;
  }
  
  .hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 12px 28px;
    border-radius: 50px;
    transition: 0.5s;
  }
  
  .hero .btn-get-started:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
  }
  
  .hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
  }
  
  .hero .btn-watch-video i {
    color: var(--contrast-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
  }
  
  .hero .btn-watch-video:hover {
    color: var(--accent-color);
  }
  
  .hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
  }
  
  .hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }
  
  .hero video {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover ;
  }
  
  .hero:before{
    z-index: 777;
    content: '';
    position: absolute;
    background: rgba(60, 96, 82, 0.3);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  
    .slider-navigation{
      z-index: 888;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      transform: translateY(80px);
      margin-bottom: 12px;
    }
  
    .slider-navigation .nav-btn{
      width: 15px;
      height: 15px;
      background: #f1f1f1;
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    }
  
    .slider-navigation .nav-btn.active{
      background-color: #b0c38b;
    }
  
    .slider-navigation .nav-btn:not(:last-child){
      margin-right: 20px;
    }
  
    .slider-navigation .nav-btn:hover{
      transform: scale(1.2);
    }
  
    .vid-slider{
      position: absolute;
      width: 100%;
      clip-path: circle(0% at 0 50%);
    }
  
    .vid-slider.active{
      clip-path: circle(150% at 0 50%);
      transition: 2s ease;
      transition-property: clip-path;
    }
  
    .text-slider {
      display: none;
    }
    
    .text-slider.active {
      display: block;
    }
  @media (max-width: 640px) {
    .hero h1 {
      font-size: 28px;
      line-height: 36px;
    }
  
    .hero p {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  
    .hero .btn-get-started,
    .hero .btn-watch-video {
      font-size: 13px;
    }
  
    
  }
  
  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }
  
    100% {
      transform: translateY(-10px);
    }
  }
  
  /*--------------------------------------------------------------
  # Clients Section
  --------------------------------------------------------------*/
  .clients {
    padding: 12px 0;
  }
  
  .clients .swiper {
    padding: 10px 0;
  }
  
  .clients .swiper-wrapper {
    height: auto;
  }
  
  .clients .swiper-slide img {
    transition: 0.3s;
    padding: 0 10px;
  }
  
  .clients .swiper-slide img:hover {
    transform: scale(1.1);
  }
  
  /*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/
  .about ul {
    list-style: none;
    padding: 0;
  }
  
  .about ul li {
    padding-bottom: 5px;
    display: flex;
    align-items: center;
  }
  
  .about ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
  }
  
  .about .read-more {
    color: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 8px 28px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
  }
  
  .about .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
  }
  
  .about .read-more:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
  }
  
  .about .read-more:hover i {
    transform: translate(5px, 0);
  }
  
  /*--------------------------------------------------------------
  # Why Us Section
  --------------------------------------------------------------*/
  .why-us {
    padding: 30px 0;
  }
  
  .why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
  }
  
  .why-us .content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
  }
  
  .why-us .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .why-us .faq-container .faq-item:last-child {
    margin-bottom: 0;
  }
  
  .why-us .faq-container .faq-item h3 {
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .why-us .faq-container .faq-item h3 span {
    color: var(--accent-color);
    padding-right: 5px;
    font-weight: 600;
  }
  
  .why-us .faq-container .faq-item h3:hover {
    color: var(--accent-color);
  }
  
  .why-us .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
  }
  
  .why-us .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
  }
  
  .why-us .faq-container .faq-item .faq-icon {
    position: absolute;
    top: 22px;
    left: 20px;
    font-size: 22px;
    line-height: 0;
    transition: 0.3s;
    color: var(--accent-color);
  }
  
  .why-us .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .why-us .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
  }
  
  .why-us .faq-container .faq-active h3 {
    color: var(--accent-color);
  }
  
  .why-us .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
  }
  
  .why-us .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
  }
  
  .why-us .why-us-img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .why-us .why-us-img img {
    max-height: 100%;
  }
  
  /*--------------------------------------------------------------
  # Skills Section
  --------------------------------------------------------------*/
  .skills .content h3 {
    font-size: 2rem;
    font-weight: 700;
  }
  
  .skills .content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
  }
  
  .skills .content p:last-child {
    margin-bottom: 0;
  }
  
  .skills .content ul {
    list-style: none;
    padding: 0;
  }
  
  .skills .content ul li {
    padding-bottom: 10px;
  }
  
  .skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
  }
  
  .skills .progress .skill {
    color: var(--default-color);
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: var(--heading-font);
  }
  
  .skills .progress .skill .val {
    float: right;
    font-style: normal;
  }
  
  .skills .progress-bar-wrap {
    background: color-mix(in srgb, var(--heading-color), transparent 90%);
    height: 10px;
  }
  
  .skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: var(--heading-color);
  }
  
  /*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
  .services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    height: 100%;
  }
  
  .services .service-item .icon {
    margin-bottom: 10px;
    height: 50px;
    width: 50px;
  }
  
  .services .service-item .icon i {
    color: var(--accent-color);
    font-size: 36px;
    transition: 0.3s;
  }
  
  .services .service-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  .services .service-item h4 a {
    color: var(--heading-color);
    transition: ease-in-out 0.3s;
  }
  
  .services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .services .service-item:hover {
    transform: translateY(-10px);
    /* background-image: url("assets/img/pemasangan/2jpg"); */
  }
  
  .services .service-item:hover h4 a {
    color: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Call To Action Section
  --------------------------------------------------------------*/
  .call-to-action {
    padding: 120px 0;
    position: relative;
    clip-path: inset(0);
  }
  
  .call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .call-to-action:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 35%);
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  
  .call-to-action .container {
    position: relative;
    z-index: 3;
  }
  
  .call-to-action h3 {
    color: var(--default-color);
    font-size: 28px;
    font-weight: 700;
  }
  
  .call-to-action p {
    color: var(--default-color);
  }
  
  .call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
  }
  
  .call-to-action .cta-btn:hover {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Portfolio Section
  --------------------------------------------------------------*/
  .portfolio .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
  }
  
  .portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    font-family: var(--heading-font);
  }
  
  .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 0 10px 0;
    }
  }
  
  .portfolio .portfolio-item {
    position: relative;
    overflow: hidden;
  }
  
  .portfolio .portfolio-item .portfolio-info {
    position: absolute;
    bottom: 10px;
    left: 20px;    
    width: 90%;
    background: var(--background-color); 
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    /* transition: all 0.3s ease; */
  }
  
  .portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
  }
  
  .portfolio .portfolio-item .portfolio-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
    white-space: nowrap;        
    overflow: hidden;            
    text-overflow: ellipsis;     
    max-width: 70%; 
  }
  
  .portfolio .portfolio-item .portfolio-info .preview-link {
    position: absolute;
    right: 25px;
    font-size: 15px;
    top: calc(50%);
    color: color-mix(in srgb, var(--accent-color), transparent 10%);
    transition: 0.3s;
    line-height: 0;
  }
  
  .portfolio .portfolio-item .portfolio-info .preview-link:hover{
    color: var(--heading-color);
  }
  
  
  .portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 10px;
  }
  
  /*--------------------------------------------------------------
  # Store Section
  --------------------------------------------------------------*/
  .store .store-member {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 5px;
    transition: 0.5s;
    padding: 30px;
    height: 100%;
  }
  
  @media (max-width: 468px) {
    .store .store-member {
      flex-direction: column;
      justify-content: center !important;
      align-items: center !important;
    }
  }
  
  .store .store-member .pic {
    overflow: hidden;
    width: 165px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  
.store .store-member .pic img {
    transition: ease-in-out 0.3s;
    width: 165px;
    height: 165px;
    object-fit: cover;
    border-radius: 50%;
}
  
  .store .store-member:hover {
    transform: translateY(-10px);
  }
  
  .store .store-member .member-info {
    padding-left: 30px;
  }
  
  @media (max-width: 468px) {
    .store .store-member .member-info {
      padding: 30px 0 0 0;
      text-align: center;
    }
  }
  
  .store .store-member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
  }
  
  .store .store-member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
  }
  
  .store .store-member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 85%);
    bottom: 0;
    left: 0;
  }
  
  @media (max-width: 468px) {
    .store .store-member span::after {
      left: calc(50% - 25px);
    }
  }
  
  .store .store-member p {
    margin: 10px 0 0 0;
    font-size: 14px;
  }
  
  .store .store-member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
  }
  
  @media (max-width: 468px) {
    .store .store-member .social {
      justify-content: center;
    }
  }
  
  .store .store-member .social a {
    background: color-mix(in srgb, var(--default-color), transparent 94%);
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 36px;
    height: 36px;
  }
  
  .store .store-member .social a i {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 16px;
    margin: 0 2px;
  }
  
  .store .store-member .social a:hover {
    background: var(--accent-color);
  }
  
  .store .store-member .social a:hover i {
    color: var(--contrast-color);
  }
  
  .store .store-member .social a+a {
    margin-left: 8px;
  }
  
  /*--------------------------------------------------------------
  # Pricing Section
  --------------------------------------------------------------*/
  .pricing .pricing-item {
    background-color: var(--surface-color);
    box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--background-color);
    padding: 60px 40px;
    height: 100%;
    border-radius: 5px;
  }
  
  .pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  .pricing h4 {
    color: var(--accent-color);
    font-size: 48px;
    font-weight: 400;
    font-family: var(--heading-font);
    margin-bottom: 0;
  }
  
  .pricing h4 sup {
    font-size: 28px;
  }
  
  .pricing h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 18px;
  }
  
  .pricing ul {
    padding: 20px 0;
    list-style: none;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-align: left;
    line-height: 20px;
  }
  
  .pricing ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  
  .pricing ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px;
  }
  
  .pricing ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
  }
  
  .pricing ul .na i {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
  }
  
  .pricing ul .na span {
    text-decoration: line-through;
  }
  
  .pricing .buy-btn {
    color: var(--accent-color);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--heading-font);
    transition: 0.3s;
    border: 1px solid var(--accent-color);
  }
  
  .pricing .buy-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
  }
  
  .pricing .featured {
    border-top-color: var(--accent-color);
  }
  
  .pricing .featured .buy-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
  }
  
  @media (max-width: 992px) {
    .pricing .box {
      max-width: 60%;
      margin: 0 auto 30px auto;
    }
  }
  
  @media (max-width: 767px) {
    .pricing .box {
      max-width: 80%;
      margin: 0 auto 30px auto;
    }
  }
  
  @media (max-width: 420px) {
    .pricing .box {
      max-width: 100%;
      margin: 0 auto 30px auto;
    }
  }
  
/*--------------------------------------------------------------
  # Testimonials Section
  --------------------------------------------------------------*/
  .testimonials .section-header {
    margin-bottom: 40px;
  }
  
  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }
  
  .testimonials .testimonial-item {
    text-align: center;
  }
  
  .testimonials .testimonial-item .testimonial-img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid var(--background-color);
    margin: 0 auto;
  }
  
  .testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
  }
  
  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0 0 15px 0;
  }
  
  .testimonials .testimonial-item .stars {
    margin-bottom: 15px;
  }
  
  .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: 0 auto 15px auto;
  }
  
  .testimonials .swiper-wrapper {
    height: auto;
  }
  
  .testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
  }
  
  @media (min-width: 992px) {
    .testimonials .testimonial-item p {
      width: 80%;
    }
  }
  
  /* users index testimonials images */
  #testimoni img,
  #testimoni .swiper-slide img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  /*--------------------------------------------------------------
  # Faq 2 Section
  --------------------------------------------------------------*/
  .faq-2 .faq-container {
    margin-top: 15px;
  }
  
  .faq-2 .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    overflow: hidden;
  }
  
  .faq-2 .faq-container .faq-item:last-child {
    margin-bottom: 0;
  }
  
  .faq-2 .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin: 0 30px 0 32px;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .faq-2 .faq-container .faq-item h3 span {
    color: var(--accent-color);
    padding-right: 5px;
  }
  
  .faq-2 .faq-container .faq-item h3:hover {
    color: var(--accent-color);
  }
  
  .faq-2 .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
  }
  
  .faq-2 .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
  }
  
  .faq-2 .faq-container .faq-item .faq-icon {
    position: absolute;
    top: 22px;
    left: 20px;
    font-size: 20px;
    line-height: 0;
    transition: 0.3s;
    color: var(--accent-color);
  }
  
  .faq-2 .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .faq-2 .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
  }
  
  .faq-2 .faq-container .faq-active h3 {
    color: var(--accent-color);
  }
  
  .faq-2 .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
  }
  
  .faq-2 .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/
.contact .info-wrap {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
  }
  
  @media (max-width: 575px) {
    .contact .info-wrap {
      padding: 20px;
    }
  }
  
  .contact .info-item {
    margin-bottom: 40px;
  }
  
  .contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
  }
  
  .contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
  }
  
  .contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
  }
  
  .contact .info-item:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
  }
  
.contact .php-email-form {
    background-color: var(--surface-color);
    height: 100%;
    padding: 30px;
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  @media (max-width: 575px) {
    .contact .php-email-form {
      padding: 20px;
    }
  }
  
  .contact .php-email-form input[type=text],
  .contact .php-email-form input[type=email],
  .contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  }
  
  .contact .php-email-form input[type=text]:focus,
  .contact .php-email-form input[type=email]:focus,
  .contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
  }
  
  .contact .php-email-form input[type=text]::placeholder,
  .contact .php-email-form input[type=email]::placeholder,
  .contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
  }
  
  .contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
  }
  
  .contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 25%);
  }
  
  /*--------------------------------------------------------------
  # Portfolio Details Section
  --------------------------------------------------------------*/
  .portfolio-details .portfolio-details-slider img {
    width: 100%;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
  }
  
  .portfolio-details .portfolio-info {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  }
  
  .portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
  }
  
  .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%);
  }
  
  .portfolio-item {
  display: block;
  position: relative;
  text-decoration: none;
}

.image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* border-radius: 5px; */
}

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

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--default-color); 
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay span {
  color: var(--background-color);
  font-size: 1.8rem;
  text-shadow: 1px 1px 2px rgb(12, 12, 12);
}
.overlay #judul{
  color: var(--accent-color);
  font-weight: bold;  
  font-size: 3.8rem;
  text-shadow: 1px 1px 2px rgb(12, 12, 12);
}

.image-container:hover .overlay {
  opacity: 0.5;
}
  /*--------------------------------------------------------------
  # Portfolio Details Section
  --------------------------------------------------------------*/
  .portfolio-details .portfolio-details-slider img {
    width: 100%;
  }
  .portfolio-details .swiper-button-next,
  .swiper-button-prev {
    color: var(--background-color); 
    width: 44px;
    height: 44px;
  }

  
.arrow-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; 
  background-color: rgba(255, 0, 0, 0.6); 
}

.arrow-box .left {
  order: -1;
}

.arrow-box .right {
  order: 1;
}

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

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

/* Modal Theme */
.modal-content {
  background: rgba(253, 247, 244, 0.85); /* glass effect */
  color: var(--default-color, #001523);
  border-radius: 1.25rem;
  box-shadow: 0 8px 32px 0 rgba(60, 96, 82, 0.18), 0 1.5rem 2rem rgba(176, 195, 139, 0.08);
  border: 1.5px solid var(--accent-color, #b0c38b);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  transition: box-shadow 0.3s, border 0.3s, background 0.3s;
}

.modal-header {
  border-radius: 1.25rem 1.25rem 0 0;
  box-shadow: 0 2px 8px rgba(60,96,82,0.04);
}

.modal-title {
  color: var(--heading-color, #3c6052);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.35rem;
}

.modal-footer {
  background: transparent;
  border-top: none;
  border-radius: 0 0 1.25rem 1.25rem;
  justify-content: center;
  box-shadow: 0 -2px 8px rgba(60,96,82,0.04);
}

.modal-body {
  background: rgba(255,255,255,0.15);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.modal-img {
  max-width: 100%;
  max-height: 60vh;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 1rem #00152380;
  animation: fadeInDesc 0.5s cubic-bezier(.4,2,.6,1);
}

.modal-header .btn-close {
  filter: invert(0.7);
  opacity: 0.7;
  transition: filter 0.2s, opacity 0.2s, box-shadow 0.2s;
  border-radius: 50%;
  box-shadow: none;
  margin-right: 0.1rem;
}
.modal-header .btn-close:hover {
  filter: invert(0.3) drop-shadow(0 0 4px var(--accent-color, #b0c38b));
  opacity: 1;
  box-shadow: 0 0 0 2px var(--accent-color, #b0c38b, 0.2);
}

/* Animasi muncul modal */
.modal.fade .modal-dialog {
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), opacity 0.3s cubic-bezier(.4,2,.6,1);
  transform: translateY(40px) scale(0.98);
  opacity: 0;
}
.modal.show .modal-dialog {
  transform: none;
  opacity: 1;
}

/* Modal Full Size Image Customization */
.modal-full-img-body {
  min-height: unset !important;
  height: auto !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

#fullSizeImg,
#fullSizeImgCatalog {
  max-width: 98vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  display: block;
  margin: auto;
  box-shadow: 0 0 24px rgba(0,0,0,0.18);
  border-radius: 1rem;
  background: transparent;
  object-fit: contain;
}

/* Full Screen Modal Styles */
.modal-full-img .modal-dialog,
.modal-fullscreen-dialog {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-full-img .modal-content,
.modal-fullscreen-content {
  background: transparent;
  border: none;
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem;
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
}

.modal-full-img .modal-body,
.modal-fullscreen-body {
  padding: 0 !important;
  margin: 0;
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-fullscreen-img {
  max-width: 98vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 0 24px rgba(0,0,0,0.18);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.modal-nav-btns {
  display: none;
}
.modal-full-img .btn-close {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  z-index: 3;
  filter: invert(1);
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  opacity: 0.85;
  transition: opacity 0.2s, box-shadow 0.2s;
}
.modal-full-img .btn-close:hover {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--accent-color, #b0c38b, 0.2);
}

/* Modal Preview Description Styling */
.modal-footer .modal-description {
  font-size: 1.08rem;
  color: var(--default-color, #001523);
  background: rgba(60,96,82,0.07);
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.05rem 0.5rem #00152340;
  margin: 0 auto;
  max-width: 90%;
  font-family: var(--heading-font, 'Jost', sans-serif);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  text-shadow: 0 1px 4px rgba(255,255,255,0.25), 0 1px 2px rgba(60,96,82,0.08);
  animation: fadeInDesc 0.5s cubic-bezier(.4,2,.6,1);
}
@keyframes fadeInDesc {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* Modal navigation buttons for hasil-pasang */
.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  opacity: 0.85;
  font-size: 1.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(60,96,82,0.08);
  transition: background 0.08s, color 0.08s, box-shadow 0.08s, border 0.08s, opacity 0.08s, transform 0.08s;
}
.prev-btn {
  left: 10px;
}
.next-btn {
  right: 10px;
}
.prev-btn:hover, .next-btn:hover {
  opacity: 1;
  background: var(--accent-color, #b0c38b);
  color: var(--contrast-color, #fff);
  box-shadow: 0 4px 16px rgba(60,96,82,0.12);
}

/* Modal navigation buttons outside modal-content - improved visibility */
.modal-nav-btns {
  display: none;
  position: fixed;
  top: 50%;
  left: 0;
  width: 100vw;
  z-index: 1080; /* above modal and backdrop */
  pointer-events: none;
}

#imagePreviewModal.show ~ .modal-nav-btns,
#imagePreviewModal.show + .modal-nav-btns,
.modal.show ~ .modal-nav-btns {
  display: block;
}

.modal-nav-btns .prev-btn,
.modal-nav-btns .next-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  opacity: 0.92;
  font-size: 2.2rem;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 6px 32px 0 rgba(60,96,82,0.18), 0 1.5rem 2rem rgba(176,195,139,0.08);
  background: rgba(253,247,244,0.82);
  color: var(--heading-color, #3c6052);
  border: 2.5px solid var(--accent-color, #b0c38b);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  transition: background 0.08s, color 0.08s, box-shadow 0.08s, border 0.08s, opacity 0.08s, transform 0.08s;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  vertical-align: middle;
}

.modal-nav-btns .prev-btn { left: 2vw; }
.modal-nav-btns .next-btn { right: 2vw; }

.modal-nav-btns .prev-btn:hover,
.modal-nav-btns .next-btn:hover {
  opacity: 1;
  background: var(--accent-color, #b0c38b);
  color: #fff;
  border-color: var(--heading-color, #3c6052);
  box-shadow: 0 8px 32px 0 rgba(60,96,82,0.22), 0 2rem 3rem rgba(176,195,139,0.12);
  transform: translateY(-50%) scale(1.08);
}

.modal-nav-btns .prev-btn:active,
.modal-nav-btns .next-btn:active {
  transform: translateY(-50%) scale(0.97);
  box-shadow: 0 2px 8px rgba(60,96,82,0.10);
}

@media (max-width: 1200px) {
  .modal-nav-btns .prev-btn { left: 0.5vw; }
  .modal-nav-btns .next-btn { right: 0.5vw; }
}
@media (max-width: 768px) {
  .modal-nav-btns .prev-btn,
  .modal-nav-btns .next-btn {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.3rem;
  }
}

/* Modal navigation buttons only for hasil-pasang, positioned by JS */
#imagePreviewModal.show ~ .modal-nav-btns .prev-btn,
#imagePreviewModal.show ~ .modal-nav-btns .next-btn {
  z-index: 1081;
  /* left/right diatur JS */
}

/* --- Modal Full Image (Zoom) --- */
#imageFullModal .modal-dialog {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(0.96) !important;
  margin: 0 !important;
  max-width: none !important;
  width: auto !important;
  display: inline-block !important;
  opacity: 0 !important;
  transition: 
    opacity 0.1s cubic-bezier(.4,2,.6,1),
    transform 0.1s cubic-bezier(.4,2,.6,1) !important;
}

#imageFullModal.show .modal-dialog {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

/* Hero Carousel Loading Styles */
.hero .loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.hero .loading-container .spinner-border {
  color: #fff;
  opacity: 0.9;
  border-width: 0.25em;
}

.hero .loading-text {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
  margin-top: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: pulse 2s infinite;
  opacity: 0.9;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

/* Hero Carousel Indicators */
.hero .carousel-indicators {
  z-index: 15;
  margin-bottom: 2rem;
}

.hero .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  opacity: 0.8;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.hero .carousel-indicators button.active {
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-color: var(--accent-color, #b0c38b);
  opacity: 1;
}

/* Carousel Control Styles - Restored with Improvements */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  z-index: 1000;
  opacity: 1;
  padding: 0;
  margin: 0;
  background: none !important;
  border: none;
  outline: none !important;
}

.hero .carousel-control-prev {
  left: 2rem;
}

.hero .carousel-control-next {
  right: 2rem;
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background-size: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

.hero .carousel-control-prev:active .carousel-control-prev-icon,
.hero .carousel-control-next:active .carousel-control-next-icon {
  transform: scale(0.95);
  background-color: rgba(0, 0, 0, 0.7);
}

/* Prevent focus and active states from showing outlines or colored backgrounds */
.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus,
.hero .carousel-control-prev:active,
.hero .carousel-control-next:active {
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
  -webkit-tap-highlight-color: transparent;
}

/* Fix for z-index stacking order */
.hero::before {
  z-index: 5;
}

.hero .carousel-item::before {
  z-index: 6;
}

.hero .carousel-caption {
  z-index: 7;
}

.hero .carousel-indicators {
  z-index: 99;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .hero .carousel-control-prev {
    left: 1rem;
  }
  
  .hero .carousel-control-next {
    right: 1rem;
  }
  
  .hero .carousel-control-prev-icon,
  .hero .carousel-control-next-icon {
    width: 40px;
    height: 40px;
  }
}

/* Additional mobile-specific fixes */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  -webkit-tap-highlight-color: transparent !important;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

.hero .carousel-control-prev::after,
.hero .carousel-control-next::after {
  display: none !important;
}

/* Add additional override to prevent green background on tap */
@media (hover: none) and (pointer: coarse) {
  .hero .carousel-control-prev:active,
  .hero .carousel-control-next:active,
  .hero .carousel-control-prev:hover,
  .hero .carousel-control-next:hover {
    background: transparent !important;
    background-color: transparent !important;
  }
}

/* Remove green flash during transitions */
.hero .carousel-item {
  transition: transform 0.6s ease-in-out;
  transition-property: transform;
  background-color: transparent !important;
}

/* Override Bootstrap's background-color transitions completely */
.hero .carousel.slide .carousel-item,
.hero .carousel.slide .carousel-item.active,
.hero .carousel.slide .carousel-item-next,
.hero .carousel.slide .carousel-item-prev,
.hero .carousel.slide .carousel-item-next.carousel-item-start,
.hero .carousel.slide .carousel-item-prev.carousel-item-end {
  background-color: transparent !important;
  transition: transform 0.6s ease-in-out;
  transition-property: transform;
}

.hero .carousel-item.active,
.hero .carousel-item-next,
.hero .carousel-item-prev {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent !important;
}

/* Ensure no background color during transitions */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
  background-color: transparent !important;
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
  background-color: transparent !important;
}

/* Custom nav buttons with reduced clickable area */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  background: none !important;
  border: none;
  padding: 0;
  margin: 0;
  opacity: 1;
  z-index: 1000;
}

.hero .carousel-control-prev {
  left: 2rem;
}

.hero .carousel-control-next {
  right: 2rem;
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background-size: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

/* Mobile-specific fixes */
@media (hover: none) and (pointer: coarse) {
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    -webkit-tap-highlight-color: transparent !important;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
  }

  .hero .carousel-control-prev:active,
  .hero .carousel-control-next:active,
  .hero .carousel-control-prev:hover,
  .hero .carousel-control-next:hover {
    background: none !important;
  }
}

/* Ensure no background color flashes */
.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  background: none !important;
  outline: none !important;
}

/* Scroll Down Button */
.scroll-down-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: float 2s ease-in-out infinite;
}

.scroll-down-btn i {
  font-size: 32px;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-down-btn:hover {
  color: #fff;
  transform: translateX(-50%) translateY(-5px);
}

@keyframes float {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}

/* Add smooth scrolling to the page */
html {
  scroll-behavior: smooth;
}

/* Portfolio Card */
.portfolio-card {
  background: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

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

.portfolio-card .portfolio-description,
.portfolio-card .portfolio-info {
  padding: 1.5rem;
}

.portfolio-card .portfolio-description {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-card .portfolio-info {
  background-color: rgba(0, 0, 0, 0.02);
}

.portfolio-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
}

.portfolio-card p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.portfolio-card .btn-primary {
  background-color: var(--accent-color);
  border: 2px solid transparent;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: white;
  border-color: transparent;
}

.portfolio-card .btn-primary i {
  font-size: 1rem;
  margin-right: 6px;
  transition: transform 0.3s ease;
}

.portfolio-card .btn-primary:hover i {
  transform: translateX(2px);
}

.portfolio-card .bi {
  color: var(--accent-color);
}

.portfolio-card .list-unstyled {
  padding-left: 0;
  list-style: none;
}

.portfolio-card .list-unstyled li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.portfolio-card .bi-tag {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.preview-link {
  position: relative;
  z-index: 10;
}

/* =================================================
Katalog Section
================================================== */
#div-catalog-faqs {
  margin-top: 15px;
  padding: 0 15px;
}

#katalog.katalog-faq {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}

#katalog.katalog-faq .container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

#katalog.katalog-faq .faq-container {
  margin-top: 15px;
}

#katalog.katalog-faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

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

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

#katalog.katalog-faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

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

#katalog.katalog-faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.catalog-faq-image {
  max-width: 25%;
  height: auto;
  display: block;
  margin-top: 10px;
  border-radius: 4px;
}

.faq-item {
  background: var(--surface-color);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  padding: 20px 60px 20px 25px;
  border: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.faq-item.faq-active {
  background: var(--background-color);
}

.faq-item h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.faq-icon {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 1.2rem;
  color: var(--accent-color);
}

.faq-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
}

.faq-toggle.rotated {
  transform: translateY(-50%) rotate(90deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0;
}

.faq-item.faq-active .faq-content {
  max-height: 5000px;
  padding-top: 20px;
}

/* Modal Styles */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.85) !important;
  opacity: 1 !important;
}

.modal {
  z-index: 1060; /* Higher than header and scroll-top */
}

/* Ensure modal is above other elements */
#catalogImagePreviewModal {
  z-index: 1061; /* Above the backdrop */
}

/* Hide header and scroll-top when modal is open */
body.modal-open {
  padding-right: 0 !important;
  overflow: hidden;
}

body.modal-open #header,
body.modal-open .scroll-top {
  display: none !important;
}

/* Modal Content */
#catalogImagePreviewModal .modal-content {
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: var(--surface-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#catalogImagePreviewModal .modal-header {
  background-color: var(--surface-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#catalogImagePreviewModal .modal-header .close {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--default-color);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

#catalogImagePreviewModal .modal-header .close:hover {
  opacity: 1;
}

#catalogImagePreviewModal .modal-body {
  padding: 1rem;
  max-height: 70vh;
  overflow: auto;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#catalogImagePreviewModal .modal-footer {
  background-color: var(--surface-color);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Catalog Card Styles */
.catalog-card .btn {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin-top: auto;
  z-index: 2;
  padding: 0.5rem 1.4rem;
  border-radius: 2rem;
  background: var(--accent-color);
  color: #fff;
  font-weight: 600;
  font-family: var(--heading-font, 'Jost', sans-serif);
  box-shadow: 0 2px 12px #00152318;
  border: none;
  letter-spacing: 0.02em;
  transition: background 0.25s, box-shadow 0.25s, color 0.2s, transform 0.2s;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}

.catalog-card .btn:hover, .catalog-card .btn:focus {
  color: var(--contrast-color);
  background: color-mix(in srgb, #0154a2, transparent 15%);
}

.catalog-card .btn:active {
  background: var(--accent-color);
  color: #e6e6e6;
  box-shadow: 0 1px 4px #00152310;
  transform: scale(0.98);
}

.catalog-card {
  border: 1px solid rgba(var(--default-color-rgb), 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 370px;
  min-height: 370px;
  max-height: 370px;
  display: flex;
  flex-direction: column;
  background: var(--surface-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

/* Catalog Image Hover Effect */
.catalog-card .position-relative {
  position: relative;
  overflow: hidden;
  border-radius: 0.25rem 0.25rem 0 0;
}

.catalog-card .catalog-item-image {
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 100%;
  height: 200px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.catalog-card .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.catalog-card .position-relative:hover .image-overlay {
  opacity: 1;
}

.catalog-card .position-relative:hover .catalog-item-image {
  transform: scale(1.05);
}

.catalog-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.catalog-card .card-text {
  color: var(--default-color);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  opacity: 0.9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.5em;
}

.catalog-item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgba(var(--default-color-rgb), 0.1);
}

/* Loading Spinner */
.loading-spinner {
  padding: 2rem 0;
  color: var(--accent-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .faq-item {
    padding: 15px 50px 15px 15px;
  }
  
  .faq-item h3 {
    font-size: 1.1rem;
  }
  
  .catalog-card .card-title {
    font-size: 1rem;
  }
  
  .catalog-card .card-text {
    font-size: 0.85rem;
  }
  
  .catalog-item-image {
    height: 160px;
  }
}
