@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Sarabun",  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: "Sarabun",  sans-serif;
  --nav-font: "Nunito",  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: #475569; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1e293b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0e66e9; /* 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: rgba(255, 255, 255, 0.8);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* 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: #475569; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0e66e9; /* 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: #f4f6f9;
  --surface-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #070c15;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

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

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

  .header .navmenu {
    order: 3;
  }
}

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

.header .my-btn-squircle {
  border-radius: calc(var(--cm-btn-height) * 0.7);
  border-top-left-radius: 25.2px;
  border-top-right-radius: 25.2px;
  border-bottom-right-radius: 25.2px;
  border-bottom-left-radius: 25.2px;
  corner-shape: squircle;
  corner-top-left-shape: squircle;
  corner-top-right-shape: squircle;
  corner-bottom-right-shape: squircle;
  corner-bottom-left-shape: squircle;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  transition: all 0.3s ease;
  align-items: center;
  background: black;
  color: white;
  margin-left: 5px;
  margin-right: 5px;
}

.header .my-btn-squircle:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.header .my-btn-squircle.getstarted {
  color: var(--contrast-color);
  background: var(--accent-color);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #070c15;
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #070c15;
}

/*--------------------------------------------------------------
# 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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

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

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

/* 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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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);
    transition: all 0.5s ease-in-out;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# 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: 20px 0;
  position: relative;
}

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

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

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

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

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

@media (max-width: 1199px) {

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

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

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

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

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

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

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

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 20px;
  }

  .section-title h2:before,
  .section-title h2:after {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .typewriter-span {
  color: yellow;
}

.hero .my-btn-squircle {
  border-radius: calc(var(--cm-btn-height) * 0.7);
  border-top-left-radius: 25.2px;
  border-top-right-radius: 25.2px;
  border-bottom-right-radius: 25.2px;
  border-bottom-left-radius: 25.2px;
  corner-shape: squircle;
  corner-top-left-shape: squircle;
  corner-top-right-shape: squircle;
  corner-bottom-right-shape: squircle;
  corner-bottom-left-shape: squircle;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  transition: all 0.3s ease;
  align-items: center;
  background: black;
  color: white;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 5px;
}

.hero .my-btn-squircle:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .my-btn-squircle.phone {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.hero .my-btn-squircle.line {
  color: var(--contrast-color);
  background: #06C755;
}

.hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

.hero .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

.hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.featured-services .service-card .service-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.featured-services .service-card .service-header .icon-wrapper {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.featured-services .service-card .service-header .icon-wrapper i {
  font-size: 28px;
  color: var(--accent-color);
}

.featured-services .service-card .service-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.featured-services .service-card .service-header h3 a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.featured-services .service-card>p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 24px;
  flex-grow: 1;
}

.featured-services .service-card .features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.featured-services .service-card .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--default-color);
}

.featured-services .service-card .features-list .feature-item i {
  font-size: 16px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.featured-services .service-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.featured-services .service-card:hover .icon-wrapper {
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
}

.featured-services .service-card:hover h3 a {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .featured-services {
    padding: 40px 0;
  }

  .featured-services .service-card {
    padding: 24px;
  }

  .featured-services .service-card .service-header {
    gap: 16px;
    margin-bottom: 16px;
  }

  .featured-services .service-card .service-header .icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .featured-services .service-card .service-header .icon-wrapper i {
    font-size: 24px;
  }

  .featured-services .service-card .service-header h3 {
    font-size: 16px;
  }

  .featured-services .service-card>p {
    font-size: 13px;
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .client-item {
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients .client-item img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
  filter: grayscale(100);
  opacity: 0.8;
}

.clients .client-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.clients .client-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 1199px) {
  .clients .client-item {
    padding: 1.25rem;
  }
}

@media (max-width: 767px) {
  .clients .client-item {
    padding: 1rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  --background-color: var(--contrast-color);
}

.call-to-action .my-btn-squircle {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  padding: 16px 24px;
  background: var(--accent-color);
  color: white;
  border-radius: calc(var(--cm-btn-height) * 0.7);
  border-top-left-radius: 25.2px;
  border-top-right-radius: 25.2px;
  border-bottom-right-radius: 25.2px;
  border-bottom-left-radius: 25.2px;
  corner-shape: squircle;
  corner-top-left-shape: squircle;
  corner-top-right-shape: squircle;
  corner-bottom-right-shape: squircle;
  corner-bottom-left-shape: squircle;
  transition: all 0.3s ease;
}

.call-to-action .my-btn-squircle:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action .cta-box {
  position: relative;
  padding: 80px 30px;
  border-radius: 20px;
  overflow: hidden;
}

.call-to-action .cta-box .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.call-to-action .cta-box .background-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--surface-color), transparent 5%), color-mix(in srgb, var(--surface-color), transparent 10%));
  opacity: 0.95;
}

.call-to-action .cta-box .background-overlay .background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

.call-to-action .cta-box:hover .background-image {
  transform: scale(1.1);
}

.call-to-action .cta-box .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action .cta-box .content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.call-to-action .cta-box .content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .call-to-action .cta-box {
    padding: 60px 20px;
  }

  .call-to-action .cta-box .content h2 {
    font-size: 2rem;
  }

  .call-to-action .cta-box .content p {
    font-size: 1rem;
  }

  .call-to-action .cta-box .content .btn-cta {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .content {
  margin-bottom: 32px;
}

.why-us .content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.why-us .content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--default-color);
}

.why-us .stats-wrapper {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.why-us .stats-wrapper .stat-item {
  flex: 1;
  min-width: 140px;
}

.why-us .stats-wrapper .stat-item .stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

.why-us .stats-wrapper .stat-item .stat-number::after {
  content: "+";
  margin-left: 2px;
}

.why-us .stats-wrapper .stat-item .stat-percent {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

.why-us .stats-wrapper .stat-item .stat-percent::after {
  content: "%";
  margin-left: 2px;
}

.why-us .stats-wrapper .stat-item .stat-label {
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-us .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .why-us .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.why-us .feature-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease-in-out;
}

.why-us .feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.why-us .feature-item .feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 6px;
}

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

.why-us .feature-item .feature-content {
  flex: 1;
}

.why-us .feature-item .feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.why-us .feature-item .feature-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

@media (max-width: 992px) {
  .why-us .col-lg-5 {
    margin-bottom: 40px;
  }

  .why-us .stats-wrapper {
    justify-content: space-between;
  }
}

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

.starter-section-3 .slider-box {
  background: var(--bg-light);
  padding: 0.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.03);
}

.starter-section-3 .custom-slider {
  width: 100%;
  max-width: 500px;
  height: 10px;
  border-radius: 5px;
  outline: none;
  accent-color: var(--ms-blue-light);
  margin: 1.5rem 0;
  cursor: pointer;
}

.starter-section-3 .pricing-grid {
  margin: 0;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: auto;
}

.starter-section-3 .price-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.starter-section-3 .price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.starter-section-3 .price-card.payroll-gradient {
  background: linear-gradient(135deg, #005a9e 0%, #0078d4 100%);
}

.starter-section-3 .price-card.self-service-gradient {
  background: linear-gradient(135deg, #1881a4 0%, #244167 100%);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.starter-section-3 .price-card.time-attendance-gradient {
  background: linear-gradient(135deg, #004b87 0%, #009385 100%);
}

.starter-section-3 .price-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.starter-section-3 .card-header-price {
  color: #f7ff6a;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 1.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.starter-section-3 .line-monthly {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-header);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.starter-section-3 .line-monthly-unit {
  font-size: 1.2rem;
}

.starter-section-3 .line-annual {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.3rem;
}

.starter-section-3 .line-annual s {
  color: rgba(255, 255, 255, 0.6);
  margin-right: 0.5rem;
}

.starter-section-3 .line-annual span {
  color: #d1ffd6;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
}

.starter-section-3 .feature-list {
  list-style: none;
  text-align: left;
  margin-bottom: 1rem;
  flex-grow: 1;
  padding-left: 5px;
}

.starter-section-3 .feature-list li {
  padding: 0.5rem 0 0.5rem 1.6rem;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.starter-section-3 .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #26e67b;
  font-weight: bold;
}

.starter-section-3 .feature-list li.plus-feature {
  font-weight: 600;
  color: #ffeb3b;
}

.starter-section-3 .feature-list li.plus-feature::before {
  content: "★";
  color: #ffeb3b;
}

@media (max-width: 768px) {
  .starter-section-3 .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .my-btn-squircle {
  border-radius: calc(var(--cm-btn-height) * 0.7);
  border-top-left-radius: 25.2px;
  border-top-right-radius: 25.2px;
  border-bottom-right-radius: 25.2px;
  border-bottom-left-radius: 25.2px;
  corner-shape: squircle;
  corner-top-left-shape: squircle;
  corner-top-right-shape: squircle;
  corner-bottom-right-shape: squircle;
  corner-bottom-left-shape: squircle;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  transition: all 0.3s ease;
  align-items: center;
  color: rgb(38, 86, 192);
  background: white;
  margin-left: 5px;
  margin-right: 5px;
}

.faq .my-btn-squircle:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.faq .help-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 25%));
  border-radius: 12px;
  padding: 40px;
  color: var(--contrast-color);
}

.faq .help-banner i {
  font-size: 48px;
  color: var(--contrast-color);
  opacity: 0.85;
}

.faq .help-banner h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--contrast-color);
}

.faq .help-banner p {
  font-size: 15px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  line-height: 24px;
}

.faq .help-banner .btn-help {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.faq .help-banner .btn-help:hover {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

.faq .faq-wrapper {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 6px;
  padding: 0;
}

.faq .faq-item {
  margin-bottom: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease-in-out;
}

.faq .faq-item:last-child {
  border-bottom: none;
}

.faq .faq-item.faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
  font-weight: 600;
}

.faq .faq-item.faq-active .faq-header .faq-icon {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.faq .faq-item.faq-active .faq-header .faq-icon i {
  transform: rotate(180deg);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  cursor: pointer;
  gap: 20px;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
}

.faq .faq-item .faq-header:hover .faq-icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
  transition: all 0.3s ease;
  line-height: 1.6;
}

.faq .faq-item .faq-header .faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 4px;
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header .faq-icon i {
  transition: transform 0.3s ease;
}

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

.faq .faq-item .faq-content .content-inner {
  padding: 0 32px 24px 32px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 20px 24px;
    gap: 16px;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 16px;
  }

  .faq .faq-item .faq-header .faq-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 24px 20px 24px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .faq .faq-item .faq-header {
    padding: 18px 20px;
    gap: 12px;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 15px;
  }

  .faq .faq-item .faq-header .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 20px 18px 20px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Starter Section 2 Section
--------------------------------------------------------------*/
.starter-section-2 {
  /* ---------- Image Area ---------- */
  /* ---------- Caption ---------- */
  /* ---------- Navigation Buttons ---------- */
  /* Show buttons only on hover */
  /* ---------- Dots ---------- */
  /* ---------- Mobile ---------- */
}

