@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: "Inter",  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: #313030; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #473d3a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #69a82f; /* 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: #69a82f; /* 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: #69a82f; /* 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: #69a82f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #39312f;
  --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);
}

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

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

.header .logo img {
  max-height: 32px;
  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
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

.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 50%);
  margin-right: 10px;
  transition: 0.3s;
}

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

.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: 5px;
  font-size: 13px;
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 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: 118px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# 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 {
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

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

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

.hero .welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero .welcome p {
  font-size: 24px;
  margin: 0;
}

.hero .content {
  margin-top: 40px;
}

.hero .content .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
  border-radius: 4px;
}

.hero .content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.hero .content .why-box p {
  margin-bottom: 30px;
}

.hero .content .why-box .more-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.hero .content .why-box .more-btn i {
  font-size: 14px;
}

.hero .content .why-box .more-btn:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.hero .content .icon-box {
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}

.hero .content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.hero .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.hero .content .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Standorte Section
--------------------------------------------------------------*/
.standorte .service-item {
  background-color: var(--surface-color);
  padding: 50px 30px;
  margin-top: 36px;
  transition: all ease-in-out 0.3s;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  text-align: center;
}

.standorte .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  margin: 0;
  width: 72px;
  height: 72px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--background-color);
}

.standorte .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

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

.standorte .service-item:hover {
  background: var(--background-color);
}

.standorte .service-item:hover h3 {
  color: var(--accent-color);
}

.standorte .service-item:hover .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.standorte .service-item:hover .icon i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .img {
  border-radius: 8px;
  overflow: hidden;
}

.alt-services .img img {
  transition: 0.6s;
}

.alt-services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 30px;
  transition: all ease-in-out 0.3s;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.alt-services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.alt-services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.alt-services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.alt-services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Slider 5 Section
--------------------------------------------------------------*/
.slider-5 {
  padding-top: 61px;
  background-color: transparent;
  padding-bottom: 60px;
}

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

.slider-5 .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color) 90%, white 15%);
}

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

.slider-5 .swiper-slide {
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-5 .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 80%);
}

@media (max-width: 575px) {
  .slider-5 .swiper-slide {
    min-height: 300px;
  }
}

.slider-5 .swiper-button-prev:after,
.slider-5 .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.slider-5 .content {
  padding: 60px 80px;
  max-width: 900px;
  position: relative;
}

.slider-5 .content a,
.slider-5 .content h2,
.slider-5 .content p {
  color: var(--default-color);
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 .image-wrapper {
  position: relative;
}

.about-3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-3 .image-wrapper .experience-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 1rem 2rem color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.about-3 .image-wrapper .experience-badge .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-3 .image-wrapper .experience-badge .text {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.about-3 .image-wrapper::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  z-index: -1;
}

.about-3 .content-wrapper {
  padding-left: 2rem;
}

.about-3 .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
  border-radius: 3rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.about-3 .content-wrapper .section-badge i {
  font-size: 1rem;
}

.about-3 .content-wrapper .main-heading {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.about-3 .content-wrapper .main-heading .highlight {
  color: var(--accent-color);
  position: relative;
}

.about-3 .content-wrapper .main-heading .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.about-3 .content-wrapper .intro-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  margin-bottom: 2rem;
}

.about-3 .features-timeline {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}

.about-3 .features-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-color), color-mix(in srgb, var(--accent-color) 30%, transparent));
  border-radius: 2px;
}

.about-3 .features-timeline .timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.about-3 .features-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.about-3 .features-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--background-color), 0 0 0 6px color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.about-3 .features-timeline .timeline-item .timeline-marker i {
  color: var(--contrast-color);
  font-size: 1rem;
}

.about-3 .features-timeline .timeline-item .timeline-content {
  padding-left: 1.5rem;
}

.about-3 .features-timeline .timeline-item .timeline-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-3 .features-timeline .timeline-item .timeline-content p {
  font-size: 0.9375rem;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin-bottom: 0;
  line-height: 1.6;
}

.about-3 .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 3rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.about-3 .cta-btn i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.about-3 .cta-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color) 85%, black);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.about-3 .cta-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .about-3 .image-wrapper {
    max-width: 28rem;
    margin: 0 auto 3rem;
  }

  .about-3 .image-wrapper .experience-badge {
    right: 0;
    bottom: 1.5rem;
  }

  .about-3 .content-wrapper {
    padding-left: 0;
  }

  .about-3 .content-wrapper .main-heading {
    font-size: 1.875rem;
  }
}

@media (max-width: 576px) {
  .about-3 .image-wrapper::before {
    display: none;
  }

  .about-3 .image-wrapper .experience-badge {
    padding: 1rem;
  }

  .about-3 .image-wrapper .experience-badge .number {
    font-size: 2rem;
  }

  .about-3 .image-wrapper .experience-badge .text {
    font-size: 0.75rem;
  }

  .about-3 .content-wrapper .main-heading {
    font-size: 1.625rem;
  }

  .about-3 .content-wrapper .intro-text {
    font-size: 1rem;
  }

  .about-3 .features-timeline .timeline-item .timeline-marker {
    width: 2rem;
    height: 2rem;
  }

  .about-3 .features-timeline .timeline-item .timeline-marker i {
    font-size: 0.875rem;
  }

  .about-3 .features-timeline .timeline-item .timeline-content h4 {
    font-size: 1rem;
  }

  .about-3 .features-timeline .timeline-item .timeline-content p {
    font-size: 0.875rem;
  }

  .about-3 .cta-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
}

/*--------------------------------------------------------------
# About 4 Section
--------------------------------------------------------------*/
.about-4 .content-wrapper {
  padding-right: 24px;
}

