/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Verdana",  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: "Montserrat",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #444444; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #fdc107; /* 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: #eeeeee;  /* The default color of the main navmenu links */
  --nav-hover-color: #fdc107; /* 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: #fdc107; /* 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: #323232;
  --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: #1e1e1e;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 2px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    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;
    margin: 0;
    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(--contrast-color);
    background-color: var(--nav-hover-color);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

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

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: 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: 50px;
}

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

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

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

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

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

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

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

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

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

@media (max-width: 1199px) {

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 96px 0 0;
  overflow: hidden;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, Black, transparent);
}

.hero .container {
  z-index: 2;
}

.hero .badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero .badge-label i {
  font-size: 16px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--contrast-color);
}

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

.hero .lead {
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  max-width: 580px;
  margin-bottom: 32px;
}

.hero .hero-actions {
  margin-bottom: 80px;
}

.hero .hero-actions .btn-main {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hero .hero-actions .btn-main:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

.hero .hero-actions .btn-outline {
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero .hero-actions .btn-outline:hover {
  background: var(--contrast-color);
  color: var(--heading-color);
}

.hero .hero-counters {
  background: #1e1e1e;
  border-radius: 8px 8px 0 0;
  padding: 32px;
}

.hero .hero-counters .counter-item {
  text-align: center;
}

.hero .hero-counters .counter-item h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fdc107;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.hero .hero-counters .counter-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 4px 0 0;
}

@media (max-width: 991px) {
  .hero {
    padding: 80px 0 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero .hero-actions {
    margin-bottom: 48px;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 64px 0 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .lead {
    font-size: 16px;
  }

  .hero .hero-actions {
    flex-direction: column;
    margin-bottom: 32px;
  }

  .hero .hero-actions .btn-main,
  .hero .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero .hero-counters {
    padding: 24px 16px;
  }

  .hero .hero-counters .counter-item h3 {
    font-size: 28px;
  }
}

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

.services .offering-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.services .offering-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services .offering-card:hover .card-top img {
  transform: scale(1.08);
}

.services .offering-card:hover .card-top .icon-badge {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.services .offering-card:hover .explore-link {
  color: color-mix(in srgb, var(--accent-color), black 10%);
}

.services .offering-card:hover .explore-link i {
  transform: translateX(4px);
}

.services .card-top {
  position: relative;
  overflow: hidden;
  height: 180px;
}


.services .card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.services .card-top .icon-badge {
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 48px;
  height: 48px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 50%);
  transition: background-color 0.3s ease;
  z-index: 2;
}

.services .card-top .icon-badge i {
  font-size: 20px;
  color: var(--contrast-color);
}

.services .card-body-content {
  padding: 35px 24px 28px;
  position: relative;
}

.services .card-body-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.services .card-body-content p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
}

.services .highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.services .highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--default-color);
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 88%);
}

.services .highlights li:last-child {
  border-bottom: none;
}

.services .highlights li i {
  font-size: 14px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.services .explore-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.services .explore-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.services .bottom-banner {
  margin-top: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 25%));
  border-radius: 16px;
  padding: 40px 40px;
  color: var(--contrast-color);
}

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

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

.services .banner-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.services .banner-actions .action-primary {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
}

.services .banner-actions .action-primary:hover {
  background-color: transparent;
  color: var(--contrast-color);
}

.services .banner-actions .action-outline {
  background-color: transparent;
  color: var(--contrast-color);
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
}

.services .banner-actions .action-outline:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-color: var(--contrast-color);
}