.starter-section-2 .gallery {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.starter-section-2 .slides {
  position: relative;
}

.starter-section-2 .slide {
  display: block;
}

.starter-section-2 .image-frame {
  position: relative;
  aspect-ratio: 16/10;
  background: #fafafa;
  overflow: hidden;
}

.starter-section-2 .gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.starter-section-2 .gallery-image.active {
  opacity: 1;
}

.starter-section-2 .xx-gallery-image.fade {
  opacity: 0;
}

.starter-section-2 .caption {
  padding: 18px 24px;
  text-align: center;
  color: #555;
  border-top: 1px solid #eee;
}

.starter-section-2 .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.25s;
}

.starter-section-2 .prev {
  left: 16px;
}

.starter-section-2 .next {
  right: 16px;
}

.starter-section-2 .nav-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.08);
}

.starter-section-2 .nav-btn {
  opacity: 0;
}

.starter-section-2 .gallery:hover .nav-btn {
  opacity: 1;
}

.starter-section-2 .dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
}

.starter-section-2 .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bbb;
  cursor: pointer;
  transition: background 0.25s;
}

.starter-section-2 .dot.active {
  background: #0d6efd;
}

@media (max-width: 768px) {
  .starter-section-2 .nav-btn {
    width: 42px;
    height: 42px;
    font-size: 24px;
    opacity: 1;
  }

  .starter-section-2 .prev {
    left: 10px;
  }

  .starter-section-2 .next {
    right: 10px;
  }
}