@media (max-width: 992px) {
  .about-4 .content-wrapper {
    padding-right: 0;
    margin-bottom: 48px;
  }
}

.about-4 .section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.about-4 h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .about-4 h2 {
    font-size: 2rem;
  }
}

.about-4 .lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
}

.about-4 .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  padding: 32px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .about-4 .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
}

.about-4 .stat-item {
  text-align: center;
}

.about-4 .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .about-4 .stat-item .stat-number {
    font-size: 2rem;
  }
}

.about-4 .stat-item .stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about-4 .features-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.about-4 .feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-4 .feature-item .feature-icon {
  flex-shrink: 0;
  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;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about-4 .feature-item .feature-content {
  flex: 1;
}

.about-4 .feature-item .feature-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.about-4 .feature-item .feature-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about-4 .cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.about-4 .btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-4 .btn i {
  transition: transform 0.3s ease;
}

.about-4 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.about-4 .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%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about-4 .btn-primary:hover i {
  transform: translateX(4px);
}

.about-4 .btn-secondary {
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
}

.about-4 .btn-secondary:hover {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.about-4 .image-stack {
  position: relative;
  height: 600px;
}

@media (max-width: 992px) {
  .about-4 .image-stack {
    height: 500px;
  }
}

@media (max-width: 576px) {
  .about-4 .image-stack {
    height: 400px;
  }
}

.about-4 .image-card {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
}

.about-4 .image-card img {
  width: 100%;
}

.about-4 .image-primary {
  top: 0;
  right: 0;
  z-index: 2;
}

.about-4 .floating-badge {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 4;
  background: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .about-4 .floating-badge {
    padding: 16px;
    right: 50%;
    transform: translate(50%, -50%);
  }
}

.about-4 .floating-badge .badge-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 8px;
  color: var(--contrast-color);
  font-size: 1.5rem;
}

.about-4 .floating-badge .badge-text .badge-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--heading-color);
  line-height: 1.2;
}

.about-4 .floating-badge .badge-text .badge-subtitle {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 2px;
}

/*--------------------------------------------------------------
# Slider 2 Section
--------------------------------------------------------------*/
.slider-2 {
  overflow: visible;
  margin-bottom: 200px;
}

.slider-2 .section-title {
  text-align: left;
}

.slider-2 .section-title h2 {
  color: color-mix(in srgb, var(--contrast-color), transparent 50%);
  text-transform: uppercase;
  font-size: 20px;
}

.slider-2 .section-title p {
  color: var(--contrast-color);
}

.slider-2 .services-carousel-wrap {
  position: relative;
  margin-bottom: -200px;
}

.slider-2 .swiper-wrapper {
  height: auto;
}

.slider-2 .service-item {
  position: relative;
  overflow: hidden;
}

.slider-2 .service-item:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.3s all ease;
}

.slider-2 .service-item img {
  transition: 0.5s all ease;
  transform: scale(1);
}

.slider-2 .service-item .service-item-contents {
  z-index: 9;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  transition: 0.3s all ease;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

.slider-2 .service-item .service-item-contents .service-item-category {
  color: var(--accent-color);
  text-transform: uppercase;
}

.slider-2 .service-item .service-item-contents .service-item-title {
  color: var(--contrast-color);
  margin-bottom: 0;
}

.slider-2 .service-item:hover:before {
  opacity: 1;
  visibility: visible;
}

.slider-2 .service-item:hover .service-item-contents {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

.slider-2 .service-item:hover img {
  transform: scale(1.2);
}

.slider-2 .navigation-prev,
.slider-2 .navigation-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 46px;
  height: 46px;
  background: var(--contrast-color);
  background-color: none;
  border: none;
  transition: 0.3s all ease;
}

.slider-2 .navigation-prev i,
.slider-2 .navigation-next i {
  font-size: 2rem;
}

.slider-2 .navigation-prev:hover,
.slider-2 .navigation-next:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.slider-2 .navigation-prev {
  left: 10px;
}

.slider-2 .navigation-next {
  right: 10px;
}

.slider-2 .swiper {
  padding-bottom: 50px;
}

.slider-2 .swiper-pagination {
  bottom: 0px;
}

.slider-2 .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 20px;
  height: 4px;
  background-color: color-mix(in srgb, var(--background-color), transparent 80%) !important;
  opacity: 1;
}

.slider-2 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}

/*--------------------------------------------------------------
# Slider 3 Section
--------------------------------------------------------------*/
.slider-3 {
  padding-top: 60px;
  background-color: transparent;
  padding-bottom: 60px;
}

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

.slider-3 .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color) 90%, white 15%);
}

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

.slider-3 .swiper-slide {
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-3 .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 80%);
}

@media (max-width: 575px) {
  .slider-3 .swiper-slide {
    min-height: 300px;
  }
}

.slider-3 .swiper-button-prev:after,
.slider-3 .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.slider-3 .content {
  padding: 60px 80px;
  max-width: 900px;
  position: relative;
}

.slider-3 .content a,
.slider-3 .content h2,
.slider-3 .content p {
  color: var(--default-color);
}

/*--------------------------------------------------------------
# About 5 Section
--------------------------------------------------------------*/
.about-5 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-5 .content-block {
  padding-right: 24px;
}

.about-5 .content-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-5 .content-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 48px;
}

.about-5 .stats-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
  padding: 32px 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%);
}

.about-5 .stat-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.about-5 .stat-number {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-color);
}

