@charset "UTF-8";

/*--------------------------------------------------------------
# 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: "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: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #343a40; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #16537e; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

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

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

.accent-background {
  --background-color: #1bbd36;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2ae149;
  --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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

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

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

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

.header .logo span {
  color: var(--accent-color);
  font-size: 26px;
  font-weight: 700;
}

.header .header-social-links {
  padding: 0 0 0 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 10px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

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

.header .header-social-links a i {
  line-height: 0px;
}

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

  .header .logo h1 {
    font-size: 24px;
  }

  .header .header-social-links {
    order: 2;
    padding: 0 15px 0 0;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# 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: 13px;
    font-family: var(--nav-font);
    text-transform: uppercase;
    font-weight: 600;
    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);
  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 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.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 30%);
  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 .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

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

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

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

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 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: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

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

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 11px;
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 1px;
}

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

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

.hero .container {
  position: relative;
  z-index: 3;
  margin-left: 20px;
}

.hero h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 50px;
  padding-bottom: 20px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  padding-top: 10px;
}

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

.hero .btn-scroll {
  transition: 0.4s;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  display: block;
  margin-top: 30px;
  animation: btn-up-down 1s ease-in-out infinite alternate-reverse both;
}

.hero .btn-scroll i {
  font-size: 48px;
}

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

@keyframes btn-up-down {
  0% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

/*--------------------------------------------------------------
# Misc Section
--------------------------------------------------------------*/
.misc {
  padding-top: 62px;
  padding-bottom: 4px;
}

.misc .content-grid {
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .misc .content-grid {
    margin-bottom: 3rem;
  }
}

.misc .about-block {
  background: var(--surface-color);
  padding: 3rem;
  border-radius: 20px;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.misc .about-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.misc .about-block .about-header {
  margin-bottom: 2rem;
}

.misc .about-block .about-header h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1rem;
  line-height: 1.3;
}

.misc .about-block .about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  text-align: justify;
}

.misc .about-block .feature-list {
  margin-top: 2rem;
}

.misc .about-block .feature-list .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.misc .about-block .feature-list .feature-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.misc .about-block .feature-list .feature-item span {
  font-size: 1rem;
  line-height: 1.5;
}

.misc .about-block .btn-consultation {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.misc .about-block .btn-consultation:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: #fff;
}

@media (max-width: 768px) {
  .misc .about-block {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .misc .about-block .about-header h3 {
    font-size: 1.6rem;
  }
}

.misc .section-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.misc .image-showcase {
  position: relative;
  height: 100%;
}

.misc .image-showcase .main-image {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.misc .image-showcase .main-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.misc .image-showcase .main-image .overlay-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--surface-color);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.misc .image-showcase .main-image .overlay-badge .badge-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.misc .image-showcase .main-image .overlay-badge .badge-content i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.misc .image-showcase .main-image .overlay-badge .badge-content .badge-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
}

.misc .image-showcase .main-image .overlay-badge .badge-content .badge-text span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.misc .image-showcase .floating-card {
  position: absolute;
  bottom: -20px;
  right: 20px;
  left: 0;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.misc .image-showcase .floating-card img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.misc .image-showcase .floating-card .card-content .rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}

.misc .image-showcase .floating-card .card-content .rating i {
  color: #ffc107;
  font-size: 0.8rem;
}

.misc .image-showcase .floating-card .card-content .rating span {
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.misc .image-showcase .floating-card .card-content p {
  margin: 0;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 768px) {
  .misc .image-showcase .main-image {
    min-height: 300px;
  }

  .misc .image-showcase .overlay-badge {
    top: 15px;
    right: 15px;
    padding: 0.8rem 1rem;
  }

  .misc .image-showcase .floating-card {
    position: static;
    margin-top: 1rem;
    transform: none;
  }
}

.misc .why-choose-wrapper {
  margin-top: 6rem;
}

.misc .why-choose-wrapper .section-header {
  margin-bottom: 4rem;
}

.misc .why-choose-wrapper .section-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .misc .why-choose-wrapper .section-header h3 {
    font-size: 2rem;
  }
}

.misc .why-choose-wrapper .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .misc .why-choose-wrapper {
    margin-top: 4rem;
  }

  .misc .why-choose-wrapper .section-header {
    margin-bottom: 2.5rem;
  }
}

.misc .feature-box {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: var(--surface-color);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
}

.misc .feature-box:hover {
  border-color: var(--accent-color);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.misc .feature-box:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

.misc .feature-box:hover .feature-icon-wrapper .feature-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.misc .feature-box .feature-icon-wrapper {
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.misc .feature-box .feature-icon-wrapper .feature-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.misc .feature-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.misc .feature-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

@media (max-width: 768px) {
  .misc .feature-box {
    padding: 1.5rem;
  }

  .misc .feature-box .feature-icon-wrapper .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  .misc .feature-box h4 {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Service Details 2 Section
--------------------------------------------------------------*/
.service-details-2 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.service-details-2 .service-card {
  position: relative;
  background-color: var(--surface-color);
  padding: 2.5rem;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 95%);
}

.service-details-2 .service-card:hover {
  transform: translateY(-10px);
  background-color: var(--accent-color);
}

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

.service-details-2 .service-card:hover h3,
.service-details-2 .service-card:hover h5,
.service-details-2 .service-card:hover p {
  color: var(--contrast-color);
}

.service-details-2 .service-card:hover .hover-content {
  color: var(--contrast-color);
  transform: translateY(0);
}

.service-details-2 .service-card:hover .hover-content h4 {
  color: var(--contrast-color);
}

.service-details-2 .service-card .icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: 0.3s;
}

.service-details-2 .service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: 0.3s;
  color: var(--heading-color);
}

.service-details-2 .service-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 1rem;
  transition: 0.3s;
}