@media (max-width: 992px) {
  .services .bottom-banner {
    text-align: center;
    padding: 30px 25px;
  }

  .services .bottom-banner h4 {
    font-size: 20px;
  }

  .services .bottom-banner p {
    margin-bottom: 20px;
  }

  .services .banner-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .services .card-top {
    height: 160px;
  }

  .services .card-body-content {
    padding: 30px 20px 24px;
  }

  .services .card-body-content h3 {
    font-size: 18px;
  }

  .services .banner-actions {
    flex-direction: column;
    align-items: center;
  }

  .services .banner-actions .action-primary,
  .services .banner-actions .action-outline {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 {
  background-color: var(--surface-color);
}

.services-2 .service-item {
  background: var(--background-color);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.services-2 .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.services-2 .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

.services-2 .service-item:hover .service-icon i {
  transform: scale(1.1);
  color: var(--accent-color);
}

.services-2 .service-item:hover .service-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services-2 .service-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

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

.services-2 .service-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.services-2 .service-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
}

.services-2 .service-features {
  margin-bottom: 30px;
}

.services-2 .service-features .feature {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.services-2 .service-features .feature i {
  color: var(--accent-color);
  font-size: 16px;
  margin-right: 10px;
  flex-shrink: 0;
}

.services-2 .service-features .feature span {
  color: var(--default-color);
  font-size: 14px;
  font-weight: 500;
}

.services-2 .service-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.services-2 .service-btn i {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.services-2 .service-btn:hover i {
  transform: translateX(3px);
}

.services-2 .service-note {
  color: var(--default-color);
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-2 .service-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.services-2 .service-cta .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.services-2 .service-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.services-2 .service-cta .btn-secondary {
  background-color: transparent;
  color: var(--accent-color);
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.services-2 .service-cta .btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .services-2 .service-item {
    padding: 30px 20px;
  }

  .services-2 .service-icon {
    width: 70px;
    height: 70px;
  }

  .services-2 .service-icon i {
    font-size: 30px;
  }

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

  .services-2 .service-cta {
    flex-direction: column;
    align-items: center;
  }

  .services-2 .service-cta .btn-primary,
  .services-2 .service-cta .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 24px;
  border-radius: 8px;
  transition: all 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 16px;
  color: #f7b50d;
}

.testimonials .testimonial-item .stars i {
  font-size: 18px;
  margin: 0 2px;
}

.testimonials .testimonial-item p {
  font-size: 15px;
  font-style: italic;
  margin: 0 0 20px 0;
}

.testimonials .testimonial-item .profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonials .testimonial-item .profile .testimonial-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.testimonials .testimonial-item .profile .info h4 i {
  font-size: 14px;
  color: var(--accent-color);
  margin-left: 4px;
}

.testimonials .testimonial-item .profile .info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 20px;
  border-radius: 4px;
}

@media (max-width: 1199.98px) {
  .testimonials .testimonial-item {
    margin: 0;
  }
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-2 .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-2 .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-2 .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact-2 .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-2 .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

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

.contact-2 .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact-2 .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-2 .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact-2 .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact-2 .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact-2 .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact-2 .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact-2 .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-2 .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact-2 .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-2 .contact-form-wrapper .loading,
.contact-2 .contact-form-wrapper .error-message,
.contact-2 .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact-2 .form-container-overlap {
    margin-top: -120px;
  }

  .contact-2 .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact-2 .contact-info-box {
    margin-bottom: 20px;
  }

  .contact-2 .form-container-overlap {
    margin-top: -100px;
  }

  .contact-2 .contact-form-wrapper {
    padding: 25px;
  }

  .contact-2 .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact-2 .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact-2 .form-container-overlap {
    margin-top: -80px;
  }

  .contact-2 .contact-form-wrapper {
    padding: 20px;
  }

  .contact-2 .btn-submit {
    width: 100%;
  }

  .contact-2 .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  padding: 160px 0 96px;
  background-color: var(--background-color);
}

.hero-2 .hero-content {
  max-width: 640px;
  margin: 0 auto;
}

.hero-2 .hero-content .hero-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-color);
  margin-bottom: 1.75rem;
}

.hero-2 .hero-content h1 {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--heading-color);
  margin-bottom: 1.75rem;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .hero-2 .hero-content h1 {
    font-size: 2.25rem;
  }
}

.hero-2 .hero-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-2 .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-2 .hero-actions .btn-primary-action {
  display: inline-block;
  padding: 12px 36px;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 0;
}

.hero-2 .hero-actions .btn-primary-action:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-2 .hero-actions .btn-video {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--default-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.hero-2 .hero-actions .btn-video i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.hero-2 .hero-actions .btn-video:hover {
  color: var(--accent-color);
}

.hero-2 .hero-image {
  margin-top: 64px;
}

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

.hero-2 .feature-row {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.hero-2 .feature-block {
  padding: 48px 24px;
  text-align: center;
}

.hero-2 .feature-block i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.hero-2 .feature-block h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  letter-spacing: 0.25px;
}

.hero-2 .feature-block p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 992px) {
  .hero-2 {
    padding: 120px 0 64px;
  }

  .hero-2 .hero-image {
    margin-top: 48px;
  }

  .hero-2 .feature-row {
    margin-top: 48px;
    padding-top: 48px;
  }
}

/*--------------------------------------------------------------
# Hero 3 Section
--------------------------------------------------------------*/
.hero-3 {
  padding-top: 60px;
  position: relative;
  padding-bottom: 60px;
}

.hero-3 .hero-content .hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--contrast-color) 10%, transparent);
  color: var(--contrast-color);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-3 .hero-content h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-3 .hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  margin-bottom: 32px;
}