/*--------------------------------------------------------------
# Post Slider Section
--------------------------------------------------------------*/
.post-slider {
  position: relative;
  overflow: hidden;
}

.post-slider .swiper-wrapper {
  height: auto !important;
  margin-bottom: 20px;
}

.post-slider .swiper-button-prev,
.post-slider .swiper-button-next {
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--heading-color);
  transition: all 0.3s ease-in-out;
}

.post-slider .swiper-button-prev::after,
.post-slider .swiper-button-next::after {
  font-size: 20px;
}

.post-slider .swiper-button-prev:hover,
.post-slider .swiper-button-next:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.post-slider .post-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.post-slider .post-item:hover {
  transform: translateY(-5px);
}

.post-slider .post-item:hover .post-title {
  color: var(--accent-color);
}

.post-slider .post-item .post-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.post-slider .post-item .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.post-slider .post-item .post-img .post-category {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.post-slider .post-item .post-content {
  padding: 24px;
}

.post-slider .post-item .post-content .post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.post-slider .post-item .post-content .post-meta i {
  margin-right: 6px;
  font-size: 16px;
}

.post-slider .post-item .post-content .post-title {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 16px;
  transition: color 0.3s ease-in-out;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-slider .post-item .post-content .post-excerpt {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-slider .post-item .post-content .read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
}

.post-slider .post-item .post-content .read-more i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.post-slider .post-item .post-content .read-more:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .post-slider .post-item .post-content {
    padding: 20px;
  }

  .post-slider .post-item .post-content .post-title {
    font-size: 18px;
  }

  .post-slider .post-item .post-content .post-excerpt {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-content .content-header .service-meta .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%) !important;
  color: var(--accent-color) !important;
  border-radius: 24px;
  font-weight: 500;
  font-size: 0.85rem;
}

.service-details .service-content .content-header .service-meta .divider {
  width: 2px;
  height: 20px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 1px;
}

.service-details .service-content .content-header .service-title {
  color: var(--heading-color);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.service-details .service-content .content-header .service-subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 90%;
}

.service-details .service-content .visual-showcase .image-container {
  border-radius: 16px;
  overflow: hidden;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.service-details .service-content .visual-showcase .image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-details .service-content .visual-showcase .image-container .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, black, transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-details .service-content .visual-showcase .image-container .play-button {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 2rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.service-details .service-content .visual-showcase .image-container:hover .image-overlay {
  opacity: 1;
}

.service-details .service-content .visual-showcase .image-container:hover .play-button {
  transform: scale(1);
}

.service-details .service-content .visual-showcase .image-container:hover img {
  transform: scale(1.05);
}

.service-details .service-content .section-heading {
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 600;
  position: relative;
}

.service-details .service-content .section-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.service-details .service-content .process-steps .step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  margin-left: 20px;
  padding-left: 2rem;
  position: relative;
}

.service-details .service-content .process-steps .step-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 30px;
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
}

.service-details .service-content .process-steps .step-item:last-child {
  border-left-color: transparent;
}

.service-details .service-content .process-steps .step-item .step-number {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), blue 20%));
  color: var(--contrast-color);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details .service-content .process-steps .step-item .step-content .step-title {
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-details .service-content .process-steps .step-item .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin: 0;
}