.service-details-2 .service-card p {
  margin-bottom: 0;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details-2 .service-card .hover-content {
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.service-details-2 .service-card .hover-content h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.service-details-2 .service-card .hover-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.service-details-2 .service-card .hover-content ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.service-details-2 .service-card .hover-content ul li i {
  font-size: 1.1rem;
}

.service-details-2 .service-card .hover-content .service-link {
  color: var(--contrast-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.service-details-2 .service-card .hover-content .service-link i {
  transition: 0.3s;
}

.service-details-2 .service-card .hover-content .service-link:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .highlight-card {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.cards .highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.cards .highlight-info {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.cards .highlight-info .tag-label {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  width: fit-content;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cards .highlight-info h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cards .highlight-info p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5rem;
}

.cards .highlight-info .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.cards .highlight-info .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--default-color);
  padding: 6px 0;
}

.cards .highlight-info .feature-list li i {
  color: var(--accent-color);
  font-size: 16px;
}

.cards .highlight-info .btn-primary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  width: fit-content;
  transition: background 0.2s ease;
}

.cards .highlight-info .btn-primary-action i {
  transition: transform 0.2s ease;
}

.cards .highlight-info .btn-primary-action:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

.cards .highlight-info .btn-primary-action:hover i {
  transform: translateX(4px);
}

.cards .highlight-info .btn-primary-action:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 992px) {
  .cards .highlight-info {
    padding: 32px 24px;
  }

  .cards .highlight-info h2 {
    font-size: 1.6rem;
  }
}

.cards .category-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cards .category-card .card-img-wrapper {
  overflow: hidden;
  height: 220px;
}

.cards .category-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cards .category-card .card-body {
  padding: 20px 20px 8px;
  flex: 1;
}

.cards .category-card .card-body h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.cards .category-card .card-body .count-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.cards .category-card .card-action {
  padding: 0 20px 20px;
  margin-top: auto;
}

.cards .category-card .card-action a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-color);
  transition: gap 0.2s ease;
}

.cards .category-card .card-action a i {
  font-size: 12px;
}

.cards .category-card .card-action a:hover {
  gap: 10px;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.cards .category-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.cards .category-card:hover .card-img-wrapper img {
  transform: scale(1.04);
}

@media (max-width: 992px) {
  .cards .category-card .card-img-wrapper {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .cards .category-card .card-img-wrapper {
    height: 180px;
  }
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps {
  padding-top: 60px;
  background: linear-gradient(170deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color) 6%, var(--background-color)) 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 37px;
}

.steps::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 6%, transparent);
  pointer-events: none;
}

.steps::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 4%, transparent);
  pointer-events: none;
}

.steps .intro-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--heading-color);
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .steps .intro-content h2 {
    font-size: 2rem;
  }
}

.steps .intro-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  max-width: 560px;
  text-align: justify;
}

.steps .action-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .steps .action-buttons {
    justify-content: flex-start;
    margin-top: 24px;
  }
}

.steps .action-buttons .btn-bold-primary {
  display: inline-block;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 75%, black));
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color) 35%, transparent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.steps .action-buttons .btn-bold-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color) 45%, transparent);
}

.steps .action-buttons .btn-bold-outline {
  display: inline-block;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.steps .action-buttons .btn-bold-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color) 35%, transparent);
}

.steps .process-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px 28px 36px;
  text-align: center;
  box-shadow: 0 8px 28px color-mix(in srgb, var(--default-color) 8%, transparent);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  overflow: hidden;
}

.steps .process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 48px color-mix(in srgb, var(--default-color) 14%, transparent);
}

.steps .process-card:hover .card-accent-bar {
  height: 6px;
}

.steps .process-card:hover .card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 75%, black));
  color: var(--contrast-color);
}

.steps .process-card:hover .card-number {
  opacity: 0.12;
}

.steps .process-card .card-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 70%, black));
  transition: height 0.3s ease;
}

.steps .process-card .card-number {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
  opacity: 0.08;
  line-height: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.steps .process-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent-color) 12%, var(--surface-color));
  color: var(--accent-color);
  font-size: 28px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.steps .process-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.steps .process-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color) 75%, transparent);
  margin-bottom: 0;
}

.steps .connector-line {
  position: relative;
  margin-top: 32px;
  height: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
}

.steps .connector-line .line-track {
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color) 15%, transparent), var(--accent-color), color-mix(in srgb, var(--accent-color) 15%, transparent));
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding-top: 50px;
  padding-bottom: 60px;
}

.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

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

.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: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
  background-color: aliceblue;
}

.services .service-item.item-cyan i {
  color: #16537e;
}

.services .service-item.item-cyan:hover .icon i {
  color: #fff;
}

.services .service-item.item-cyan:hover .icon path {
  fill: #16537e;
}

.services .service-item.item-orange i {
  color: #16537e;
}

.services .service-item.item-orange:hover .icon i {
  color: #fff;
}

.services .service-item.item-orange:hover .icon path {
  fill: #16537e;
}

.services .service-item.item-teal i {
  color: #16537e;
}

.services .service-item.item-teal:hover .icon i {
  color: #fff;
}

.services .service-item.item-teal:hover .icon path {
  fill: #16537e;
}

.services .service-item.item-red i {
  color: #16537e;
}

.services .service-item.item-red:hover .icon i {
  color: #fff;
}

.services .service-item.item-red:hover .icon path {
  fill: #16537e;
}

.services .service-item.item-indigo i {
  color: #16537e;
}

.services .service-item.item-indigo:hover .icon i {
  color: #fff;
}

.services .service-item.item-indigo:hover .icon path {
  fill: #16537e;
}

.services .service-item.item-pink i {
  color: #16537e;
}

.services .service-item.item-pink:hover .icon i {
  color: #fff;
}

.services .service-item.item-pink:hover .icon path {
  fill: #16537e;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 {
  padding-top: 44px;
  padding-bottom: 48px;
}

.features-2 .capability-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features-2 .capability-item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 24px;
  transition: all 0.2s ease;
}

.features-2 .capability-item:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 93%);
}

.features-2 .capability-item.active {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.features-2 .capability-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  margin-right: 20px;
  flex-shrink: 0;
}

.features-2 .capability-icon i {
  font-size: 1.25rem;
}

.features-2 .capability-body .capability-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.features-2 .capability-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

.features-2 .capability-body p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.65;
  margin-bottom: 16px;
}

.features-2 .tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  line-height: 1.6;
}