.hero-3 .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-3 .hero-actions a {
  min-width: 160px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.hero-3 .hero-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero-3 .hero-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black);
}

.hero-3 .hero-actions .btn-outline {
  border: 1px solid color-mix(in srgb, var(--accent-color) 60%, transparent);
}

.hero-3 .hero-actions .btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.hero-3 .hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-3 .hero-metrics .metric {
  padding: 16px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--contrast-color) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.hero-3 .hero-metrics .metric .value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-3 .hero-metrics .metric .label {
  font-size: 14px;
}

.hero-3 .hero-media {
  position: relative;
}

.hero-3 .hero-media .main-image {
  border-radius: 16px;
  box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color) 25%, transparent);
}

.hero-3 .hero-media .hero-card {
  position: absolute;
  left: 24px;
  bottom: -24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 12px;
  background: var(--surface-color);
  color: var(--default-color);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--default-color) 15%, transparent);
}

.hero-3 .hero-media .hero-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.hero-3 .hero-media .hero-card p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
}

.hero-3 .hero-media .hero-card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

@media (max-width: 992px) {
  .hero-3 .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-3 .hero-media .hero-card {
    position: static;
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .hero-3 .hero-content h1 {
    font-size: 44px;
  }

  .hero-3 .hero-actions {
    flex-direction: column;
  }

  .hero-3 .hero-actions a {
    width: 100%;
  }

  .hero-3 .hero-metrics {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Services 3 Section
--------------------------------------------------------------*/
.services-3 {
  --panel-radius: 18px;
}

.services-3 .intro-panel {
  height: 100%;
  padding: 34px;
  border-radius: var(--panel-radius);
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color) 12%, var(--surface-color)), var(--surface-color));
  border: 1px solid color-mix(in srgb, var(--accent-color) 24%, transparent);
}

.services-3 .intro-panel .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 14px;
}

.services-3 .intro-panel h3 {
  font-size: 30px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.services-3 .intro-panel p {
  margin-bottom: 22px;
  color: color-mix(in srgb, var(--default-color) 84%, transparent);
  line-height: 1.7;
}

.services-3 .intro-panel .intro-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.services-3 .intro-panel .intro-link i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.services-3 .intro-panel .intro-link:hover i {
  transform: translateX(4px);
}

.services-3 .service-list-wrap {
  display: grid;
  gap: 16px;
}

.services-3 .service-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.services-3 .service-item .service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color) 14%, transparent);
  transition: all 0.3s ease;
}

.services-3 .service-item .service-content h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.services-3 .service-item .service-content p {
  margin-bottom: 10px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color) 82%, transparent);
}

.services-3 .service-item .service-content .service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  position: relative;
}

.services-3 .service-item .service-content .service-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.services-3 .service-item:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-color) 45%, transparent);
  box-shadow: 0 16px 28px color-mix(in srgb, var(--default-color) 12%, transparent);
}

.services-3 .service-item:hover .service-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services-3 .service-item:hover .service-link::after {
  width: 100%;
}

@media (max-width: 992px) {
  .services-3 .intro-panel {
    padding: 28px;
  }

  .services-3 .intro-panel h3 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .services-3 .service-item {
    flex-direction: column;
    gap: 14px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--heading-color), transparent 95%) 100%);
  position: relative;
  overflow: hidden;
}

.call-to-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/maison.jpg");
  background-size: 100%;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.5;
  z-index: 1;
}

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

.call-to-action .cta-wrapper {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 60px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

@media (max-width: 768px) {
  .call-to-action .cta-wrapper {
    padding: 40px 30px;
  }
}

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

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

.call-to-action .cta-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.call-to-action .cta-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.call-to-action .cta-stats .stat-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-2px);
}