.about-5 .stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about-5 .stat-divider {
  width: 1px;
  height: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-5 .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.about-5 .cta-link:hover {
  gap: 14px;
  color: var(--accent-color);
}

.about-5 .cta-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.about-5 .cta-link:hover i {
  transform: translateX(4px);
}

.about-5 .image-block img {
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.about-5 .features-block {
  padding-left: 16px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about-5 .feature-entry i {
  font-size: 20px;
  color: var(--accent-color);
  margin-bottom: 16px;
  display: block;
}

.about-5 .feature-entry h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-5 .feature-entry p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.about-5 .feature-entry ul {
  padding-top: 15px;
}

.about-5 .minimal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about-5 .minimal-list li {
  font-size: 0.88rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}

.about-5 .minimal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.about-5 .minimal-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .about-5 .content-block {
    padding-right: 0;
    margin-bottom: 16px;
  }

  .about-5 .features-block {
    padding-left: 0;
    border-left: none;
    padding-top: 24px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .about-5 .image-block img {
    max-height: 2%;
  }
}

@media (max-width: 576px) {
  .about-5 {
    padding: 64px 0;
  }

  .about-5 .stats-row {
    gap: 24px;
    flex-wrap: wrap;
  }

  .about-5 .stat-number {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Gallery 2 Section
--------------------------------------------------------------*/
.gallery-2 .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 260px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .gallery-2 .gallery-card {
    height: 280px;
  }
}

.gallery-2 .gallery-card.landscape {
  height: 260px;
}

@media (min-width: 768px) {
  .gallery-2 .gallery-card.landscape {
    height: 280px;
  }
}

.gallery-2 .gallery-card a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-2 .gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-2 .gallery-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-2 .gallery-card .overlay i {
  color: var(--contrast-color);
  font-size: 28px;
  transform: scale(0.6);
  transition: transform 0.3s ease;
}

.gallery-2 .gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-2 .gallery-card:hover .overlay {
  opacity: 1;
}

.gallery-2 .gallery-card:hover .overlay i {
  transform: scale(1);
}

/*--------------------------------------------------------------
# About 12 Section
--------------------------------------------------------------*/
.about-12 .image-wrapper {
  position: relative;
}

.about-12 .image-wrapper img {
  border-radius: 1.5rem;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-12 .image-wrapper .experience-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 1rem 2rem color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.about-12 .image-wrapper .experience-badge .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-12 .image-wrapper .experience-badge .text {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.about-12 .image-wrapper::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent-color);
  border-radius: 1.5rem;
  z-index: -1;
}

.about-12 .content-wrapper {
  padding-left: 2rem;
}

.about-12 .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
  border-radius: 3rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.about-12 .content-wrapper .section-badge i {
  font-size: 1rem;
}

.about-12 .content-wrapper .main-heading {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.about-12 .content-wrapper .main-heading .highlight {
  color: var(--accent-color);
  position: relative;
}

.about-12 .content-wrapper .main-heading .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.about-12 .content-wrapper .intro-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  margin-bottom: 2rem;
}

.about-12 .features-timeline {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}

.about-12 .features-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-color), color-mix(in srgb, var(--accent-color) 30%, transparent));
  border-radius: 2px;
}

.about-12 .features-timeline .timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.about-12 .features-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.about-12 .features-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--background-color), 0 0 0 6px color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.about-12 .features-timeline .timeline-item .timeline-marker i {
  color: var(--contrast-color);
  font-size: 1rem;
}

.about-12 .features-timeline .timeline-item .timeline-content {
  padding-left: 1.5rem;
}

.about-12 .features-timeline .timeline-item .timeline-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-12 .features-timeline .timeline-item .timeline-content p {
  font-size: 0.9375rem;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin-bottom: 0;
  line-height: 1.6;
}

.about-12 .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 3rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.about-12 .cta-btn i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.about-12 .cta-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color) 85%, black);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.about-12 .cta-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .about-12 .image-wrapper {
    max-width: 28rem;
    margin: 0 auto 3rem;
  }

  .about-12 .image-wrapper .experience-badge {
    right: 0;
    bottom: 1.5rem;
  }

  .about-12 .content-wrapper {
    padding-left: 0;
  }

  .about-12 .content-wrapper .main-heading {
    font-size: 1.875rem;
  }
}

@media (max-width: 576px) {
  .about-12 .image-wrapper::before {
    display: none;
  }

  .about-12 .image-wrapper .experience-badge {
    padding: 1rem;
  }

  .about-12 .image-wrapper .experience-badge .number {
    font-size: 2rem;
  }

  .about-12 .image-wrapper .experience-badge .text {
    font-size: 0.75rem;
  }

  .about-12 .content-wrapper .main-heading {
    font-size: 1.625rem;
  }

  .about-12 .content-wrapper .intro-text {
    font-size: 1rem;
  }

  .about-12 .features-timeline .timeline-item .timeline-marker {
    width: 2rem;
    height: 2rem;
  }

  .about-12 .features-timeline .timeline-item .timeline-marker i {
    font-size: 0.875rem;
  }

  .about-12 .features-timeline .timeline-item .timeline-content h4 {
    font-size: 1rem;
  }

  .about-12 .features-timeline .timeline-item .timeline-content p {
    font-size: 0.875rem;
  }

  .about-12 .cta-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
}

/*--------------------------------------------------------------
# Slider 6 Section
--------------------------------------------------------------*/
.slider-6 {
  background-color: transparent;
}

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

.slider-6 .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color) 90%, white 15%);
}

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

.slider-6 .swiper-slide {
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-6 .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 80%);
}

@media (max-width: 575px) {
  .slider-6 .swiper-slide {
    min-height: 300px;
  }
}

.slider-6 .swiper-button-prev:after,
.slider-6 .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.slider-6 .content {
  padding: 60px 80px;
  max-width: 900px;
  position: relative;
}

.slider-6 .content a,
.slider-6 .content h2,
.slider-6 .content p {
  color: var(--default-color);
}