.features-2 .tag.tag-accent {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-2 .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.features-2 .check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
}

.features-2 .check-list li i {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 700;
}

.features-2 .side-panel {
  height: 450px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features-2 .side-image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.features-2 .side-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.features-2 .side-quote {
  flex: 1;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.features-2 .side-quote .quote-mark {
  color: color-mix(in srgb, var(--accent-color), transparent 40%);
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 1;
}

.features-2 .side-quote p {
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 16px;
  flex: 1;
}

.features-2 .side-quote .divider {
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 16px;
}

.features-2 .side-quote .quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.features-2 .side-quote .quote-author .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.features-2 .side-quote .quote-author .author-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.features-2 .side-quote .quote-author .author-info span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .features-2 .side-panel {
    flex-direction: row;
    height: auto;
  }

  .features-2 .side-image {
    flex: 1;
  }

  .features-2 .side-image img {
    height: 100%;
    min-height: 200px;
  }

  .features-2 .side-quote {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .features-2 .capability-item {
    padding: 20px;
  }

  .features-2 .capability-icon {
    margin-right: 16px;
  }

  .features-2 .check-list {
    flex-direction: column;
    gap: 6px;
  }

  .features-2 .side-panel {
    flex-direction: column;
  }

  .features-2 .side-image img {
    height: 200px;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding-top: 41px;
  padding-bottom: 60px;
}

.clients .clients-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.clients .client-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.clients .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

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

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

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 {
  padding-top: 60px;
  padding-bottom: 18px;
}

.faq-2 .faq-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-2 .faq-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--accent-color), transparent 90%);
}

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

.faq-2 .faq-item.faq-active .faq-header .icon-wrap {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

.faq-2 .faq-item.faq-active .faq-header .faq-toggle i {
  transform: rotate(180deg);
  color: var(--accent-color);
}

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

.faq-2 .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  transition: all 0.3s ease;
}

.faq-2 .faq-item .faq-header .icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.faq-2 .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--heading-color);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.faq-2 .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
}

.faq-2 .faq-item .faq-header .faq-toggle i {
  transition: all 0.3s ease;
}

.faq-2 .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.35s ease;
  visibility: hidden;
  opacity: 0;
}

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

.faq-2 .faq-item .faq-content .content-inner p {
  margin: 0;
  padding-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.75;
  font-size: 0.95rem;
}

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

  .faq-2 .faq-item .faq-header .icon-wrap {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .faq-2 .faq-item .faq-header h4 {
    font-size: 0.95rem;
  }

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

  .faq-2 .faq-item .faq-content .content-inner p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .faq-2 .faq-item .faq-header {
    padding: 14px 16px;
    gap: 10px;
  }

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

  .faq-2 .faq-item .faq-header h4 {
    font-size: 0.9rem;
  }

  .faq-2 .faq-item .faq-content .content-inner {
    padding: 0 16px 0 58px;
  }

  .faq-2 .faq-item .faq-content .content-inner p {
    font-size: 0.875rem;
    padding-bottom: 16px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding-top: 60px;
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.call-to-action::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--accent-color) 28%, transparent), transparent 60%);
}

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

.call-to-action .cta-center .kicker {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--accent-color) 22%, transparent);
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.call-to-action .cta-center h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.call-to-action .cta-center p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
  text-align: justify;
}

.call-to-action .cta-center .btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 70%, #f06cae));
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 16px;
  border: none;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color) 30%, transparent);
  transition: all 0.3s ease;
}

.call-to-action .cta-center .btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--accent-color) 40%, transparent);
  color: var(--contrast-color);
}

.call-to-action .cta-center .note {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
}

.call-to-action .cta-center .note i {
  color: var(--accent-color);
  margin-right: 6px;
}

@media (max-width: 768px) {
  .call-to-action .cta-center h2 {
    font-size: 30px;
  }

  .call-to-action .cta-center .btn-main {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Hero 6 Section
--------------------------------------------------------------*/
.hero-6 {
  padding-top: 80px;
  width: 100%;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}

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

.hero-6:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.311);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.hero-6 h2 {
  color: white;
  margin: 0;
  font-size: 4rem;
  font-weight: 700;
}

.hero-6 p {
  color: white;
  margin: 10px 0 0 0;
  font-size: 24px;
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 {
  padding-top: 42px;
  padding-bottom: 60px;
}

.about-3 .image-stack {
  position: relative;
}

.about-3 .image-stack .main-image {
  width: 100%;
  object-fit: cover;
}

.about-3 .image-stack .experience-badge {
  position: absolute;
  left: 24px;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 152px;
  padding: 24px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about-3 .image-stack .experience-badge .number {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.about-3 .image-stack .experience-badge .text {
  font-size: 14px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
}

.about-3 .content h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.5px;
  max-width: 520px;
  margin-bottom: 24px;
}

.about-3 .content p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 15px;
}

.about-3 .content .check-list {
  display: grid;
  gap: 5px 24px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

@media (max-width: 576px) {
  .about-3 .content .check-list {
    grid-template-columns: 1fr;
  }
}

.about-3 .content .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  color: var(--default-color);
}

.about-3 .content .check-list li i {
  color: var(--accent-color);
  font-size: 20px;
  line-height: 1.2;
}

.about-3 .content .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  background: linear-gradient(currentColor, currentColor) 0 100%/0 1px no-repeat;
  transition: background-size 0.3s ease-out;
}

.about-3 .content .link-arrow i {
  color: var(--accent-color);
  transition: transform 0.3s ease-out;
}

.about-3 .content .link-arrow:hover {
  background-size: 100% 1px;
  color: var(--heading-color);
}

.about-3 .content .link-arrow:hover i {
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# About Me 2 Section
--------------------------------------------------------------*/
.about-me-2 {
  padding-top: 29px;
  overflow: hidden;
  padding-bottom: 46px;
}

.about-me-2 .author-image {
  position: relative;
  margin-bottom: 30px;
}

.about-me-2 .author-image img {
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
}

.about-me-2 .author-image .overlay-badge {
  position: absolute;
  bottom: -30px;
  left: 35%;
  transform: translateX(-50%);
  background: var(--surface-color);
  padding: 1rem 1.5rem;
  width: 250px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.about-me-2 .author-image .overlay-badge .badge-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-me-2 .author-image .overlay-badge .badge-content i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.about-me-2 .author-image .overlay-badge .badge-content .badge-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
  text-align: center;
}

.about-me-2 .author-image .overlay-badge .badge-content .badge-text span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 992px) {
  .about-me-2 .author-image {
    max-width: 450px;
    margin: 0 auto 30px;
  }
}

.about-me-2 .author-info h2 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about-me-2 .author-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .about-me-2 .author-info h3 {
    font-size: 30px;
  }
}