.call-to-action .cta-stats .stat-item i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.call-to-action .cta-stats .stat-item .stat-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.call-to-action .cta-stats .stat-item .stat-content .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.call-to-action .cta-stats .stat-item .stat-content .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 576px) {
  .call-to-action .cta-stats .row {
    flex-direction: column;
  }

  .call-to-action .cta-stats .stat-item {
    text-align: center;
    flex-direction: column;
    gap: 10px;
  }
}

.call-to-action .cta-actions {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.call-to-action .cta-actions .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.call-to-action .cta-actions .action-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.call-to-action .cta-actions .action-buttons .btn i {
  font-size: 1.2rem;
}

.call-to-action .cta-actions .action-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.call-to-action .cta-actions .action-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.call-to-action .cta-actions .action-buttons .btn.btn-outline {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
}

.call-to-action .cta-actions .action-buttons .btn.btn-outline:hover {
  background: transparent;
  transform: translateY(-2px);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.call-to-action .cta-actions .contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.call-to-action .cta-actions .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.call-to-action .cta-actions .contact-info .contact-item i {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-top: 3px;
  flex-shrink: 0;
}

.call-to-action .cta-actions .contact-info .contact-item div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.call-to-action .cta-actions .contact-info .contact-item div strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color);
}

.call-to-action .cta-actions .contact-info .contact-item div span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.4;
}

@media (max-width: 992px) {
  .call-to-action .cta-actions {
    gap: 30px;
    margin-top: 30px;
  }
}



/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}

.service-details .service-sidebar .service-overview {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 24px;
}

.service-details .service-sidebar .service-overview .overview-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-details .service-sidebar .service-overview .overview-header i {
  font-size: 24px;
}

.service-details .service-sidebar .service-overview .overview-header h3 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .service-overview .overview-content {
  padding: 32px;
}

.service-details .service-sidebar .service-overview .overview-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-overview .overview-content p {
  margin-bottom: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.7;
}

.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s;
  text-align: center;
  width: 100%;
}

.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

.service-details .service-sidebar .key-benefits {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .key-benefits h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 16px;
}

.service-details .service-sidebar .key-benefits h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-sidebar .key-benefits ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.service-details .service-sidebar .key-benefits ul li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 15px;
}

.service-details .service-sidebar .key-benefits ul li:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .key-benefits ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
  flex-shrink: 0;
}

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

.service-details .service-sidebar .contact-card .contact-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-details .service-sidebar .contact-card .contact-header i {
  font-size: 24px;
}

.service-details .service-sidebar .contact-card .contact-header h4 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .contact-card .contact-info {
  padding: 32px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-card .contact-info .info-row i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 16px;
  width: 44px;
  height: 44px;
  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 .service-sidebar .contact-card .contact-info .info-row div span {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 4px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 15px;
}

.service-details .service-content .image-gallery {
  margin-bottom: 40px;
}

.service-details .service-content .image-gallery .service-details-slider {
  border-radius: 8px;
  overflow: hidden;
}

.service-details .service-content .image-gallery .service-details-slider img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination {
  bottom: 20px;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--contrast-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 5px;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev {
  width: 44px;
  height: 44px;
  background: var(--contrast-color);
  border-radius: 50%;
  opacity: 0;
  transition: 0.3s;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next::after,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev::after {
  font-size: 18px;
  color: var(--accent-color);
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next:hover,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev:hover {
  opacity: 1;
}

.service-details .service-content .image-gallery .service-details-slider:hover .swiper-button-next,
.service-details .service-content .image-gallery .service-details-slider:hover .swiper-button-prev {
  opacity: 0.8;
}

.service-details .service-content .section-header {
  margin-bottom: 24px;
}

.service-details .service-content .section-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-details .service-content .section-header .divider {
  width: 48px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-content .details-content {
  margin-bottom: 40px;
}

.service-details .service-content .details-content p {
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
  font-size: 15px;
}

.service-details .service-content .details-content p:last-child {
  margin-bottom: 0;
}

.service-details .service-content .service-features {
  margin-bottom: 40px;
}

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

.service-details .service-content .service-features .feature-card:hover {
  border-color: var(--accent-color);
}

.service-details .service-content .service-features .feature-card:hover .icon-wrapper {
  background: var(--accent-color);
}

.service-details .service-content .service-features .feature-card:hover .icon-wrapper i {
  color: var(--contrast-color);
}

.service-details .service-content .service-features .feature-card .icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  margin-bottom: 16px;
  transition: 0.3s;
}

.service-details .service-content .service-features .feature-card .icon-wrapper i {
  font-size: 24px;
  color: var(--accent-color);
  transition: 0.3s;
}

.service-details .service-content .service-features .feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-details .service-content .service-features .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

.service-details .service-content .implementation-steps .step-container {
  position: relative;
}

.service-details .service-content .implementation-steps .step-container:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 19px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-content .implementation-steps .step-container .step {
  display: flex;
  margin-bottom: 32px;
  position: relative;
}

.service-details .service-content .implementation-steps .step-container .step:last-child {
  margin-bottom: 0;
}

.service-details .service-content .implementation-steps .step-container .step .step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
  border-radius: 50%;
  margin-right: 20px;
  z-index: 2;
  font-size: 14px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content {
  flex: 1;
}

.service-details .service-content .implementation-steps .step-container .step .step-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {

  .service-details .service-sidebar .service-overview .overview-content,
  .service-details .service-sidebar .key-benefits,
  .service-details .service-sidebar .contact-card .contact-info {
    padding: 24px;
  }

  .service-details .service-content .section-header h3 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 95%);
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact .info-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%);
}

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

.contact .info-card .info-card-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.contact .info-card .info-card-body h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.contact .info-card .info-card-body p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2px;
  line-height: 1.6;
}

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

.contact .form-card {
  padding: 32px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 95%);
}