/*--------------------------------------------------------------
# About 6 Section
--------------------------------------------------------------*/
.about-6 .image-wrapper {
  position: relative;
}

.about-6 .image-wrapper img {
  border-radius: 1.5rem;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-6 .image-wrapper .experience-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 1rem 2rem color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.about-6 .image-wrapper .experience-badge .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-6 .image-wrapper .experience-badge .text {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.about-6 .image-wrapper::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent-color);
  border-radius: 1.5rem;
  z-index: -1;
}

.about-6 .content-wrapper {
  padding-left: 2rem;
}

.about-6 .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
  border-radius: 3rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.about-6 .content-wrapper .section-badge i {
  font-size: 1rem;
}

.about-6 .content-wrapper .main-heading {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.about-6 .content-wrapper .main-heading .highlight {
  color: var(--accent-color);
  position: relative;
}

.about-6 .content-wrapper .main-heading .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.about-6 .content-wrapper .intro-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  margin-bottom: 2rem;
  text-align: center;
}

.about-6 .features-timeline {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}

.about-6 .features-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-color), color-mix(in srgb, var(--accent-color) 30%, transparent));
  border-radius: 2px;
}

.about-6 .features-timeline .timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.about-6 .features-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.about-6 .features-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--background-color), 0 0 0 6px color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.about-6 .features-timeline .timeline-item .timeline-marker i {
  color: var(--contrast-color);
  font-size: 1rem;
}

.about-6 .features-timeline .timeline-item .timeline-content {
  padding-left: 1.5rem;
}

.about-6 .features-timeline .timeline-item .timeline-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-6 .features-timeline .timeline-item .timeline-content p {
  font-size: 0.9375rem;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin-bottom: 0;
  line-height: 1.6;
}

.about-6 .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 3rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.about-6 .cta-btn i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.about-6 .cta-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color) 85%, black);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.about-6 .cta-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .about-6 .image-wrapper {
    max-width: 28rem;
    margin: 0 auto 3rem;
  }

  .about-6 .image-wrapper .experience-badge {
    right: 0;
    bottom: 1.5rem;
  }

  .about-6 .content-wrapper {
    padding-left: 0;
  }

  .about-6 .content-wrapper .main-heading {
    font-size: 1.875rem;
  }
}

@media (max-width: 576px) {
  .about-6 .image-wrapper::before {
    display: none;
  }

  .about-6 .image-wrapper .experience-badge {
    padding: 1rem;
  }

  .about-6 .image-wrapper .experience-badge .number {
    font-size: 2rem;
  }

  .about-6 .image-wrapper .experience-badge .text {
    font-size: 0.75rem;
  }

  .about-6 .content-wrapper .main-heading {
    font-size: 1.625rem;
  }

  .about-6 .content-wrapper .intro-text {
    font-size: 1rem;
  }

  .about-6 .features-timeline .timeline-item .timeline-marker {
    width: 2rem;
    height: 2rem;
  }

  .about-6 .features-timeline .timeline-item .timeline-marker i {
    font-size: 0.875rem;
  }

  .about-6 .features-timeline .timeline-item .timeline-content h4 {
    font-size: 1rem;
  }

  .about-6 .features-timeline .timeline-item .timeline-content p {
    font-size: 0.875rem;
  }

  .about-6 .cta-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
}

/*--------------------------------------------------------------
# Cards 2 Section
--------------------------------------------------------------*/
.cards-2 .card-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
}

.cards-2 .card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cards-2 .card-item:hover .card-img img {
  transform: scale(1.1);
}

.cards-2 .card-item:hover .card-img .card-overlay {
  opacity: 1;
  visibility: visible;
}

.cards-2 .card-item:hover .card-img .card-overlay .card-overlay-content {
  transform: translateY(0);
}

.cards-2 .card-item .card-img {
  position: relative;
  overflow: hidden;
}

.cards-2 .card-item .card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cards-2 .card-item .card-img .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cards-2 .card-item .card-img .card-overlay .card-overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
}

.cards-2 .card-item .card-img .card-overlay .card-overlay-content h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cards-2 .card-item .card-img .card-overlay .card-overlay-content p {
  color: var(--contrast-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cards-2 .card-item .card-img .card-overlay .card-overlay-content .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.cards-2 .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(45deg);
}

.cards-2 .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
  font-size: 1.2rem;
}

.cards-2 .card-item .card-content {
  padding: 2rem;
}

.cards-2 .card-item .card-content .card-category {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cards-2 .card-item .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.3;
}

.cards-2 .card-item .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About 7 Section
--------------------------------------------------------------*/
.about-7 .content-wrapper {
  padding-right: 24px;
}

@media (max-width: 992px) {
  .about-7 .content-wrapper {
    padding-right: 0;
    margin-bottom: 48px;
  }
}

.about-7 .section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.about-7 h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .about-7 h2 {
    font-size: 2rem;
  }
}

.about-7 .lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
}

.about-7 .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  padding: 32px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .about-7 .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
}

.about-7 .stat-item {
  text-align: center;
}

.about-7 .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .about-7 .stat-item .stat-number {
    font-size: 2rem;
  }
}

