/**
* Template Name: OnePage
* Template URL: https://bootstrapmade.com/onepage-multipurpose-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #124265; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #7124ce; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #124265;  /* The default color of the main navmenu links */
  --nav-hover-color: #2487ce; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #124265; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2487ce; /* 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: #f6fafd;
  --surface-color: #ffffff;
}

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

.accent-background {
  --background-color: #2487ce;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #469fdf;
  --contrast-color: #ffffff;
}

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

/* SaaS Utility Classes */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2487ce 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07) !important;
}

.dark-background .glass-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.saas-btn {
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.saas-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.saas-btn i {
  font-size: 1.25rem;
  line-height: 0;
  margin: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}

.saas-btn:hover i {
  transform: translateX(3px);
}

.saas-btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #4f46e5 100%);
  color: white !important;
}

.saas-btn-secondary {
  background: #ffffff;
  color: #1e293b !important;
  border: 1px solid #e2e8f0;
}

.saas-btn-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e0;
}

.saas-btn-outline {
  background: transparent;
  color: var(--accent-color) !important;
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

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

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

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

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

.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: 4px;
  transition: 0.3s;
}

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

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

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

  .header .navmenu {
    order: 3;
  }
}

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

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

.footer .credits a {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

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

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

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

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

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

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

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

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

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

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

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

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

.page-title .breadcrumbs ol a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.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: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: calc(100vh - 100px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px 0;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(113, 36, 206, 0.05) 0%, transparent 40%),
              radial-gradient(circle at bottom left, rgba(36, 135, 206, 0.05) 0%, transparent 40%);
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--accent-color) 0.5px, transparent 0.5px);
  background-size: 30px 30px;
  opacity: 0.1;
  z-index: 1;
}

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

.hero .container {
  position: relative;
  z-index: 5;
}

.hero h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

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

.hero .btn-get-started {
  display: inline-flex;
  align-items: center;
  margin: 0 10px;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: 0.5s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
  text-decoration: none;
}

.hero .btn-icon {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .btn-label {
  padding: 12px 20px;
  font-weight: 500;
}

.hero .hero-content {
  padding: 40px 0;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero p {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
  color: #555;
}

.hero .hero-visual {
  margin-top: 50px;
  position: relative;
}

.hero .hero-visual img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

.hero .icon-box {
  background: linear-gradient(145deg, var(--surface-color) 0%, #fcfdfe 100%);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 20px;
  z-index: 1;
  height: 100%;
  width: 100%;
  border: 1px solid rgba(113, 36, 206, 0.08);
}

.hero .icon-box .number {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(113, 36, 206, 0.05);
  line-height: 1;
  transition: all 0.4s ease;
  z-index: -1;
  user-select: none;
}

.hero .icon-box:hover .number {
  color: rgba(113, 36, 206, 0.1);
  transform: translateY(10px) scale(1.1);
}

.hero .icon-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(113, 36, 206, 0.15);
  border-color: var(--accent-color);
}

.hero .btn-blue {
  background: #0d6efd;
  border-color: #0d6efd;
}

.hero .btn-blue:hover {
  background: color-mix(in srgb, #0d6efd, transparent 15%);
}

.hero .heartbeat-icon {
  font-size: 1.2em;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.3); }
  28% { transform: scale(1); }
  42% { transform: scale(1.3); }
  70% { transform: scale(1); }
}

.hero .ripple-effect {
  position: relative;
  overflow: hidden;
}

.hero .ripple-effect::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
  animation: ripple 2s infinite;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

.hero .icon-box {
  background-color: var(--surface-color);
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.hero .icon-box .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.hero .icon-box .description {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--accent-color);
  letter-spacing: -1px;
  line-height: 1;
}

.hero .icon-box .description span {
  font-size: 14px;
  font-weight: 500;
  color: #888;
  letter-spacing: 0;
  margin-left: 4px;
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: var(--accent-color);
}

@media (min-width: 640px) {
  .hero .icon-box:hover {
    transform: scale(1.08);
  }

  .hero .icon-box:hover .title a {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Horizontal Timeline Section
--------------------------------------------------------------*/
.htl-container-wrapper {
  position: relative;
  width: 100%;
}

.htl-scroll-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--accent-color);
  margin-bottom: 20px;
  background: rgba(113, 36, 206, 0.05);
  padding: 8px 15px;
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  animation: pulse 2s infinite;
}

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

.htl-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.htl-nav-btn:hover {
  background: var(--accent-color);
  color: white;
  box-shadow: 0 6px 20px rgba(113, 36, 206, 0.3);
}

.htl-nav-left {
  left: -22px;
}

.htl-nav-right {
  right: -22px;
}

@media (max-width: 992px) {
  .htl-nav-btn {
    display: none;
  }
}

.htl-wrapper {
  overflow-x: auto;
  padding: 10px 0 30px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) transparent;
}