.contact .form-card .form-card-header {
  margin-bottom: 24px;
}

.contact .form-card .form-card-header h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.contact .form-card .form-card-header p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact .form-card .form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact .form-card .form-control {
  height: 40px;
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 6px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact .form-card .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

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

.contact .form-card textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: none;
}

.contact .form-card .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.contact .form-card .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.contact .form-card .btn-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .form-card .btn-submit:active {
  transform: scale(0.98);
}

.contact .map-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 95%);
  height: 280px;
  margin-bottom: 16px;
}

.contact .map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .connect-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 95%);
}

.contact .connect-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.contact .connect-card p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact .connect-card .social-row {
  display: flex;
  gap: 8px;
}

.contact .connect-card .social-row a {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  transition: all 0.2s ease;
}

.contact .connect-card .social-row a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.contact .connect-card .social-row a:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

  .contact .map-card {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .contact .form-card {
    padding: 24px 20px;
  }

  .contact .form-card .form-card-header h3 {
    font-size: 18px;
  }

  .contact .map-card {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .contact .info-card {
    padding: 20px;
  }

  .contact .form-card {
    padding: 20px 16px;
  }

  .contact .form-card .btn-submit {
    width: 100%;
  }

  .contact .connect-card {
    padding: 20px;
  }

  .contact .map-card {
    height: 180px;
  }
}

.clients-2 {
  padding: 30px 0;
  
  .clients-wrapper {
    position: relative;
    padding: 60px 0;
    
    &::before,
    &::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 100px;
      z-index: 2;
      pointer-events: none;
    }

    &::before {
      left: 0;
      background: linear-gradient(to right, var(--background-color), transparent);
    }

    &::after {
      right: 0;
      background: linear-gradient(to left, var(--background-color), transparent);
    }
  }

  .clients-track {
    display: flex;
    gap: 30px;
    padding: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    
    &::-webkit-scrollbar {
      display: none;
    }
  }

  .client-logo {
    flex: 0 0 auto;
    width: 180px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--surface-color);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    img {
      max-width: 100%;
      max-height: 80px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.6;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    &:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color) 15%, transparent);
      background-color: color-mix(in srgb, var(--surface-color) 98%, var(--accent-color));
      
      img {
        filter: grayscale(0);
        opacity: 1;
      }
    }
  }

  @media (max-width: 991px) {
    .client-logo {
      width: 160px;
      height: 120px;
      
      img {
        max-height: 70px;
      }
    }
  }

  @media (max-width: 767px) {
    .client-logo {
      width: 140px;
      height: 100px;
      padding: 15px;
      
      img {
        max-height: 60px;
      }
    }
    
    .clients-track {
      gap: 20px;
      padding: 15px;
    }
  }
}