.about-7 .stat-item .stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about-7 .features-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.about-7 .feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-7 .feature-item .feature-icon {
  flex-shrink: 0;
  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;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about-7 .feature-item .feature-content {
  flex: 1;
}

.about-7 .feature-item .feature-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.about-7 .feature-item .feature-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about-7 .cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.about-7 .btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-7 .btn i {
  transition: transform 0.3s ease;
}

.about-7 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.about-7 .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%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about-7 .btn-primary:hover i {
  transform: translateX(4px);
}

.about-7 .btn-secondary {
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
}

.about-7 .btn-secondary:hover {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.about-7 .image-stack {
  position: relative;
  height: 600px;
}

@media (max-width: 992px) {
  .about-7 .image-stack {
    height: 500px;
  }
}

@media (max-width: 576px) {
  .about-7 .image-stack {
    height: 400px;
  }
}

.about-7 .image-card {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
}

.about-7 .image-card img {
  width: 100%;
}

.about-7 .image-primary {
  top: 0;
  right: 0;
  z-index: 2;
}

.about-7 .floating-badge {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 4;
  background: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .about-7 .floating-badge {
    padding: 16px;
    right: 50%;
    transform: translate(50%, -50%);
  }
}

.about-7 .floating-badge .badge-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 8px;
  color: var(--contrast-color);
  font-size: 1.5rem;
}

.about-7 .floating-badge .badge-text .badge-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--heading-color);
  line-height: 1.2;
}

.about-7 .floating-badge .badge-text .badge-subtitle {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 2px;
}

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

.clients-2 .logo-card {
  padding: 24px 16px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  min-height: 88px;
}

.clients-2 .logo-card img {
  max-height: 40px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: all 0.2s ease;
}

.clients-2 .logo-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.clients-2 .logo-card:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/*--------------------------------------------------------------
# Slider 4 Section
--------------------------------------------------------------*/
.slider-4 {
  background-color: transparent;
}

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

.slider-4 .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color) 90%, white 15%);
}

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

.slider-4 .swiper-slide {
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-4 .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 80%);
}

@media (max-width: 575px) {
  .slider-4 .swiper-slide {
    min-height: 300px;
  }
}

.slider-4 .swiper-button-prev:after,
.slider-4 .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.slider-4 .content {
  padding: 60px 80px;
  max-width: 900px;
  position: relative;
}

.slider-4 .content a,
.slider-4 .content h2,
.slider-4 .content p {
  color: var(--default-color);
}

/*--------------------------------------------------------------
# About 8 Section
--------------------------------------------------------------*/
.about-8 .image-wrapper {
  position: relative;
}

.about-8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-8 .image-wrapper .experience-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 1rem 2rem color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.about-8 .image-wrapper .experience-badge .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-8 .image-wrapper .experience-badge .text {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.about-8 .image-wrapper::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  z-index: -1;
}

.about-8 .content-wrapper {
  padding-left: 2rem;
}

.about-8 .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
  border-radius: 3rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.about-8 .content-wrapper .section-badge i {
  font-size: 1rem;
}

.about-8 .content-wrapper .main-heading {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.about-8 .content-wrapper .main-heading .highlight {
  color: var(--accent-color);
  position: relative;
}

.about-8 .content-wrapper .main-heading .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.about-8 .content-wrapper .intro-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  margin-bottom: 2rem;
}

.about-8 .features-timeline {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}

.about-8 .features-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-color), color-mix(in srgb, var(--accent-color) 30%, transparent));
  border-radius: 2px;
}

.about-8 .features-timeline .timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.about-8 .features-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.about-8 .features-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--background-color), 0 0 0 6px color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.about-8 .features-timeline .timeline-item .timeline-marker i {
  color: var(--contrast-color);
  font-size: 1rem;
}

.about-8 .features-timeline .timeline-item .timeline-content {
  padding-left: 1.5rem;
}

.about-8 .features-timeline .timeline-item .timeline-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-8 .features-timeline .timeline-item .timeline-content p {
  font-size: 0.9375rem;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin-bottom: 0;
  line-height: 1.6;
}

.about-8 .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 3rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.about-8 .cta-btn i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.about-8 .cta-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color) 85%, black);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.about-8 .cta-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .about-8 .image-wrapper {
    max-width: 28rem;
    margin: 0 auto 3rem;
  }

  .about-8 .image-wrapper .experience-badge {
    right: 0;
    bottom: 1.5rem;
  }

  .about-8 .content-wrapper {
    padding-left: 0;
  }

  .about-8 .content-wrapper .main-heading {
    font-size: 1.875rem;
  }
}

@media (max-width: 576px) {
  .about-8 .image-wrapper::before {
    display: none;
  }

  .about-8 .image-wrapper .experience-badge {
    padding: 1rem;
  }

  .about-8 .image-wrapper .experience-badge .number {
    font-size: 2rem;
  }

  .about-8 .image-wrapper .experience-badge .text {
    font-size: 0.75rem;
  }

  .about-8 .content-wrapper .main-heading {
    font-size: 1.625rem;
  }

  .about-8 .content-wrapper .intro-text {
    font-size: 1rem;
  }

  .about-8 .features-timeline .timeline-item .timeline-marker {
    width: 2rem;
    height: 2rem;
  }

  .about-8 .features-timeline .timeline-item .timeline-marker i {
    font-size: 0.875rem;
  }

  .about-8 .features-timeline .timeline-item .timeline-content h4 {
    font-size: 1rem;
  }

  .about-8 .features-timeline .timeline-item .timeline-content p {
    font-size: 0.875rem;
  }

  .about-8 .cta-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
}

/*--------------------------------------------------------------
# About 9 Section
--------------------------------------------------------------*/
.about-9 .image-wrapper {
  position: relative;
}

.about-9 .image-wrapper img {
  border-radius: 1.5rem;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-9 .image-wrapper .experience-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 1rem 2rem color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.about-9 .image-wrapper .experience-badge .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-9 .image-wrapper .experience-badge .text {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.about-9 .image-wrapper::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent-color);
  border-radius: 1.5rem;
  z-index: -1;
}

.about-9 .content-wrapper {
  padding-left: 2rem;
}

.about-9 .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
  border-radius: 3rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.about-9 .content-wrapper .section-badge i {
  font-size: 1rem;
}