.about-me-2 .author-info .author-credentials {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
  font-style: italic;
}

.about-me-2 .author-info .author-bio {
  margin-bottom: 30px;
}

.about-me-2 .author-info .author-bio p {
  color: var(--default-color);
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: justify;
}

.about-me-2 .author-info .author-bio p:last-child {
  margin-bottom: 0;
}

.about-me-2 .author-info .author-awards {
  margin-bottom: 30px;
}

.about-me-2 .author-info .author-awards h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.about-me-2 .author-info .author-awards h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.about-me-2 .author-info .author-awards ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-me-2 .author-info .author-awards ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.about-me-2 .author-info .author-awards ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
  flex-shrink: 0;
}

.about-me-2 .author-info .author-awards ul li span {
  color: var(--default-color);
  line-height: 1.4;
}

.about-me-2 .author-info .author-social {
  padding-top: 20px;
}

.about-me-2 .author-info .author-social h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-top: 15px;
  position: relative;
  padding-bottom: 10px;
}

.about-me-2 .author-info .author-social h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.about-me-2 .author-info .author-social .social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.about-me-2 .author-info .author-social .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.about-me-2 .author-info .author-social .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .about-me-2 .author-info {
    text-align: center;
  }

  .about-me-2 .author-info h2,
  .about-me-2 .author-info h3,
  .about-me-2 .author-info .author-credentials {
    text-align: center;
  }

  .about-me-2 .author-info .author-awards h4:after,
  .about-me-2 .author-info .author-social h4:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-me-2 .author-info .author-awards ul li {
    justify-content: center;
  }

  .about-me-2 .author-info .author-social .social-links {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 {
  padding-top: 50px;
  padding-bottom: 60px;
}

.about-2 .inner-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about-2 .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about-2 .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

@media (min-width: 991px) {
  .about-2 .our-story {
    padding-right: 35%;
  }
}

.about-2 .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about-2 .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-2 .our-story p:last-child {
  margin-bottom: 0;
}

@media (min-width: 991px) {
  .about-2 .our-story .wide-l {
    margin-right: -50%;
  }
}

.about-2 ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about-2 ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

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

.about-2 .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about-2 .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about-2 .watch-video:hover a {
  color: var(--accent-color);
}

.about-2 .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about-2 .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

.about-2 .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills {
  padding-top: 37px;
  padding-bottom: 33px;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 {
  padding-top: 17px;
  padding-bottom: 1px;
}

.services-2 .featured-service {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 95%);
}

.services-2 .featured-service .featured-content {
  padding: 50px;
}

.services-2 .featured-service .featured-content .featured-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  padding: 6px 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 4px;
  margin-bottom: 20px;
}

.services-2 .featured-service .featured-content h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}

.services-2 .featured-service .featured-content p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 30px;
  text-align: justify;
}

.services-2 .featured-service .featured-content .featured-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding: 22px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.services-2 .featured-service .featured-content .featured-stats .stat-block {
  display: flex;
  flex-direction: column;
}

.services-2 .featured-service .featured-content .featured-stats .stat-block .stat-number {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.services-2 .featured-service .featured-content .featured-stats .stat-block .stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-top: 6px;
}

.services-2 .featured-service .featured-content .featured-stats .stat-divider {
  width: 1px;
  height: 36px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.services-2 .featured-service .featured-content .featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.services-2 .featured-service .featured-content .featured-cta i {
  transition: transform 0.3s ease;
}

.services-2 .featured-service .featured-content .featured-cta:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  color: var(--contrast-color);
}

.services-2 .featured-service .featured-content .featured-cta:hover i {
  transform: translate(3px, -3px);
}

.services-2 .featured-service .featured-visual {
  position: relative;
  height: 100%;
  min-height: 420px;
}

.services-2 .featured-service .featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-2 .featured-service .featured-visual .visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--surface-color);
  border-radius: 50px;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color), transparent 80%);
}

.services-2 .featured-service .featured-visual .visual-badge i {
  font-size: 20px;
  color: var(--accent-color);
}

.services-2 .featured-service .featured-visual .visual-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

.services-2 .services-grid .service-card {
  position: relative;
  padding: 36px 28px;
  background: var(--surface-color);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
}

.services-2 .services-grid .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.services-2 .services-grid .service-card .service-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--heading-font);
  font-size: 42px;
  font-weight: 800;
  color: color-mix(in srgb, var(--default-color), transparent 92%);
  line-height: 1;
  transition: color 0.3s ease;
}