.service-details .service-content .features-showcase .nav-pills {
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  border-radius: 50px;
  padding: 6px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-content .features-showcase .nav-pills .nav-link {
  border-radius: 50px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 12px 24px;
  font-weight: 500;
  border: none;
  background: transparent;
  transition: all 0.3s ease;
}

.service-details .service-content .features-showcase .nav-pills .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details .service-content .features-showcase .feature-card {
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  transition: all 0.3s ease;
}

.service-details .service-content .features-showcase .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: var(--accent-color);
}

.service-details .service-content .features-showcase .feature-card .feature-icon {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-details .service-content .features-showcase .feature-card h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-details .service-content .features-showcase .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
}

.service-details .service-content .client-success .success-card {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 97%));
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .service-content .client-success .success-card .client-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-content .client-success .success-card .client-name {
  color: var(--heading-color);
  font-weight: 600;
  margin: 0;
}

.service-details .service-content .client-success .success-card .client-role {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

.service-details .service-content .client-success .success-card .rating {
  color: #fbbf24;
  font-size: 1.1rem;
}

.service-details .service-content .client-success .success-card .success-quote {
  color: var(--default-color);
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  position: relative;
}

.service-details .service-content .client-success .success-card .success-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-color);
  position: absolute;
  top: -1rem;
  left: -1rem;
  opacity: 0.3;
}