.about-9 .content-wrapper .main-heading {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.about-9 .content-wrapper .main-heading .highlight {
  color: var(--accent-color);
  position: relative;
}

.about-9 .content-wrapper .main-heading .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.about-9 .content-wrapper .intro-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  margin-bottom: 2rem;
  text-align: center;
}

.about-9 .features-timeline {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}

.about-9 .features-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-color), color-mix(in srgb, var(--accent-color) 30%, transparent));
  border-radius: 2px;
}

.about-9 .features-timeline .timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.about-9 .features-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.about-9 .features-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--background-color), 0 0 0 6px color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.about-9 .features-timeline .timeline-item .timeline-marker i {
  color: var(--contrast-color);
  font-size: 1rem;
}

.about-9 .features-timeline .timeline-item .timeline-content {
  padding-left: 1.5rem;
}

.about-9 .features-timeline .timeline-item .timeline-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-9 .features-timeline .timeline-item .timeline-content p {
  font-size: 0.9375rem;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin-bottom: 0;
  line-height: 1.6;
}

.about-9 .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 3rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.about-9 .cta-btn i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.about-9 .cta-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color) 85%, black);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.about-9 .cta-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .about-9 .image-wrapper {
    max-width: 28rem;
    margin: 0 auto 3rem;
  }

  .about-9 .image-wrapper .experience-badge {
    right: 0;
    bottom: 1.5rem;
  }

  .about-9 .content-wrapper {
    padding-left: 0;
  }

  .about-9 .content-wrapper .main-heading {
    font-size: 1.875rem;
  }
}

@media (max-width: 576px) {
  .about-9 .image-wrapper::before {
    display: none;
  }

  .about-9 .image-wrapper .experience-badge {
    padding: 1rem;
  }

  .about-9 .image-wrapper .experience-badge .number {
    font-size: 2rem;
  }

  .about-9 .image-wrapper .experience-badge .text {
    font-size: 0.75rem;
  }

  .about-9 .content-wrapper .main-heading {
    font-size: 1.625rem;
  }

  .about-9 .content-wrapper .intro-text {
    font-size: 1rem;
  }

  .about-9 .features-timeline .timeline-item .timeline-marker {
    width: 2rem;
    height: 2rem;
  }

  .about-9 .features-timeline .timeline-item .timeline-marker i {
    font-size: 0.875rem;
  }

  .about-9 .features-timeline .timeline-item .timeline-content h4 {
    font-size: 1rem;
  }

  .about-9 .features-timeline .timeline-item .timeline-content p {
    font-size: 0.875rem;
  }

  .about-9 .cta-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
}

/*--------------------------------------------------------------
# Slider 7 Section
--------------------------------------------------------------*/
.slider-7 {
  padding-top: 60px;
  background-color: transparent;
  padding-bottom: 60px;
}

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

.slider-7 .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color) 90%, white 15%);
}

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

.slider-7 .swiper-slide {
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-7 .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 80%);
}

@media (max-width: 575px) {
  .slider-7 .swiper-slide {
    min-height: 300px;
  }
}

.slider-7 .swiper-button-prev:after,
.slider-7 .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.slider-7 .content {
  padding: 60px 80px;
  max-width: 900px;
  position: relative;
}

.slider-7 .content a,
.slider-7 .content h2,
.slider-7 .content p {
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
}

.services .service-item {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.services .service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.services .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.services .service-image .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.services .service-image .service-overlay i {
  font-size: 3rem;
  color: var(--contrast-color);
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.services .service-image:hover img {
  transform: scale(1.05);
}

.services .service-image:hover .service-overlay {
  opacity: 0.9;
}

.services .service-image:hover .service-overlay i {
  transform: scale(1);
}

.services .service-content {
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.services .service-content h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.services .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.services .service-content .service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.services .service-content .service-features .feature-item {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--default-color);
}

.services .service-content .service-features .feature-item i {
  color: var(--accent-color);
  font-size: 0.75rem;
  margin-right: 8px;
}

.services .service-content .service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 5%);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
}

.services .service-content .service-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

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

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

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

  .services .service-image {
    height: 200px;
  }

  .services .service-content {
    padding: 25px 20px;
  }

  .services .service-content h3 {
    font-size: 1.3rem;
  }

  .services .service-content p {
    font-size: 0.9rem;
  }

  .services .service-content .service-features .feature-item {
    font-size: 0.8rem;
  }
}

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

  .services .service-features .feature-item {
    justify-content: flex-start;
  }
}

/*--------------------------------------------------------------
# Slider 8 Section
--------------------------------------------------------------*/
.slider-8 {
  padding-top: 60px;
  background-color: transparent;
  padding-bottom: 60px;
}

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

.slider-8 .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color) 90%, white 15%);
}

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

.slider-8 .swiper-slide {
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-8 .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 80%);
}

@media (max-width: 575px) {
  .slider-8 .swiper-slide {
    min-height: 300px;
  }
}

.slider-8 .swiper-button-prev:after,
.slider-8 .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.slider-8 .content {
  padding: 60px 80px;
  max-width: 900px;
  position: relative;
}

.slider-8 .content a,
.slider-8 .content h2,
.slider-8 .content p {
  color: var(--default-color);
}

/*--------------------------------------------------------------
# About 10 Section
--------------------------------------------------------------*/
.about-10 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-10 .content-block {
  padding-right: 24px;
}

.about-10 .content-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-10 .content-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 48px;
}

.about-10 .stats-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
  padding: 32px 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%);
}

.about-10 .stat-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.about-10 .stat-number {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-color);
}