.services-2 .services-grid .service-card .service-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50%;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.services-2 .services-grid .service-card .service-icon i {
  font-size: 26px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services-2 .services-grid .service-card h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.services-2 .services-grid .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-2 .services-grid .service-card .service-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services-2 .services-grid .service-card .service-link:hover i {
  transform: translateX(4px);
}

.services-2 .services-grid .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services-2 .services-grid .service-card:hover::before {
  transform: scaleX(1);
}

.services-2 .services-grid .service-card:hover .service-number {
  color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services-2 .services-grid .service-card:hover .service-icon {
  background: var(--accent-color);
  transform: rotate(-8deg);
}

.services-2 .services-grid .service-card:hover .service-icon i {
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .services-2 .featured-service .featured-content {
    padding: 36px 28px;
  }

  .services-2 .featured-service .featured-content h3 {
    font-size: 26px;
  }

  .services-2 .featured-service .featured-content .featured-stats {
    gap: 16px;
  }

  .services-2 .featured-service .featured-content .featured-stats .stat-block .stat-number {
    font-size: 24px;
  }

  .services-2 .featured-service .featured-visual {
    min-height: 320px;
  }
}

@media (max-width: 575px) {
  .services-2 .featured-service .featured-content {
    padding: 28px 22px;
  }

  .services-2 .featured-service .featured-content .featured-stats {
    flex-wrap: wrap;
    gap: 18px;
  }

  .services-2 .featured-service .featured-content .featured-stats .stat-divider {
    display: none;
  }

  .services-2 .featured-service .featured-visual {
    min-height: 260px;
  }

  .services-2 .services-grid .service-card {
    padding: 30px 24px;
  }

  .services-2 .services-grid .service-card .service-number {
    font-size: 36px;
  }
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding-top: 80px;
  width: 100%;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}

.call-to-action-2 img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action-2:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.311);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.call-to-action-2 h2 {
  color: white;
  margin: 0;
  font-size: 4rem;
  font-weight: 700;
}

.call-to-action-2 p {
  color: white;
  margin: 10px 0 0 0;
  font-size: 24px;
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts {
  padding-top: 60px;
  padding-bottom: 44px;
}

.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

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

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

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

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

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

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

.blog-posts p {
  margin-top: 20px;
}

.blog-posts hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}

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

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

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

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-bottom: 45px;
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Hero 5 Section
--------------------------------------------------------------*/
.hero-5 {
  padding-top: 80px;
  width: 100%;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}

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

.hero-5:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.311);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.hero-5 h2 {
  color: white;
  margin: 0;
  font-size: 4rem;
  font-weight: 700;
}

.hero-5 p {
  color: white;
  margin: 10px 0 0 0;
  font-size: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.contact .contact-form .sent-message {
    display: none;
}

.contact .contact-form .sent-message.d-block {
    display: block;
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  padding-top: 80px;
  width: 100%;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}

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

.hero-2:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.311);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.hero-2 h2 {
  color: white;
  margin: 0;
  font-size: 4rem;
  font-weight: 700;
}

.hero-2 p {
  color: white;
  margin: 10px 0 0 0;
  font-size: 24px;
}

/*--------------------------------------------------------------
# Service Details 5 Section
--------------------------------------------------------------*/
.service-details-5 {
  padding-top: 60px;
  padding-bottom: 7px;
}

.service-details-5 .hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.service-details-5 .hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-details-5 .hero-image .floating-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.85rem;
}

.service-details-5 .hero-image .floating-badge i {
  font-size: 0.9rem;
}