.htl-wrapper::-webkit-scrollbar {
  height: 6px;
}

.htl-wrapper::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.04);
  border-radius: 10px;
}

.htl-wrapper::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 10px;
}

.htl {
  display: flex;
  position: relative;
  padding-top: 40px;
  min-width: max-content;
  gap: 0;
}

/* Horizontal connecting line */
.htl-line {
  position: absolute;
  top: 62px;
  left: 30px;
  right: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #2487ce, #0dcaf0, #20c997);
  border-radius: 3px;
  z-index: 0;
}

/* Each timeline item */
.htl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 280px;
  max-width: 300px;
  flex: 0 0 auto;
  position: relative;
  padding: 0 15px;
}

/* Icon node on the line */
.htl-node {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 4px solid white;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.htl-item:hover .htl-node {
  transform: scale(1.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Connector dot-to-card line */
.htl-node::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 16px;
  background: rgba(0,0,0,0.1);
}

/* Card below the node */
.htl-card {
  background: white;
  border-radius: 18px;
  padding: 22px 20px;
  border: 1px solid rgba(113, 36, 206, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.htl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(113, 36, 206, 0.1);
  border-color: rgba(113, 36, 206, 0.12);
}

/* Top accent bar */
.htl-card-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.htl-step {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
  margin-top: 4px;
}

.htl-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(113, 36, 206, 0.05);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.htl-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 10px;
  line-height: 1.4;
}

.htl-detail {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

.htl-detail p {
  margin-bottom: 6px;
}

.htl-detail p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .htl-item {
    min-width: 250px;
    max-width: 260px;
  }

  .htl-card {
    padding: 18px 16px;
  }

  .htl-title {
    font-size: 14px;
  }
}



.stats {
  padding: 80px 0;
  background: linear-gradient(180deg, #f6fafd 0%, #ffffff 100%);
}

.stats .stats-item {
  padding: 40px 30px;
  width: 100%;
  background: white;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.03);
  border: 1px solid rgba(113, 36, 206, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stats .stats-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #2487ce);
  opacity: 0;
  transition: 0.3s;
}

.stats .stats-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(113, 36, 206, 0.1);
}

.stats .stats-item:hover::before {
  opacity: 1;
}

.stats .counter-value {
  margin-bottom: 15px;
}

.stats .stemsago-counter {
  font-size: 54px;
  display: block;
  color: var(--accent-color);
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #2487ce 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats .stats-item p {
  color: #555;
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.stats .stats-item p strong {
  color: var(--heading-color);
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

/*--------------------------------------------------------------
# About Alt Section
--------------------------------------------------------------*/
.about-alt .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about-alt .content ul {
  list-style: none;
  padding: 0;
}

.about-alt .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about-alt .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about-alt .content p:last-child {
  margin-bottom: 0;
}

.about-alt .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

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

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

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

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Calendar Section
--------------------------------------------------------------*/
.calendar-wrapper {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-top: 50px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(113, 36, 206, 0.05);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f1f1;
  flex-wrap: wrap;
  gap: 20px;
}

.calendar-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0;
}

.calendar-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8f9fa;
  padding: 6px 16px;
  border-radius: 50px;
}

.calendar-nav-btn {
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  color: var(--accent-color);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.calendar-nav-btn:hover {
  background: var(--accent-color);
  color: white;
}

#currentMonth {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
  min-width: 120px;
  text-align: center;
}

.calendar-grid {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  text-align: center;
  font-weight: 700;
  color: #888;
  margin-bottom: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.calendar-day {
  padding: 8px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  position: relative;
  min-height: 80px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .calendar-wrapper {
    padding: 15px;
    border-radius: 16px;
  }
  
  .calendar-header h3 {
    font-size: 18px;
  }
  
  .calendar-nav {
    gap: 8px;
    padding: 4px 10px;
  }
  
  .calendar-day {
    padding: 4px;
    min-height: 60px;
    border-radius: 6px;
  }
  
  .calendar-day-number {
    font-size: 13px;
    margin-bottom: 4px;
  }
  
  .calendar-event {
    font-size: 9px;
    padding: 2px 4px;
    margin-bottom: 2px;
    border-radius: 4px;
  }
  
  .calendar-weekdays {
    font-size: 9px;
    letter-spacing: 0;
    gap: 6px;
  }
  
  .calendar-days {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
  }
}

.calendar-day:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(113, 36, 206, 0.05);
  transform: translateY(-2px);
}

.calendar-day.today {
  border: 2px solid var(--accent-color);
  background: rgba(113, 36, 206, 0.05);
  box-shadow: inset 0 0 0 1px var(--accent-color);
}

.calendar-day.today::after {
  content: 'HARI INI';
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 8px;
  font-weight: 800;
  background: var(--accent-color);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.calendar-day.weekend, .calendar-day.holiday {
  background-color: #fff5f5;
  border-color: #feb2b2;
}

.calendar-day.weekend::before, .calendar-day.holiday::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #f56565;
  border-radius: 10px 10px 0 0;
}

.calendar-day.weekend .calendar-day-number, 
.calendar-day.holiday .calendar-day-number {
  color: #ff4d4d;
}

.calendar-day-number {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
}

.off-day-notice {
  font-size: 9px;
  font-weight: 700;
  color: #d97706;
  background: #fffbeb;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #fde68a;
}

.off-day-events .calendar-event {
  opacity: 0.6;
  filter: saturate(0.5);
  border: 1px dashed rgba(255,255,255,0.4);
}

.off-day-events .calendar-event:hover {
  opacity: 1;
  filter: saturate(1);
}

.calendar-event {
  font-size: 11px;
  padding: 4px 8px;
  background: var(--accent-color);
  color: white;
  border-radius: 6px;
  margin-bottom: 4px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  transition: all 0.2s ease;
}

.calendar-event:hover {
  filter: brightness(1.1);
  transform: translateX(2px);
}

.event-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-modal.active {
  display: flex;
  opacity: 1;
}

.event-modal-content {
  background-color: white;
  border-radius: 30px;
  max-width: 550px;
  width: 90%;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.event-modal.active .event-modal-content {
  transform: translateY(0);
}

.event-modal-header {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2487ce 100%);
  padding: 35px 30px;
  color: white;
  position: relative;
}

.event-modal-title {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin: 0;
  line-height: 1.2;
}

.event-modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.event-modal-close:hover {
  background: white;
  color: var(--accent-color);
  transform: rotate(90deg);
}

.event-modal-body {
  padding: 30px;
  background: white;
}

.event-modal-date {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 15px;
  padding: 8px 16px;
  background: rgba(113, 36, 206, 0.05);
  border-radius: 50px;
  width: fit-content;
}

.event-modal-description {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Perhitungan Nilai — Stepped Layout
--------------------------------------------------------------*/
.pn-section {
  padding: 80px 0;
}

.pn-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.pn-step {
  display: flex;
  gap: 30px;
  position: relative;
  padding-bottom: 40px;
}

.pn-step:last-child {
  padding-bottom: 0;
}

/* Vertical connector line */
.pn-connector {
  position: absolute;
  top: 56px;
  left: 24px;
  width: 2px;
  height: calc(100% - 36px);
  background: linear-gradient(to bottom, rgba(113, 36, 206, 0.2), rgba(36, 135, 206, 0.1));
}

/* Step number badge */
.pn-badge {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 18px;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pn-step:hover .pn-badge {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Content card */
.pn-card {
  flex: 1;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(113, 36, 206, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(113, 36, 206, 0.08);
  border-color: rgba(113, 36, 206, 0.12);
}

.pn-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pn-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
}

.pn-step:hover .pn-icon {
  transform: scale(1.1);
}

.pn-card-header h3 {
  font-size: 19px;
  font-weight: 800;
  margin: 0;
  color: var(--heading-color);
  line-height: 1.3;
}

.pn-card-body {
  padding: 22px 28px 28px;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.pn-card-body p {
  margin-bottom: 12px;
}

.pn-card-body p:last-child {
  margin-bottom: 0;
}

.pn-card-body ul,
.pn-card-body ol {
  padding-left: 1.2em;
  margin-bottom: 0;
}

.pn-card-body ul li,
.pn-card-body ol li {
  margin-bottom: 6px;
}

.pn-card-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 12px;
  padding: 10px 18px;
  background: rgba(113, 36, 206, 0.04);
  border-radius: 10px;
  border-left: 3px solid var(--accent-color);
  display: inline-block;
}

.pn-card-body strong {
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .pn-step {
    gap: 18px;
  }

  .pn-badge {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 15px;
    border-radius: 12px;
  }

  .pn-connector {
    left: 19px;
    top: 46px;
  }

  .pn-card-header {
    padding: 20px;
    gap: 14px;
  }

  .pn-card-header h3 {
    font-size: 16px;
  }

  .pn-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 20px;
  }

  .pn-card-body {
    padding: 16px 20px 20px;
  }
}

/*--------------------------------------------------------------
# Services / Perhitungan Nilai Section — Modern SaaS Style
--------------------------------------------------------------*/
.services .service-item {
  background: white;
  height: 100%;
  padding: 35px 30px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 20px;
  border: 1px solid rgba(113, 36, 206, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), #2487ce);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(113, 36, 206, 0.1);
  border-color: rgba(113, 36, 206, 0.15);
}

.services .service-item:hover::before {
  opacity: 1;
}

.services .service-item .icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  border-radius: 16px;
  margin-bottom: 20px;
}

.services .service-item .icon i {
  font-size: 32px;
  transition: 0.4s;
  position: relative;
  z-index: 1;
}

.services .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
}

.services .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .service-item h3 {
  font-weight: 800;
  margin: 0 0 15px 0;
  font-size: 20px;
  color: var(--heading-color);
}

.services .service-item p,
.services .service-item ul {
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 0;
  color: #666;
}

.services .service-item ul {
  padding-left: 1.2em;
}

.services .service-item ul li {
  margin-bottom: 6px;
}

.services .service-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
  padding: 10px 16px;
  background: rgba(113, 36, 206, 0.05);
  border-radius: 10px;
  display: inline-block;
}

/* Color variants */
.services .service-item.item-cyan .icon {
  background: rgba(13, 202, 240, 0.08);
}
.services .service-item.item-cyan i {
  color: #0dcaf0;
}
.services .service-item.item-cyan:hover .icon {
  background: #0dcaf0;
}
.services .service-item.item-cyan:hover .icon i {
  color: #fff;
}
.services .service-item.item-cyan:hover .icon path {
  fill: #0dcaf0;
}

.services .service-item.item-orange .icon {
  background: rgba(253, 126, 20, 0.08);
}
.services .service-item.item-orange i {
  color: #fd7e14;
}
.services .service-item.item-orange:hover .icon {
  background: #fd7e14;
}
.services .service-item.item-orange:hover .icon i {
  color: #fff;
}
.services .service-item.item-orange:hover .icon path {
  fill: #fd7e14;
}

.services .service-item.item-teal .icon {
  background: rgba(32, 201, 151, 0.08);
}
.services .service-item.item-teal i {
  color: #20c997;
}
.services .service-item.item-teal:hover .icon {
  background: #20c997;
}
.services .service-item.item-teal:hover .icon i {
  color: #fff;
}
.services .service-item.item-teal:hover .icon path {
  fill: #20c997;
}

.services .service-item.item-red .icon {
  background: rgba(223, 21, 41, 0.08);
}
.services .service-item.item-red i {
  color: #df1529;
}
.services .service-item.item-red:hover .icon {
  background: #df1529;
}
.services .service-item.item-red:hover .icon i {
  color: #fff;
}
.services .service-item.item-red:hover .icon path {
  fill: #df1529;
}

.services .service-item.item-indigo .icon {
  background: rgba(102, 16, 242, 0.08);
}
.services .service-item.item-indigo i {
  color: #6610f2;
}
.services .service-item.item-indigo:hover .icon {
  background: #6610f2;
}
.services .service-item.item-indigo:hover .icon i {
  color: #fff;
}
.services .service-item.item-indigo:hover .icon path {
  fill: #6610f2;
}

.services .service-item.item-pink .icon {
  background: rgba(243, 38, 140, 0.08);
}
.services .service-item.item-pink i {
  color: #f3268c;
}
.services .service-item.item-pink:hover .icon {
  background: #f3268c;
}
.services .service-item.item-pink:hover .icon i {
  color: #fff;
}
.services .service-item.item-pink:hover .icon path {
  fill: #f3268c;
}


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

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

.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: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--surface-color);
  color: 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: 600;
  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(--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 {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

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

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

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

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

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Faq / Accordion Section — Modern SaaS Style
--------------------------------------------------------------*/

/* --- Left sidebar title area --- */
.faq .content h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.3;
  margin-bottom: 15px;
}

.faq .content p {
  font-size: 15px;
  color: #888;
  line-height: 1.7;
}

/* --- Bootstrap Accordion Overrides --- */
.faq .accordion {
  border: none !important;
}

.faq .accordion-item {
  background: white;
  border: 1px solid rgba(113, 36, 206, 0.08) !important;
  border-radius: 16px !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq .accordion-item:hover {
  box-shadow: 0 10px 30px rgba(113, 36, 206, 0.08);
  border-color: rgba(113, 36, 206, 0.15) !important;
  transform: translateY(-2px);
}

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

.faq .accordion-button {
  font-size: 16px !important;
  font-weight: 700;
  color: var(--heading-color);
  padding: 22px 28px;
  background: transparent;
  border: none;
  box-shadow: none !important;
  gap: 12px;
  transition: all 0.3s ease;
}

.faq .accordion-button:not(.collapsed) {
  background: rgba(113, 36, 206, 0.03);
  color: var(--accent-color);
  box-shadow: none !important;
}

.faq .accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent;
}

.faq .accordion-button .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: linear-gradient(135deg, var(--accent-color), #2487ce);
  color: white !important;
  font-weight: 800;
  font-size: 13px;
  border-radius: 10px;
  margin-right: 4px;
  transition: all 0.3s ease;
}

.faq .accordion-button:not(.collapsed) .num {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(113, 36, 206, 0.3);
}

/* Custom chevron icon */
.faq .accordion-button::after {
  width: 28px;
  height: 28px;
  background-size: 14px;
  background-color: #f8f9fa;
  border-radius: 50%;
  background-position: center;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.faq .accordion-button:not(.collapsed)::after {
  background-color: var(--accent-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq .accordion-body {
  padding: 0 28px 25px 28px;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  border-top: 1px dashed rgba(113, 36, 206, 0.1);
  margin: 0 20px;
  padding-top: 20px;
}

.faq .accordion-body ol {
  margin-bottom: 0;
  padding-left: 1.5rem;
}

.faq .accordion-body ol[type="a"] { list-style-type: lower-alpha; }
.faq .accordion-body ol[type="A"] { list-style-type: upper-alpha; }
.faq .accordion-body ol[type="i"] { list-style-type: lower-roman; }
.faq .accordion-body ol[type="I"] { list-style-type: upper-roman; }
.faq .accordion-body ol[type="1"] { list-style-type: decimal; }

.faq .accordion-body ol > li {
  margin-bottom: 0.5em;
  text-align: justify;
}

.faq .accordion-body ol ol {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
  padding-left: 1.2rem;
}

/* --- Legacy faq-container support --- */
.faq .faq-container .faq-item {
  background-color: white;
  position: relative;
  padding: 22px 28px;
  margin-bottom: 16px;
  border: 1px solid rgba(113, 36, 206, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq .faq-container .faq-item:hover {
  box-shadow: 0 10px 30px rgba(113, 36, 206, 0.08);
  transform: translateY(-2px);
}

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

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

.faq .faq-container .faq-item h3 .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: linear-gradient(135deg, var(--accent-color), #2487ce);
  color: white;
  font-weight: 800;
  font-size: 13px;
  border-radius: 10px;
  margin-right: 12px;
}

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

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

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

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
  background: rgba(113, 36, 206, 0.08);
}

.faq .faq-container .faq-active {
  background: rgba(113, 36, 206, 0.03);
  border-color: var(--accent-color);
}

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

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
  border-top: 1px dashed rgba(113, 36, 206, 0.1);
  margin-top: 15px;
  color: #555;
  line-height: 1.8;
}

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

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

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  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 .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: 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: 4px;
}

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

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

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

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

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

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

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

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

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

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

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

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

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

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

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* Non-clickable button with rippling effect */
.notice-button {
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  color: #dc3545;
  font-weight: 500;
  cursor: not-allowed;
  overflow: hidden;
  margin-top: 15px;
  width: 100%;
  text-align: center;
}

.notice-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(220, 53, 69, 0.3);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.notice-button:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  20% {
    transform: scale(25, 25);
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}