.about-10 .stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about-10 .stat-divider {
  width: 1px;
  height: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-10 .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.about-10 .cta-link:hover {
  gap: 14px;
  color: var(--accent-color);
}

.about-10 .cta-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.about-10 .cta-link:hover i {
  transform: translateX(4px);
}

.about-10 .image-block img {
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.about-10 .features-block {
  padding-left: 16px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about-10 .feature-entry i {
  font-size: 20px;
  color: var(--accent-color);
  margin-bottom: 16px;
  display: block;
}

.about-10 .feature-entry h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-10 .feature-entry p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.about-10 .feature-entry ul {
  padding-top: 15px;
}

.about-10 .minimal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about-10 .minimal-list li {
  font-size: 0.88rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}

.about-10 .minimal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.about-10 .minimal-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .about-10 .content-block {
    padding-right: 0;
    margin-bottom: 16px;
  }

  .about-10 .features-block {
    padding-left: 0;
    border-left: none;
    padding-top: 24px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .about-10 .image-block img {
    max-height: 2%;
  }
}

@media (max-width: 576px) {
  .about-10 {
    padding: 64px 0;
  }

  .about-10 .stats-row {
    gap: 24px;
    flex-wrap: wrap;
  }

  .about-10 .stat-number {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 260px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .gallery .gallery-card {
    height: 280px;
  }
}

.gallery .gallery-card.landscape {
  height: 260px;
}

@media (min-width: 768px) {
  .gallery .gallery-card.landscape {
    height: 280px;
  }
}

.gallery .gallery-card a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery .gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery .gallery-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery .gallery-card .overlay i {
  color: var(--contrast-color);
  font-size: 28px;
  transform: scale(0.6);
  transition: transform 0.3s ease;
}

.gallery .gallery-card:hover img {
  transform: scale(1.1);
}

.gallery .gallery-card:hover .overlay {
  opacity: 1;
}

.gallery .gallery-card:hover .overlay i {
  transform: scale(1);
}

/*--------------------------------------------------------------
# About 11 Section
--------------------------------------------------------------*/
.about-11 .image-wrapper {
  position: relative;
}

.about-11 .image-wrapper img {
  border-radius: 1.5rem;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-11 .image-wrapper .experience-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 1rem 2rem color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.about-11 .image-wrapper .experience-badge .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-11 .image-wrapper .experience-badge .text {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.about-11 .image-wrapper::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent-color);
  border-radius: 1.5rem;
  z-index: -1;
}

.about-11 .content-wrapper {
  padding-left: 2rem;
}

.about-11 .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
  border-radius: 3rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.about-11 .content-wrapper .section-badge i {
  font-size: 1rem;
}

.about-11 .content-wrapper .main-heading {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.about-11 .content-wrapper .main-heading .highlight {
  color: var(--accent-color);
  position: relative;
}

.about-11 .content-wrapper .main-heading .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.about-11 .content-wrapper .intro-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  margin-bottom: 2rem;
}

.about-11 .features-timeline {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}

.about-11 .features-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-color), color-mix(in srgb, var(--accent-color) 30%, transparent));
  border-radius: 2px;
}

.about-11 .features-timeline .timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.about-11 .features-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.about-11 .features-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--background-color), 0 0 0 6px color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.about-11 .features-timeline .timeline-item .timeline-marker i {
  color: var(--contrast-color);
  font-size: 1rem;
}

.about-11 .features-timeline .timeline-item .timeline-content {
  padding-left: 1.5rem;
}

.about-11 .features-timeline .timeline-item .timeline-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-11 .features-timeline .timeline-item .timeline-content p {
  font-size: 0.9375rem;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin-bottom: 0;
  line-height: 1.6;
}

.about-11 .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 3rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.about-11 .cta-btn i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.about-11 .cta-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color) 85%, black);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.about-11 .cta-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .about-11 .image-wrapper {
    max-width: 28rem;
    margin: 0 auto 3rem;
  }

  .about-11 .image-wrapper .experience-badge {
    right: 0;
    bottom: 1.5rem;
  }

  .about-11 .content-wrapper {
    padding-left: 0;
  }

  .about-11 .content-wrapper .main-heading {
    font-size: 1.875rem;
  }
}

@media (max-width: 576px) {
  .about-11 .image-wrapper::before {
    display: none;
  }

  .about-11 .image-wrapper .experience-badge {
    padding: 1rem;
  }

  .about-11 .image-wrapper .experience-badge .number {
    font-size: 2rem;
  }

  .about-11 .image-wrapper .experience-badge .text {
    font-size: 0.75rem;
  }

  .about-11 .content-wrapper .main-heading {
    font-size: 1.625rem;
  }

  .about-11 .content-wrapper .intro-text {
    font-size: 1rem;
  }

  .about-11 .features-timeline .timeline-item .timeline-marker {
    width: 2rem;
    height: 2rem;
  }

  .about-11 .features-timeline .timeline-item .timeline-marker i {
    font-size: 0.875rem;
  }

  .about-11 .features-timeline .timeline-item .timeline-content h4 {
    font-size: 1rem;
  }

  .about-11 .features-timeline .timeline-item .timeline-content p {
    font-size: 0.875rem;
  }

  .about-11 .cta-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
}

/*--------------------------------------------------------------
# Slider 9 Section
--------------------------------------------------------------*/
.slider-9 {
  padding-top: 60px;
  background-color: transparent;
  padding-bottom: 60px;
}

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

.slider-9 .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color) 90%, white 15%);
}

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

.slider-9 .swiper-slide {
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-9 .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 80%);
}

@media (max-width: 575px) {
  .slider-9 .swiper-slide {
    min-height: 300px;
  }
}

.slider-9 .swiper-button-prev:after,
.slider-9 .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.slider-9 .content {
  padding: 60px 80px;
  max-width: 900px;
  position: relative;
}

.slider-9 .content a,
.slider-9 .content h2,
.slider-9 .content p {
  color: var(--default-color);
}