.service-details .service-content .client-success .success-card .success-metrics .metric-value {
  color: var(--accent-color);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.service-details .service-content .client-success .success-card .success-metrics .metric-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details .sidebar .service-card,
.service-details .sidebar .contact-card {
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  overflow: hidden;
}

.service-details .sidebar .service-card .card-header,
.service-details .sidebar .contact-card .card-header {
  padding: 1.5rem 1.5rem 0;
}

.service-details .sidebar .service-card .card-header .card-title,
.service-details .sidebar .contact-card .card-header .card-title {
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.service-details .sidebar .service-card .card-header .card-subtitle,
.service-details .sidebar .contact-card .card-header .card-subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0.5rem 0 0 0;
  line-height: 1.5;
}

.service-details .sidebar .service-card .card-body,
.service-details .sidebar .contact-card .card-body {
  padding: 1.5rem;
}

.service-details .sidebar .overview-list .overview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.service-details .sidebar .overview-list .overview-item:last-child {
  border-bottom: none;
}

.service-details .sidebar .overview-list .overview-item .item-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.service-details .sidebar .overview-list .overview-item .item-label i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.service-details .sidebar .overview-list .overview-item .item-label span {
  font-weight: 500;
}

.service-details .sidebar .overview-list .overview-item .item-value {
  color: var(--heading-color);
  font-weight: 600;
}

.service-details .sidebar .contact-form .form-group .input-wrapper {
  position: relative;
}

.service-details .sidebar .contact-form .form-group .input-wrapper .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 1rem;
  z-index: 2;
}

.service-details .sidebar .contact-form .form-group .input-wrapper input {
  padding-left: 2.75rem;
}

.service-details .sidebar .contact-form .form-group input,
.service-details .sidebar .contact-form .form-group textarea,
.service-details .sidebar .contact-form .form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background: var(--surface-color);
  color: var(--default-color);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.service-details .sidebar .contact-form .form-group input:focus,
.service-details .sidebar .contact-form .form-group textarea:focus,
.service-details .sidebar .contact-form .form-group select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .sidebar .contact-form .form-group input::placeholder,
.service-details .sidebar .contact-form .form-group textarea::placeholder,
.service-details .sidebar .contact-form .form-group select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.service-details .sidebar .contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.service-details .sidebar .contact-form .submit-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 8px;
  padding: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-details .sidebar .contact-form .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-1px);
}

.service-details .sidebar .contact-form .submit-btn i {
  transition: transform 0.3s ease;
}

.service-details .sidebar .contact-form .submit-btn:hover i {
  transform: translateX(3px);
}

.service-details .action-section .action-buttons .action-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-details .action-section .action-buttons .action-btn.primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.service-details .action-section .action-buttons .action-btn.primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.service-details .action-section .action-buttons .action-btn.secondary {
  background: var(--surface-color);
  color: var(--default-color);
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-details .action-section .action-buttons .action-btn.secondary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.service-details .action-section .action-buttons .action-btn i {
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .service-details .sidebar {
    margin-top: 3rem;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Article Section
--------------------------------------------------------------*/
.article {
  padding-top: 10px;
  padding-bottom: 10px;
}

.article .container {
  margin-top: 3rem;
  margin-bottom: 3rem;
  margin-right: auto;
  margin-left: auto;
}

.article .section-title {
  padding-bottom: 0px;
}

.article .my-indent {
  text-indent: 2em;
}

/*--------------------------------------------------------------
# Article 2 Section
--------------------------------------------------------------*/
.article-2 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.article-2 .container {
  margin-top: 3rem;
  margin-bottom: 3rem;
  margin-right: auto;
  margin-left: auto;
}

.article-2 .section-title {
  padding-bottom: 0px;
}

.article-2 .my-indent {
  text-indent: 2em;
}

/*--------------------------------------------------------------
# Article 3 Section
--------------------------------------------------------------*/
.article-3 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.article-3 .container {
  margin-top: 3rem;
  margin-bottom: 3rem;
  margin-right: auto;
  margin-left: auto;
}

.article-3 .section-title {
  padding-bottom: 0px;
}

.article-3 .my-indent {
  text-indent: 2em;
}

/*--------------------------------------------------------------
# Article 4 Section
--------------------------------------------------------------*/
.article-4 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.article-4 .container {
  margin-top: 3rem;
  margin-bottom: 3rem;
  margin-right: auto;
  margin-left: auto;
}

.article-4 .section-title {
  padding-bottom: 0px;
}

.article-4 .my-indent {
  text-indent: 2em;
}

/*--------------------------------------------------------------
# Article 5 Section
--------------------------------------------------------------*/
.article-5 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.article-5 .container {
  margin-top: 3rem;
  margin-bottom: 3rem;
  margin-right: auto;
  margin-left: auto;
}

.article-5 .section-title {
  padding-bottom: 0px;
}

.article-5 .my-indent {
  text-indent: 2em;
}