.service-details-5 .hero-text .category-label {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details-5 .hero-text h2 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.service-details-5 .hero-text .intro {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-details-5 .hero-text p {
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.service-details-5 .block-heading {
  color: var(--heading-color);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.75rem;
}

.service-details-5 .block-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.service-details-5 .fact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.service-details-5 .fact-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-3px);
}

.service-details-5 .fact-card i {
  font-size: 1.6rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.service-details-5 .fact-card .fact-detail .fact-title {
  display: block;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.15rem;
}

.service-details-5 .fact-card .fact-detail strong {
  color: var(--heading-color);
  font-size: 0.95rem;
}

.service-details-5 .features-block {
  padding: 3.5rem 0;
}

.service-details-5 .features-block .feature-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.service-details-5 .features-block .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.service-details-5 .features-block .feature-card:hover .icon-wrap {
  background: var(--accent-color);
}

.service-details-5 .features-block .feature-card:hover .icon-wrap i {
  color: var(--contrast-color);
}

.service-details-5 .features-block .feature-card .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.service-details-5 .features-block .feature-card .icon-wrap i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-details-5 .features-block .feature-card h5 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-details-5 .features-block .feature-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.service-details-5 .process-block .wider-step .timeline-card {
  max-width: 320px;
  margin: 0 auto;
}

.service-details-5 .process-block {
  padding: 3rem 0 3.5rem;
}

.service-details-5 .process-block .timeline-card {
  text-align: center;
  padding: 0 0.5rem;
}

.service-details-5 .process-block .timeline-card .wider-step {
  flex: 0 0 25%;
  max-width: 25%;
}

.service-details-5 .process-block .timeline-card .timeline-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.service-details-5 .process-block .timeline-card .timeline-indicator .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.service-details-5 .process-block .timeline-card .timeline-indicator .connector {
  position: absolute;
  right: -50%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  z-index: 1;
}

.service-details-5 .process-block .timeline-card h5 {
  padding: 10px 35px;
  /* increase left/right padding */
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-details-5 .process-block .timeline-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.service-details-5 .process-block .timeline-card .wider-step {
  flex: 0 0 25%;
  max-width: 25%;
}

.service-details-5 .testimonial-banner {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 16px;
  padding: 3.5rem 2rem;
  margin: 1rem 0 3rem;
}

.service-details-5 .testimonial-banner .quote-icon {
  font-size: 3rem;
  color: var(--accent-color);
  display: block;
  margin-bottom: 1rem;
}

.service-details-5 .testimonial-banner .quote-text {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 1.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.service-details-5 .testimonial-banner .quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.service-details-5 .testimonial-banner .quote-author .author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

.service-details-5 .testimonial-banner .quote-author .author-details {
  text-align: left;
}

.service-details-5 .testimonial-banner .quote-author .author-details h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.service-details-5 .testimonial-banner .quote-author .author-details span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details-5 .inquiry-section {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 16px;
  padding: 3rem;
}

.service-details-5 .inquiry-section .form-intro h3 {
  color: var(--heading-color);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-details-5 .inquiry-section .form-intro p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-details-5 .inquiry-section .form-intro .contact-points .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-details-5 .inquiry-section .form-intro .contact-points .contact-item i {
  font-size: 1.15rem;
  color: var(--accent-color);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-details-5 .inquiry-section .form-intro .contact-points .contact-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details-5 .inquiry-section .form-wrapper {
  background: var(--background-color);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-details-5 .inquiry-section .form-wrapper .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.service-details-5 .inquiry-section .form-wrapper .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 82%);
}

.service-details-5 .inquiry-section .form-wrapper input[type=text],
.service-details-5 .inquiry-section .form-wrapper input[type=email],
.service-details-5 .inquiry-section .form-wrapper input[type=tel],
.service-details-5 .inquiry-section .form-wrapper textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.service-details-5 .inquiry-section .form-wrapper input[type=text]:focus,
.service-details-5 .inquiry-section .form-wrapper input[type=email]:focus,
.service-details-5 .inquiry-section .form-wrapper input[type=tel]:focus,
.service-details-5 .inquiry-section .form-wrapper textarea:focus {
  border-color: var(--accent-color);
}

.service-details-5 .inquiry-section .form-wrapper input[type=text]::placeholder,
.service-details-5 .inquiry-section .form-wrapper input[type=email]::placeholder,
.service-details-5 .inquiry-section .form-wrapper input[type=tel]::placeholder,
.service-details-5 .inquiry-section .form-wrapper textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.service-details-5 .inquiry-section .form-wrapper .btn-send {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-details-5 .inquiry-section .form-wrapper .btn-send:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 65%);
}

@media (max-width: 992px) {
  .service-details-5 .process-block .timeline-card .timeline-indicator .connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .service-details-5 .hero-text h2 {
    font-size: 1.8rem;
  }

  .service-details-5 .features-block {
    padding: 2rem 0;
  }

  .service-details-5 .process-block {
    padding: 2rem 0;
  }

  .service-details-5 .testimonial-banner {
    padding: 2.5rem 1.5rem;
  }

  .service-details-5 .testimonial-banner .quote-text {
    font-size: 1.05rem;
  }

  .service-details-5 .inquiry-section {
    padding: 2rem 1.5rem;
  }

  .service-details-5 .inquiry-section .form-wrapper {
    padding: 1.5rem;
  }

  .service-details-5 .fact-card {
    padding: 1rem;
    gap: 0.75rem;
  }

  .service-details-5 .fact-card i {
    font-size: 1.3rem;
  }

  .service-details-5 .fact-card .fact-detail strong {
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Cards 2 Section
--------------------------------------------------------------*/
.cards-2 {
  padding-top: 43px;
  padding-bottom: 49px;
}

.cards-2 .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 40px;
  margin: -1px;
  border-radius: 0;
}

.cards-2 .card span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-color);
}

.cards-2 .card h4 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.cards-2 .card p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Hero 3 Section
--------------------------------------------------------------*/
.hero-3 {
  padding-top: 80px;
  width: 100%;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}

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

.hero-3:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.611);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.hero-3 h2 {
  color: white;
  margin: 0;
  font-size: 4rem;
  font-weight: 700;
}

.hero-3 p {
  color: white;
  margin: 10px 0 0 0;
  font-size: 24px;
}

/*--------------------------------------------------------------
# Service Details 9 Section
--------------------------------------------------------------*/
.service-details-9 {
  padding-top: 60px;
  padding-bottom: 7px;
}

.service-details-9 .hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.service-details-9 .hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-details-9 .hero-image .floating-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.85rem;
}

.service-details-9 .hero-image .floating-badge i {
  font-size: 0.9rem;
}

.service-details-9 .hero-text .category-label {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details-9 .hero-text h2 {
  color: var(--heading-color);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.service-details-9 .hero-text .intro {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-details-9 .hero-text p {
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.service-details-9 .block-heading {
  color: var(--heading-color);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.75rem;
}

.service-details-9 .block-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.service-details-9 .fact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.service-details-9 .fact-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-3px);
}

.service-details-9 .fact-card i {
  font-size: 1.6rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.service-details-9 .fact-card .fact-detail .fact-title {
  display: block;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.15rem;
}

.service-details-9 .fact-card .fact-detail strong {
  color: var(--heading-color);
  font-size: 0.95rem;
}

.service-details-9 .features-block {
  padding: 3.5rem 0;
}

.service-details-9 .features-block .feature-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.service-details-9 .features-block .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.service-details-9 .features-block .feature-card:hover .icon-wrap {
  background: var(--accent-color);
}

.service-details-9 .features-block .feature-card:hover .icon-wrap i {
  color: var(--contrast-color);
}

.service-details-9 .features-block .feature-card .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.service-details-9 .features-block .feature-card .icon-wrap i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-details-9 .features-block .feature-card h5 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-details-9 .features-block .feature-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.service-details-9 .process-block .wider-step .timeline-card {
  max-width: 320px;
  margin: 0 auto;
}

.service-details-9 .timeline-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.service-details-9 .timeline-item {
  min-width: 0;
}

.service-details-9 .timeline-card {
  text-align: center;
  padding: 0 8px;
}

.service-details-9 .process-block {
  padding: 3rem 0 3.5rem;
}

.service-details-9 .process-block .timeline-card {
  text-align: center;
  padding: 0 0.5rem;
}

.service-details-9 .process-block .timeline-card .wider-step {
  flex: 0 0 25%;
  max-width: 25%;
}

.service-details-9 .process-block .timeline-card .timeline-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.service-details-9 .process-block .timeline-card .timeline-indicator .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.service-details-9 .process-block .timeline-card .timeline-indicator .connector {
  position: absolute;
  right: -50%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  z-index: 1;
}

.service-details-9 .process-block .timeline-card h5 {
  padding: 10px 35px;
  /* increase left/right padding */
  color: var(--heading-color);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-details-9 .process-block .timeline-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.service-details-9 .process-block .timeline-card .wider-step {
  flex: 0 0 25%;
  max-width: 25%;
}

.service-details-9 .testimonial-banner {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 16px;
  padding: 3.5rem 2rem;
  margin: 1rem 0 3rem;
}

.service-details-9 .testimonial-banner .quote-icon {
  font-size: 3rem;
  color: var(--accent-color);
  display: block;
  margin-bottom: 1rem;
}

.service-details-9 .testimonial-banner .quote-text {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 1.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.service-details-9 .testimonial-banner .quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.service-details-9 .testimonial-banner .quote-author .author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

.service-details-9 .testimonial-banner .quote-author .author-details {
  text-align: left;
}

.service-details-9 .testimonial-banner .quote-author .author-details h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.service-details-9 .testimonial-banner .quote-author .author-details span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details-9 .inquiry-section {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 16px;
  padding: 3rem;
}

.service-details-9 .inquiry-section .form-intro h3 {
  color: var(--heading-color);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-details-9 .inquiry-section .form-intro p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-details-9 .inquiry-section .form-intro .contact-points .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-details-9 .inquiry-section .form-intro .contact-points .contact-item i {
  font-size: 1.15rem;
  color: var(--accent-color);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-details-9 .inquiry-section .form-intro .contact-points .contact-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details-9 .inquiry-section .form-wrapper {
  background: var(--background-color);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-details-9 .inquiry-section .form-wrapper .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.service-details-9 .inquiry-section .form-wrapper .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 82%);
}

.service-details-9 .inquiry-section .form-wrapper input[type=text],
.service-details-9 .inquiry-section .form-wrapper input[type=email],
.service-details-9 .inquiry-section .form-wrapper input[type=tel],
.service-details-9 .inquiry-section .form-wrapper textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.service-details-9 .inquiry-section .form-wrapper input[type=text]:focus,
.service-details-9 .inquiry-section .form-wrapper input[type=email]:focus,
.service-details-9 .inquiry-section .form-wrapper input[type=tel]:focus,
.service-details-9 .inquiry-section .form-wrapper textarea:focus {
  border-color: var(--accent-color);
}

.service-details-9 .inquiry-section .form-wrapper input[type=text]::placeholder,
.service-details-9 .inquiry-section .form-wrapper input[type=email]::placeholder,
.service-details-9 .inquiry-section .form-wrapper input[type=tel]::placeholder,
.service-details-9 .inquiry-section .form-wrapper textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.service-details-9 .inquiry-section .form-wrapper .btn-send {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-details-9 .inquiry-section .form-wrapper .btn-send:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 65%);
}

@media (max-width: 992px) {
  .service-details-9 .process-block .timeline-card .timeline-indicator .connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .service-details-9 .hero-text h2 {
    font-size: 1.8rem;
  }

  .service-details-9 .features-block {
    padding: 2rem 0;
  }

  .service-details-9 .process-block {
    padding: 2rem 0;
  }

  .service-details-9 .testimonial-banner {
    padding: 2.5rem 1.5rem;
  }

  .service-details-9 .testimonial-banner .quote-text {
    font-size: 1.05rem;
  }

  .service-details-9 .inquiry-section {
    padding: 2rem 1.5rem;
  }

  .service-details-9 .inquiry-section .form-wrapper {
    padding: 1.5rem;
  }

  .service-details-9 .fact-card {
    padding: 1rem;
    gap: 0.75rem;
  }

  .service-details-9 .fact-card i {
    font-size: 1.3rem;
  }

  .service-details-9 .fact-card .fact-detail strong {
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Cards 3 Section
--------------------------------------------------------------*/
.cards-3 {
  padding-top: 39px;
  padding-bottom: 39px;
}

.cards-3 .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 40px;
  margin: -1px;
  border-radius: 0;
}

.cards-3 .card span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-color);
}

.cards-3 .card h4 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.cards-3 .card p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Hero 4 Section
--------------------------------------------------------------*/
.hero-4 {
  padding-top: 80px;
  width: 100%;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}

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

.hero-4:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.311);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.hero-4 h2 {
  color: white;
  margin: 0;
  font-size: 4rem;
  font-weight: 700;
}

.hero-4 p {
  color: white;
  margin: 10px 0 0 0;
  font-size: 24px;
}

/*--------------------------------------------------------------
# Service Details 4 Section
--------------------------------------------------------------*/
.service-details-4 {
  padding-top: 48px;
  padding-bottom: 1px;
}

.service-details-4 .hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.service-details-4 .hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-details-4 .hero-image .floating-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.85rem;
}

.service-details-4 .hero-image .floating-badge i {
  font-size: 0.9rem;
}

.service-details-4 .hero-text .category-label {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details-4 .hero-text h2 {
  color: var(--heading-color);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.service-details-4 .hero-text .intro {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-details-4 .hero-text p {
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.service-details-4 .block-heading {
  color: var(--heading-color);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.75rem;
}

.service-details-4 .block-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.service-details-4 .fact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.service-details-4 .fact-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-3px);
}

.service-details-4 .fact-card i {
  font-size: 1.6rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.service-details-4 .fact-card .fact-detail .fact-title {
  display: block;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.15rem;
}

.service-details-4 .fact-card .fact-detail strong {
  color: var(--heading-color);
  font-size: 0.95rem;
}

.service-details-4 .features-block {
  padding: 3.5rem 0;
}

.service-details-4 .features-block .feature-card ul {
  display: inline-block;
  text-align: left;
  padding-left: 20px;
  margin: 15px auto 0;
  font-size: 15px;
}

.service-details-4 .features-block .feature-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.service-details-4 .features-block .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.service-details-4 .features-block .feature-card:hover .icon-wrap {
  background: var(--accent-color);
}

.service-details-4 .features-block .feature-card:hover .icon-wrap i {
  color: var(--contrast-color);
}

.service-details-4 .features-block .feature-card .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.service-details-4 .features-block .feature-card .icon-wrap i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-details-4 .features-block .feature-card h5 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-details-4 .features-block .feature-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.service-details-4 .process-block {
  padding: 3rem 0 3.5rem;
}

.service-details-4 .process-block .timeline-card {
  text-align: center;
  padding: 0 0.5rem;
}

.service-details-4 .process-block .timeline-card .timeline-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.service-details-4 .process-block .timeline-card .timeline-indicator .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.service-details-4 .process-block .timeline-card .timeline-indicator .connector {
  position: absolute;
  right: -50%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  z-index: 1;
}

.service-details-4 .process-block .timeline-card h5 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-details-4 .process-block .timeline-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.service-details-4 .testimonial-banner {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 16px;
  padding: 3.5rem 2rem;
  margin: 1rem 0 3rem;
}

.service-details-4 .testimonial-banner .quote-icon {
  font-size: 3rem;
  color: var(--accent-color);
  display: block;
  margin-bottom: 1rem;
}

.service-details-4 .testimonial-banner .quote-text {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 1.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.service-details-4 .testimonial-banner .quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.service-details-4 .testimonial-banner .quote-author .author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

.service-details-4 .testimonial-banner .quote-author .author-details {
  text-align: left;
}

.service-details-4 .testimonial-banner .quote-author .author-details h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.service-details-4 .testimonial-banner .quote-author .author-details span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details-4 .inquiry-section {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 16px;
  padding: 3rem;
}

.service-details-4 .inquiry-section .form-intro h3 {
  color: var(--heading-color);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-details-4 .inquiry-section .form-intro p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-details-4 .inquiry-section .form-intro .contact-points .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-details-4 .inquiry-section .form-intro .contact-points .contact-item i {
  font-size: 1.15rem;
  color: var(--accent-color);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-details-4 .inquiry-section .form-intro .contact-points .contact-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details-4 .inquiry-section .form-wrapper {
  background: var(--background-color);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-details-4 .inquiry-section .form-wrapper .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.service-details-4 .inquiry-section .form-wrapper .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 82%);
}

.service-details-4 .inquiry-section .form-wrapper input[type=text],
.service-details-4 .inquiry-section .form-wrapper input[type=email],
.service-details-4 .inquiry-section .form-wrapper input[type=tel],
.service-details-4 .inquiry-section .form-wrapper textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.service-details-4 .inquiry-section .form-wrapper input[type=text]:focus,
.service-details-4 .inquiry-section .form-wrapper input[type=email]:focus,
.service-details-4 .inquiry-section .form-wrapper input[type=tel]:focus,
.service-details-4 .inquiry-section .form-wrapper textarea:focus {
  border-color: var(--accent-color);
}

.service-details-4 .inquiry-section .form-wrapper input[type=text]::placeholder,
.service-details-4 .inquiry-section .form-wrapper input[type=email]::placeholder,
.service-details-4 .inquiry-section .form-wrapper input[type=tel]::placeholder,
.service-details-4 .inquiry-section .form-wrapper textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.service-details-4 .inquiry-section .form-wrapper .btn-send {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-details-4 .inquiry-section .form-wrapper .btn-send:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 65%);
}

@media (max-width: 992px) {
  .service-details-4 .process-block .timeline-card .timeline-indicator .connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .service-details-4 .hero-text h2 {
    font-size: 1.8rem;
  }

  .service-details-4 .features-block {
    padding: 2rem 0;
  }

  .service-details-4 .process-block {
    padding: 2rem 0;
  }

  .service-details-4 .testimonial-banner {
    padding: 2.5rem 1.5rem;
  }

  .service-details-4 .testimonial-banner .quote-text {
    font-size: 1.05rem;
  }

  .service-details-4 .inquiry-section {
    padding: 2rem 1.5rem;
  }

  .service-details-4 .inquiry-section .form-wrapper {
    padding: 1.5rem;
  }

  .service-details-4 .fact-card {
    padding: 1rem;
    gap: 0.75rem;
  }

  .service-details-4 .fact-card i {
    font-size: 1.3rem;
  }

  .service-details-4 .fact-card .fact-detail strong {
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Cards 4 Section
--------------------------------------------------------------*/
.cards-4 {
  padding-top: 60px;
  padding-bottom: 49px;
}

.cards-4 .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 40px;
  margin: -1px;
  border-radius: 0;
}

.cards-4 .card span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-color);
}

.cards-4 .card h4 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.cards-4 .card p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Post Details Section
--------------------------------------------------------------*/
.post-details {
  padding-top: 60px;
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 0px;
}

.post-details .post-img {
  position: relative;
  height: 600px;
  overflow: hidden;
}

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

@media (max-width: 768px) {
  .post-details .post-img {
    height: 300px;
  }
}

.post-details .article-content {
  padding: 2rem;
}

@media (max-width: 768px) {
  .post-details .article-content {
    padding: 1.5rem;
  }
}

.post-details .meta-categories {
  margin-bottom: 1rem;
}

.post-details .meta-categories .category,
.post-details .meta-categories .reading-time {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
  font-size: 0.9rem;
  color: var(--heading-color);
}

.post-details .meta-categories .category i,
.post-details .meta-categories .reading-time i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.post-details .title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin: 1rem 0 1.5rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .post-details .title {
    font-size: 2rem;
  }
}

.post-details .meta-top {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.post-details .meta-top ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.post-details .meta-top ul li {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-details .meta-top ul li i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.post-details .meta-top ul li .author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.post-details .meta-top ul li a {
  color: var(--heading-color);
}

.post-details .meta-top ul li a:hover {
  color: var(--accent-color);
}

.post-details .content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.post-details .content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.post-details .content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--heading-color);
}

.post-details .content p {
  margin-bottom: 1.5rem;
}

.post-details .content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.post-details .content ul li {
  margin-bottom: 0.5rem;
}

.post-details .content .content-image {
  margin: 2rem 0;
}

.post-details .content .content-image img {
  width: 100%;
  border-radius: 8px;
}

.post-details .content .content-image figcaption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-details .content .content-image-split {
  margin: 2rem 0;
}

.post-details .content .content-image-split img {
  border-radius: 8px;
}

.post-details .content blockquote {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 4px solid var(--accent-color);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.post-details .content blockquote p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
}

.post-details .content blockquote cite {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-style: normal;
  display: block;
}

.post-details .content blockquote cite:before {
  content: "— ";
}

.post-details .meta-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.post-details .meta-bottom .article-tags {
  display: flex;
  align-items: center;
}

.post-details .meta-bottom .article-tags i {
  margin-right: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-details .meta-bottom .article-tags .tags {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post-details .meta-bottom .article-tags .tags li a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.9rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.post-details .meta-bottom .article-tags .tags li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.post-details .meta-bottom .article-share {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-details .meta-bottom .article-share span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.post-details .meta-bottom .article-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.post-details .meta-bottom .article-share a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.post-details .meta-bottom .article-share a i {
  font-size: 1rem;
}