/*--------------------------------------------------------------
# About 13 Section
--------------------------------------------------------------*/
.about-13 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-13 .content-block {
  padding-right: 24px;
}

.about-13 .content-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-13 .content-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 48px;
}

.about-13 .stats-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
  padding: 32px 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%);
}

.about-13 .stat-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.about-13 .stat-number {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-color);
}

.about-13 .stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about-13 .stat-divider {
  width: 1px;
  height: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-13 .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.about-13 .cta-link:hover {
  gap: 14px;
  color: var(--accent-color);
}

.about-13 .cta-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.about-13 .cta-link:hover i {
  transform: translateX(4px);
}

.about-13 .image-block img {
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.about-13 .features-block {
  padding-left: 16px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about-13 .feature-entry i {
  font-size: 20px;
  color: var(--accent-color);
  margin-bottom: 16px;
  display: block;
}

.about-13 .feature-entry h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-13 .feature-entry p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.about-13 .feature-entry ul {
  padding-top: 15px;
}

.about-13 .minimal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about-13 .minimal-list li {
  font-size: 0.88rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}

.about-13 .minimal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.about-13 .minimal-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .about-13 .content-block {
    padding-right: 0;
    margin-bottom: 16px;
  }

  .about-13 .features-block {
    padding-left: 0;
    border-left: none;
    padding-top: 24px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .about-13 .image-block img {
    max-height: 2%;
  }
}

@media (max-width: 576px) {
  .about-13 {
    padding: 64px 0;
  }

  .about-13 .stats-row {
    gap: 24px;
    flex-wrap: wrap;
  }

  .about-13 .stat-number {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Gallery 3 Section
--------------------------------------------------------------*/
.gallery-3 .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 260px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .gallery-3 .gallery-card {
    height: 280px;
  }
}

.gallery-3 .gallery-card.landscape {
  height: 260px;
}

@media (min-width: 768px) {
  .gallery-3 .gallery-card.landscape {
    height: 280px;
  }
}

.gallery-3 .gallery-card a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-3 .gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-3 .gallery-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-3 .gallery-card .overlay i {
  color: var(--contrast-color);
  font-size: 28px;
  transform: scale(0.6);
  transition: transform 0.3s ease;
}

.gallery-3 .gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-3 .gallery-card:hover .overlay {
  opacity: 1;
}

.gallery-3 .gallery-card:hover .overlay i {
  transform: scale(1);
}

/*--------------------------------------------------------------
# About 14 Section
--------------------------------------------------------------*/
.about-14 .image-wrapper {
  position: relative;
}

.about-14 .image-wrapper img {
  border-radius: 1.5rem;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-14 .image-wrapper .experience-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 1rem 2rem color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.about-14 .image-wrapper .experience-badge .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-14 .image-wrapper .experience-badge .text {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.about-14 .image-wrapper::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent-color);
  border-radius: 1.5rem;
  z-index: -1;
}

.about-14 .content-wrapper {
  padding-left: 2rem;
}

.about-14 .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
  border-radius: 3rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.about-14 .content-wrapper .section-badge i {
  font-size: 1rem;
}

.about-14 .content-wrapper .main-heading {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.about-14 .content-wrapper .main-heading .highlight {
  color: var(--accent-color);
  position: relative;
}

.about-14 .content-wrapper .main-heading .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.about-14 .content-wrapper .intro-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  margin-bottom: 2rem;
}

.about-14 .features-timeline {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}

.about-14 .features-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-color), color-mix(in srgb, var(--accent-color) 30%, transparent));
  border-radius: 2px;
}

.about-14 .features-timeline .timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.about-14 .features-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.about-14 .features-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--background-color), 0 0 0 6px color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.about-14 .features-timeline .timeline-item .timeline-marker i {
  color: var(--contrast-color);
  font-size: 1rem;
}

.about-14 .features-timeline .timeline-item .timeline-content {
  padding-left: 1.5rem;
}

.about-14 .features-timeline .timeline-item .timeline-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-14 .features-timeline .timeline-item .timeline-content p {
  font-size: 0.9375rem;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin-bottom: 0;
  line-height: 1.6;
}

.about-14 .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 3rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.about-14 .cta-btn i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.about-14 .cta-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color) 85%, black);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.about-14 .cta-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .about-14 .image-wrapper {
    max-width: 28rem;
    margin: 0 auto 3rem;
  }

  .about-14 .image-wrapper .experience-badge {
    right: 0;
    bottom: 1.5rem;
  }

  .about-14 .content-wrapper {
    padding-left: 0;
  }

  .about-14 .content-wrapper .main-heading {
    font-size: 1.875rem;
  }
}

@media (max-width: 576px) {
  .about-14 .image-wrapper::before {
    display: none;
  }

  .about-14 .image-wrapper .experience-badge {
    padding: 1rem;
  }

  .about-14 .image-wrapper .experience-badge .number {
    font-size: 2rem;
  }

  .about-14 .image-wrapper .experience-badge .text {
    font-size: 0.75rem;
  }

  .about-14 .content-wrapper .main-heading {
    font-size: 1.625rem;
  }

  .about-14 .content-wrapper .intro-text {
    font-size: 1rem;
  }

  .about-14 .features-timeline .timeline-item .timeline-marker {
    width: 2rem;
    height: 2rem;
  }

  .about-14 .features-timeline .timeline-item .timeline-marker i {
    font-size: 0.875rem;
  }

  .about-14 .features-timeline .timeline-item .timeline-content h4 {
    font-size: 1rem;
  }

  .about-14 .features-timeline .timeline-item .timeline-content p {
    font-size: 0.875rem;
  }

  .about-14 .cta-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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