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

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

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

.accent-background {
  --background-color: #136ad5;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #acd0fc;
  --surface-color: #4188de;
  --contrast-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

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

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

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

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

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

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

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

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

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

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

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

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

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

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

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

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 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 h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

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

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

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

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

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

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

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 4px;
  height: 40px;
  background-color: var(--accent-color);
  margin: 0 4px;
}

#preloader div:nth-child(1) {
  animation: animate-preloader 1s ease-in-out -0.45s infinite;
}

#preloader div:nth-child(2) {
  animation: animate-preloader 1s ease-in-out -0.3s infinite;
}

#preloader div:nth-child(3) {
  animation: animate-preloader 1s ease-in-out -0.15s infinite;
}

#preloader div:nth-child(4) {
  animation: animate-preloader 1s infinite;
}

@keyframes animate-preloader {

  0%,
  100% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(1);
  }
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  position: relative;
  padding-top: 80px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
  padding-bottom: 60px;
}

.hero-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

.hero-2 .hero-content {
  position: relative;
  z-index: 1;
}

.hero-2 .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

@media (max-width: 992px) {
  .hero-2 .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero-2 .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-2 .hero-content .hero-buttons {
    justify-content: center;
  }
}

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

.hero-2 .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero-2 .company-badge i {
  font-size: 1.25rem;
}

.hero-2 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-2 .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero-2 .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.hero-2 .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero-2 .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

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

.hero-2 .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero-2 .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero-2 .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero-2 .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero-2 .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-2 .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero-2 .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero-2 .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero-2 .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero-2 .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero-2 .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero-2 .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero-2 .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero-2 .stat-item .stat-content {
  flex-grow: 1;
}

.hero-2 .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero-2 .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero-2 .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

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

.about-6 .about-image-wrapper {
  position: relative;
  margin-bottom: 3rem;
}

.about-6 .about-image-wrapper img {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-6 .about-image-wrapper .mission-card {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  background-color: var(--accent-color);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about-6 .about-image-wrapper .mission-card .mission-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-6 .about-image-wrapper .mission-card .mission-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.about-6 .about-image-wrapper .mission-card .mission-content h4 {
  font-size: 1.25rem;
  color: var(--contrast-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.about-6 .about-image-wrapper .mission-card .mission-content p {
  font-size: 0.95rem;
  color: var(--contrast-color);
  margin-bottom: 0;
}

.about-6 .about-content .tag-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

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

@media (max-width: 991px) {
  .about-6 .about-content h2 {
    font-size: 1.75rem;
  }
}

.about-6 .about-content .about-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

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

.about-6 .about-content .values-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
}

.about-6 .about-content .values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-6 .about-content .values-list .value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: color-mix(in srgb, var(--background-color), var(--default-color) 5%);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.about-6 .about-content .values-list .value-item:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.about-6 .about-content .values-list .value-item .value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.about-6 .about-content .values-list .value-item .value-icon i {
  color: var(--contrast-color);
  font-size: 14px;
}

.about-6 .about-content .values-list .value-item .value-text {
  font-weight: 500;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .about-6 .about-content {
    margin-top: 3rem;
  }
}

/*--------------------------------------------------------------
# Services 10 Section
--------------------------------------------------------------*/
.services-10 {
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  position: relative;
  overflow: hidden;
}

.services-10::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/abstract-bg-3.webp") center/cover;
  opacity: 0.03;
  z-index: 1;
}

.services-10 .container {
  position: relative;
  z-index: 2;
}

.services-10 .service-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  box-shadow: 0 10px 40px color-mix(in srgb, var(--heading-color), transparent 90%);
}

.services-10 .service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services-10 .service-card:hover .service-bg {
  opacity: 1;
  transform: scale(1.2) rotate(15deg);
}

.services-10 .service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 30%));
}

.services-10 .service-card:hover .btn-cta {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 30%));
  transform: translateX(5px);
}

.services-10 .service-card.featured {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 95%));
  border: 2px solid var(--accent-color);
  transform: scale(1.02);
}

.services-10 .service-card.featured .service-icon {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
  width: 80px;
  height: 80px;
}

.services-10 .service-card.featured .service-icon i {
  font-size: 40px;
}

.services-10 .service-card.featured .service-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.services-10 .service-card.featured .service-meta {
  margin: 25px 0;
}

.services-10 .service-card.compact {
  padding: 30px 25px;
}

.services-10 .service-card.compact .service-icon {
  width: 60px;
  height: 60px;
}

.services-10 .service-card.compact .service-icon i {
  font-size: 28px;
}

.services-10 .service-card .service-bg {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

.services-10 .service-card .service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), var(--accent-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services-10 .service-card .service-icon i {
  font-size: 32px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.services-10 .service-card .service-content {
  position: relative;
  z-index: 2;
}

.services-10 .service-card .service-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.services-10 .service-card .service-content h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.services-10 .service-card .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
}

.services-10 .service-card .service-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0 25px;
  flex-wrap: wrap;
}

.services-10 .service-card .service-meta .badge {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-10 .service-card .service-meta .badge.popular {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.services-10 .service-card .service-meta .price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 16px;
}

.services-10 .service-card .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), var(--accent-color));
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services-10 .service-card .btn-cta:hover {
  color: var(--contrast-color);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services-10 .service-card .btn-cta i {
  transition: all 0.3s ease;
}

.services-10 .stats-highlight {
  background: var(--accent-color);
  border-radius: 25px;
  padding: 50px 30px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.services-10 .stats-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 1;
}

.services-10 .stats-highlight .row {
  position: relative;
  z-index: 2;
}

.services-10 .stats-highlight .stat-item {
  text-align: center;
  color: var(--contrast-color);
}

.services-10 .stats-highlight .stat-item .stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--contrast-color);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--contrast-color), color-mix(in srgb, var(--accent-color), var(--contrast-color) 70%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .services-10 .stats-highlight .stat-item .stat-number {
    font-size: 36px;
  }
}

.services-10 .stats-highlight .stat-item .stat-label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .services-10 .stats-highlight .stat-item .stat-label {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .services-10 .service-card {
    padding: 30px 25px;
    margin-bottom: 30px;
  }

  .services-10 .service-card.featured {
    transform: none;
    margin-bottom: 30px;
  }

  .services-10 .service-card.featured .service-content h3 {
    font-size: 24px;
  }

  .services-10 .service-card .service-icon {
    width: 60px;
    height: 60px;
  }

  .services-10 .service-card .service-icon i {
    font-size: 28px;
  }

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

  .services-10 .stats-highlight {
    padding: 40px 20px;
    margin-top: 40px;
  }
}

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

.features .feature-item {
  margin-bottom: 30px;
  z-index: 1;
}

.features .feature-item .inner-box {
  border-top: 5px solid var(--accent-color);
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 30px 20px;
  background-color: var(--surface-color);
  text-align: center;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.features .feature-item .inner-box:before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background-color: var(--accent-color);
  content: "";
  transition: all 0.3s ease;
  z-index: -1;
}

.features .feature-item .inner-box:hover {
  transform: translateY(-10px);
}

.features .feature-item .inner-box:hover:before {
  height: 100%;
}

.features .feature-item .inner-box:hover .title,
.features .feature-item .inner-box:hover .icon,
.features .feature-item .inner-box:hover .title a {
  color: var(--contrast-color);
}

.features .feature-item .icon {
  display: block;
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.features .feature-item .title {
  margin-bottom: 0;
  transition: all 0.3s ease;
  font-size: 18px;
}

.features .feature-item .title a {
  color: var(--heading-color);
  text-decoration: none;
}

.features .feature-item .title a:hover {
  color: inherit;
}

@media (max-width: 991.98px) {
  .features {
    padding: 50px 0;
  }
}

/*--------------------------------------------------------------
# Clients 2 Section
--------------------------------------------------------------*/
.clients-2 {
  overflow-x: hidden;
  padding: 40px 0;
  /* Responsive adjustments */
}

.clients-2 .clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.clients-2 .clients-slider:not(:last-child) {
  margin-bottom: 20px;
}

.clients-2 .clients-track {
  display: flex;
  width: fit-content;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.clients-2 .clients-track.track-1 {
  animation-name: scroll-left;
}

.clients-2 .clients-track.track-2 {
  animation-name: scroll-right;
}

.clients-2 .clients-track:hover {
  animation-play-state: paused;
}

.clients-2 .clients-slide {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.clients-2 .clients-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--default-color), transparent 96%), transparent);
  transition: 0.5s;
}

.clients-2 .clients-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.clients-2 .clients-slide:hover::before {
  left: 100%;
}

.clients-2 .clients-slide:hover img {
  filter: none;
  opacity: 1;
}

.clients-2 .clients-slide img {
  max-width: 80%;
  max-height: 60%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-2080px);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-2080px);
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .clients-2 .clients-slide {
    width: 180px;
    height: 90px;
    margin: 0 20px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1760px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1760px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

@media (max-width: 767px) {
  .clients-2 .clients-slide {
    width: 150px;
    height: 75px;
    margin: 0 15px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1440px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1440px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact-2 .contact-info-section {
  height: 100%;
}

.contact-2 .contact-info-section .info-header {
  margin-bottom: 40px;
}

.contact-2 .contact-info-section .info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
}

.contact-2 .contact-info-section .info-header h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 2px;
}

.contact-2 .contact-info-section .info-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact-2 .contact-info-section .contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-2 .contact-info-section .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 3%));
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease;
}

.contact-2 .contact-info-section .info-item:hover {
  transform: translateX(10px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact-2 .contact-info-section .info-item:hover .info-icon {
  background-color: var(--accent-color);
}

.contact-2 .contact-info-section .info-item:hover .info-icon i {
  color: var(--contrast-color);
}

.contact-2 .contact-info-section .info-item .info-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.contact-2 .contact-info-section .info-item .info-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact-2 .contact-info-section .info-item .info-content {
  flex: 1;
}

.contact-2 .contact-info-section .info-item .info-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact-2 .contact-info-section .info-item .info-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact-2 .contact-info-section .social-contact {
  padding: 30px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 85%));
  border-radius: 20px;
  text-align: center;
}

.contact-2 .contact-info-section .social-contact h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.contact-2 .contact-info-section .social-contact .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact-2 .contact-info-section .social-contact .social-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--surface-color);
  color: var(--accent-color);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact-2 .contact-info-section .social-contact .social-icons .social-icon:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact-2 .contact-form-wrapper {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--background-color) 50%));
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact-2 .contact-form-wrapper .form-header {
  text-align: center;
  margin-bottom: 35px;
}

.contact-2 .contact-form-wrapper .form-header h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.contact-2 .contact-form-wrapper .form-header p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact-2 .contact-form-wrapper .php-email-form .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-2 .contact-form-wrapper .php-email-form .form-control {
  height: 50px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-2 .contact-form-wrapper .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
  background-color: var(--surface-color);
  outline: none;
}

.contact-2 .contact-form-wrapper .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact-2 .contact-form-wrapper .php-email-form .message-textarea {
  height: 120px;
  resize: vertical;
  font-family: inherit;
}

.contact-2 .contact-form-wrapper .php-email-form .submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  border: none;
  padding: 18px 30px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-2 .contact-form-wrapper .php-email-form .submit-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.5s ease;
}

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

.contact-2 .contact-form-wrapper .php-email-form .submit-btn:hover:before {
  left: 100%;
}

.contact-2 .contact-form-wrapper .php-email-form .submit-btn:hover i {
  transform: translateX(5px);
}

.contact-2 .contact-form-wrapper .php-email-form .submit-btn span {
  position: relative;
  z-index: 1;
}

.contact-2 .contact-form-wrapper .php-email-form .submit-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .contact-2 .contact-info-section {
    margin-bottom: 40px;
  }

  .contact-2 .contact-info-section .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .contact-2 .contact-info-section .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-2 .contact-info-section .info-item {
    padding: 20px;
  }

  .contact-2 .contact-info-section .info-item:hover {
    transform: translateY(-5px);
  }

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

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

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

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

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 100px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 0%), color-mix(in srgb, var(--background-color), var(--accent-color) 4%));
}

.error-404 .error-wrapper {
  position: relative;
  overflow: hidden;
}

.error-404 .error-illustration {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .error-illustration i {
  font-size: 9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}

.error-404 .error-illustration .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.error-404 .error-illustration .circle.circle-1 {
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  animation: float 6s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-2 {
  width: 120px;
  height: 120px;
  background: color-mix(in srgb, var(--heading-color), transparent 85%);
  top: 30%;
  left: 25%;
  animation: float 8s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-3 {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  bottom: 20%;
  right: 30%;
  animation: float 7s ease-in-out infinite reverse;
}

.error-404 .error-content {
  padding: 30px 0;
}

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

.error-404 .error-code {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
}

.error-404 .error-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.error-404 .error-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-404 .error-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.error-404 .error-actions .btn-home,
.error-404 .error-actions .btn-help {
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.error-404 .error-actions .btn-home i,
.error-404 .error-actions .btn-help i {
  font-size: 1.2rem;
}

.error-404 .error-actions .btn-home {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.error-404 .error-actions .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-actions .btn-help {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.error-404 .error-actions .btn-help:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.error-404 .error-suggestions {
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
  border-radius: 12px;
}

.error-404 .error-suggestions h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.error-404 .error-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.error-404 .error-suggestions ul li {
  margin-bottom: 0.8rem;
}

.error-404 .error-suggestions ul li:last-child {
  margin-bottom: 0;
}

.error-404 .error-suggestions ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--default-color);
  font-size: 1.05rem;
  transition: all 0.3s;
}

.error-404 .error-suggestions ul li a i {
  color: var(--accent-color);
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.error-404 .error-suggestions ul li a:hover {
  color: var(--accent-color);
}

.error-404 .error-suggestions ul li a:hover i {
  transform: translateX(3px);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

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

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 992px) {
  .error-404 .error-illustration {
    height: 300px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 70px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 6rem);
  }

  .error-404 .error-title {
    font-size: 1.8rem;
  }

  .error-404 .error-actions {
    flex-direction: column;
  }

  .error-404 .error-actions .btn-home,
  .error-404 .error-actions .btn-help {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .about-subtitle {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--heading-color);
  margin-bottom: 16px;
  display: block;
}

.about-2 .about-title {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--heading-color);
}

.about-2 .about-title span {
  font-size: 32px;
  display: inline-block;
  margin: 8px 0;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

@media (max-width: 991px) {
  .about-2 .about-title {
    font-size: 36px;
  }

  .about-2 .about-title span {
    font-size: 24px;
  }
}

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

.about-2 .about-content p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 24px;
}

.about-2 .about-content .btn-learn-more {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-2 .about-content .btn-learn-more i {
  margin-left: 8px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.about-2 .about-content .btn-learn-more:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about-2 .about-content .btn-learn-more:hover i {
  transform: translateX(5px);
}

.about-2 .about-img {
  text-align: center;
}

.about-2 .about-img img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  max-width: 100%;
  height: auto;
}

.about-2 .about-img .shape-1 {
  position: absolute;
  width: 220px;
  height: 220px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  bottom: -30px;
  right: -30px;
  z-index: 1;
  animation: blobAnimation1 8s ease-in-out infinite;
  transition: all 0.3s ease;
}

.about-2 .about-img .shape-2 {
  position: absolute;
  width: 180px;
  height: 180px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 42% 58% 37% 63%/51% 44% 56% 49%;
  top: -30px;
  left: -30px;
  z-index: 1;
  animation: blobAnimation2 8s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes blobAnimation1 {
  0% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  25% {
    border-radius: 46% 54% 42% 58%/47% 55% 45% 53%;
  }

  50% {
    border-radius: 54% 46% 52% 48%/45% 54% 46% 55%;
  }

  75% {
    border-radius: 42% 58% 37% 63%/51% 44% 56% 49%;
  }

  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
}

@keyframes blobAnimation2 {
  0% {
    border-radius: 42% 58% 37% 63%/51% 44% 56% 49%;
  }

  25% {
    border-radius: 54% 46% 52% 48%/45% 54% 46% 55%;
  }

  50% {
    border-radius: 46% 54% 42% 58%/47% 55% 45% 53%;
  }

  75% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  100% {
    border-radius: 42% 58% 37% 63%/51% 44% 56% 49%;
  }
}

@media (max-width: 991px) {
  .about-2 .about-img {
    margin-top: 40px;
  }

  .about-2 .about-img .shape-1 {
    width: 160px;
    height: 160px;
  }

  .about-2 .about-img .shape-2 {
    width: 140px;
    height: 140px;
  }
}

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

.hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .hero-desc {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .btn {
  padding: 0.75rem 2.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 50px;
}

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

.hero .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

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

.hero .hero-image {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 20px;
}

.hero .hero-image img {
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .floating-card {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.hero .floating-card i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: var(--accent-color);
}

.hero .floating-card span {
  font-weight: 600;
  color: var(--heading-color);
}

.hero .floating-card.card-1 {
  top: -20px;
  left: 0;
}

.hero .floating-card.card-2 {
  bottom: -20px;
  right: 0;
}

.hero .shape {
  position: absolute;
  opacity: 0.1;
}

.hero .shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--accent-color);
  border-radius: 50%;
  top: -150px;
  left: -150px;
}

.hero .shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--heading-color);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
}

.hero .shape-3 {
  width: 150px;
  height: 150px;
  background-color: var(--accent-color);
  border-radius: 50%;
  top: 20%;
  right: 5%;
  transform: translate(-50%, -50%);
}

@media (max-width: 991.98px) {
  .hero .hero-title {
    font-size: 2.5rem;
  }

  .hero .hero-image {
    max-width: 100%;
  }

  .hero .floating-card {
    padding: 10px 15px;
  }

  .hero .floating-card i {
    font-size: 1.2rem;
  }

  .hero .floating-card span {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Features 4 Section
--------------------------------------------------------------*/
.features-4 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.features-4 .features-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.features-4 .feature-card {
  display: flex;
  gap: 2rem;
  position: relative;
  padding: 2.5rem;
  background: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  overflow: hidden;
}

.features-4 .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.features-4 .feature-card:hover .icon-wrapper img {
  transform: scale(1.1);
}

.features-4 .feature-card:hover .feature-number {
  color: var(--accent-color);
}

.features-4 .feature-card:nth-child(even) {
  flex-direction: row-reverse;
}

.features-4 .feature-card:nth-child(even) .content {
  text-align: right;
}

.features-4 .feature-card:nth-child(even) .feature-number {
  left: auto;
  right: 0;
}

.features-4 .icon-wrapper {
  flex: 0 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-4 .icon-wrapper img {
  max-width: 120px;
  transition: transform 0.4s ease-out;
}

.features-4 .content {
  flex: 1;
  position: relative;
}

.features-4 .content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 2;
}

.features-4 .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 2;
}

.features-4 .feature-number {
  font-size: 5rem;
  font-weight: 800;
  position: absolute;
  top: -2.5rem;
  left: 0;
  opacity: 0.08;
  color: var(--heading-color);
  transition: color 0.3s ease;
  font-family: var(--heading-font);
  line-height: 1;
  z-index: 1;
}

@media (max-width: 991px) {
  .features-4 .feature-card {
    padding: 2rem;
    gap: 1.5rem;
  }

  .features-4 .feature-card .icon-wrapper {
    flex: 0 0 100px;
  }

  .features-4 .feature-card .icon-wrapper img {
    max-width: 100px;
  }

  .features-4 .feature-card .feature-number {
    font-size: 4rem;
    top: -2rem;
  }

  .features-4 .feature-card .content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {

  .features-4 .feature-card,
  .features-4 .feature-card:nth-child(even) {
    flex-direction: column;
    padding: 1.75rem;
  }

  .features-4 .feature-card .content,
  .features-4 .feature-card:nth-child(even) .content {
    text-align: center;
  }

  .features-4 .feature-card .icon-wrapper,
  .features-4 .feature-card:nth-child(even) .icon-wrapper {
    margin-bottom: 1rem;
  }

  .features-4 .feature-card .feature-number,
  .features-4 .feature-card:nth-child(even) .feature-number {
    font-size: 3.5rem;
    top: -1.75rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

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

.call-to-action-4 img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

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

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

.call-to-action-4 p {
  color: var(--default-color);
}

.call-to-action-4 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

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

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

.services-7 .section-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.services-7 .section-header .badge-wrapper {
  margin-bottom: 1rem;
}

.services-7 .section-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.services-7 .section-header .section-badge i {
  font-size: 14px;
}

.services-7 .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .services-7 .section-header .section-title {
    font-size: 2rem;
  }
}

.services-7 .section-header .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  max-width: 700px;
  margin: 0 auto;
}

.services-7 .services-container {
  margin-bottom: 60px;
}

.services-7 .services-container .service-item {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
  height: 100%;
}

.services-7 .services-container .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

.services-7 .services-container .service-item:hover .service-link {
  color: var(--accent-color);
}

.services-7 .services-container .service-item:hover .service-link i {
  transform: translateX(5px);
}

.services-7 .services-container .service-item .service-icon {
  flex: 0 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.services-7 .services-container .service-item .service-content {
  padding: 30px;
  position: relative;
}

.services-7 .services-container .service-item .service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 90%);
  line-height: 1;
  opacity: 0.5;
  z-index: 1;
}

.services-7 .services-container .service-item .service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.services-7 .services-container .service-item .service-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  position: relative;
  z-index: 2;
}

.services-7 .services-container .service-item .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.services-7 .services-container .service-item .service-link i {
  transition: transform 0.3s ease;
}

.services-7 .cta-wrapper .cta-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), color-mix(in srgb, var(--accent-color), transparent 5%));
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services-7 .cta-wrapper .cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/img/bg/dotted-world-1.webp");
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
}

.services-7 .cta-wrapper .cta-box .cta-image {
  position: relative;
  z-index: 2;
}

.services-7 .cta-wrapper .cta-box .cta-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid color-mix(in srgb, var(--contrast-color), transparent 15%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .services-7 .cta-wrapper .cta-box .cta-image img {
    margin-bottom: 30px;
  }
}

.services-7 .cta-wrapper .cta-box .cta-content {
  position: relative;
  z-index: 2;
}

.services-7 .cta-wrapper .cta-box .cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.services-7 .cta-wrapper .cta-box .cta-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
}

.services-7 .cta-wrapper .cta-box .cta-content .primary-btn {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.services-7 .cta-wrapper .cta-box .cta-content .primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .services-7 .cta-wrapper .cta-box .cta-content {
    text-align: center;
  }
}

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

  .services-7 .services-container .service-item {
    flex-direction: column;
  }

  .services-7 .services-container .service-item .service-icon {
    flex: 0 0 auto;
    height: 80px;
    width: 100%;
  }

  .services-7 .cta-wrapper .cta-box {
    padding: 30px 20px;
  }
}

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

.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Services 3 Section
--------------------------------------------------------------*/
.services-3 .service-header {
  margin-bottom: 60px;
}

.services-3 .service-header .service-intro .service-heading {
  font-size: 48px;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
}

.services-3 .service-header .service-intro .service-heading div {
  display: block;
  position: relative;
}

.services-3 .service-header .service-intro .service-heading span {
  display: block;
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .services-3 .service-header .service-intro .service-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .services-3 .service-header .service-intro .service-heading {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.services-3 .service-header .service-summary p {
  margin-bottom: 25px;
  color: var(--default-color);
}

.services-3 .service-header .service-summary .service-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services-3 .service-header .service-summary .service-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.services-3 .service-header .service-summary .service-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

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

@media (max-width: 992px) {
  .services-3 .service-header .service-summary {
    margin-top: 30px;
  }
}

.services-3 .service-card {
  padding: 40px 40px 40px 40px;
  margin-bottom: 30px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease;
}

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

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

.services-3 .service-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

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

.services-3 .service-card h3 a span {
  display: block;
}

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

.services-3 .service-card p {
  color: var(--default-color);
  transition: color 0.3s ease;
  margin-bottom: 0;
}

.services-3 .service-card .card-action {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.services-3 .service-card .card-action i {
  font-size: 24px;
  color: var(--contrast-color);
  transition: transform 0.3s ease;
}

.services-3 .service-card .card-action:hover i {
  transform: rotate(45deg);
}

.services-3 .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--surface-color);
  clip-path: polygon(70% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.services-3 .service-card:hover {
  border-color: transparent;
}

.services-3 .service-card:hover::before {
  opacity: 1;
  visibility: visible;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

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

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

.services-3 .service-card:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services-3 .service-card:hover .card-action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services-3 .service-card:hover .service-icon i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .services-3 .service-card {
    padding: 150px 25px 25px;
  }

  .services-3 .service-card h3 {
    font-size: 24px;
  }

  .services-3 .service-card .service-icon {
    position: absolute;
    top: 40px;
    left: 25px;
  }
}

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

/*--------------------------------------------------------------
# Features 3 Section
--------------------------------------------------------------*/
.features-3 .features-item {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .features-3 .features-item {
    margin-bottom: 60px;
  }
}

.features-3 .features-item .feature-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

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

.features-3 .features-item .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-3 .features-item .feature-card:hover::before {
  transform: scaleX(1);
}

.features-3 .features-item .feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: var(--accent-color);
}

.features-3 .features-item .feature-card:hover .feature-icon i {
  color: var(--contrast-color);
}

.features-3 .features-item .feature-card .feature-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.features-3 .features-item .feature-card .feature-icon i {
  font-size: 36px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.features-3 .features-item .feature-card h4 {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.features-3 .features-item .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.features-3 .features-detail .feature-image-wrapper {
  position: relative;
}

.features-3 .features-detail .feature-image-wrapper .main-image {
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.features-3 .features-detail .feature-image-wrapper .floating-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 250px;
  border: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
  .features-3 .features-detail .feature-image-wrapper .floating-card {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }
}

.features-3 .features-detail .feature-image-wrapper .floating-card .card-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.features-3 .features-detail .feature-image-wrapper .floating-card .card-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.features-3 .features-detail .feature-image-wrapper .floating-card .card-content h6 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  font-family: var(--heading-font);
}

.features-3 .features-detail .feature-image-wrapper .floating-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin: 0;
}

.features-3 .features-detail .feature-content h3 {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .features-3 .features-detail .feature-content h3 {
    font-size: 26px;
  }
}

.features-3 .features-detail .feature-content>p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.features-3 .features-detail .feature-content .feature-points {
  margin-bottom: 35px;
}

.features-3 .features-detail .feature-content .feature-points .point-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.features-3 .features-detail .feature-content .feature-points .point-item:last-child {
  margin-bottom: 0;
}

.features-3 .features-detail .feature-content .feature-points .point-item .point-icon {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.features-3 .features-detail .feature-content .feature-points .point-item .point-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.features-3 .features-detail .feature-content .feature-points .point-item .point-text h5 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

.features-3 .features-detail .feature-content .feature-points .point-item .point-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.features-3 .features-detail .feature-content .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.features-3 .features-detail .feature-content .btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 {
  padding: 50px 0;
  margin-top: -50px;
}

.services-2 .section-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.services-2 .section-header .badge-wrapper {
  margin-bottom: 1rem;
}

.services-2 .section-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.services-2 .section-header .section-badge i {
  font-size: 14px;
}

.services-2 .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .services-2 .section-header .section-title {
    font-size: 2rem;
  }
}

.services-2 .section-header .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  max-width: 700px;
  margin: 0 auto;
}

.services-2 .services-container {
  margin-bottom: 60px;
}

.services-2 .services-container .service-item {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
  height: 100%;
}

.services-2 .services-container .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

.services-2 .services-container .service-item:hover .service-link {
  color: var(--accent-color);
}

.services-2 .services-container .service-item:hover .service-link i {
  transform: translateX(5px);
}

.services-2 .services-container .service-item .service-icon {
  flex: 0 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.services-2 .services-container .service-item .service-content {
  padding: 30px;
  position: relative;
}

.services-2 .services-container .service-item .service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 90%);
  line-height: 1;
  opacity: 0.5;
  z-index: 1;
}

.services-2 .services-container .service-item .service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.services-2 .services-container .service-item .service-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  position: relative;
  z-index: 2;
}

.services-2 .services-container .service-item .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.services-2 .services-container .service-item .service-link i {
  transition: transform 0.3s ease;
}

.services-2 .cta-wrapper .cta-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), color-mix(in srgb, var(--accent-color), transparent 5%));
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services-2 .cta-wrapper .cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/img/bg/dotted-world-1.webp");
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
}

.services-2 .cta-wrapper .cta-box .cta-image {
  position: relative;
  z-index: 2;
}

.services-2 .cta-wrapper .cta-box .cta-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid color-mix(in srgb, var(--contrast-color), transparent 15%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .services-2 .cta-wrapper .cta-box .cta-image img {
    margin-bottom: 30px;
  }
}

.services-2 .cta-wrapper .cta-box .cta-content {
  position: relative;
  z-index: 2;
}

.services-2 .cta-wrapper .cta-box .cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.services-2 .cta-wrapper .cta-box .cta-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
}

.services-2 .cta-wrapper .cta-box .cta-content .primary-btn {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.services-2 .cta-wrapper .cta-box .cta-content .primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .services-2 .cta-wrapper .cta-box .cta-content {
    text-align: center;
  }
}

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

  .services-2 .services-container .service-item {
    flex-direction: column;
  }

  .services-2 .services-container .service-item .service-icon {
    flex: 0 0 auto;
    height: 80px;
    width: 100%;
  }

  .services-2 .cta-wrapper .cta-box {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Services 6 Section
--------------------------------------------------------------*/
.services-6 {
  position: relative;
}

.services-6 .services-content .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.services-6 .services-content h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .services-6 .services-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .services-6 .services-content h2 {
    font-size: 28px;
  }
}

.services-6 .services-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.services-6 .services-content .btn-consultation {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services-6 .services-content .btn-consultation span {
  margin-right: 8px;
}

.services-6 .services-content .btn-consultation i {
  transition: transform 0.3s ease;
}

.services-6 .services-content .btn-consultation:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

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

.services-6 .services-image {
  position: relative;
  height: 380px;
  display: flex;
  justify-content: flex-end;
}

.services-6 .services-image img {
  position: relative;
  z-index: 2;
  max-height: 100%;
  object-fit: cover;
}

.services-6 .services-image .shape-circle {
  position: absolute;
  right: -30px;
  top: -30px;
  height: 180px;
  width: 180px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  z-index: 1;
}

.services-6 .services-image .shape-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  z-index: 1;
  animation: float 5s infinite ease-in-out;
}

@media (max-width: 992px) {
  .services-6 .services-image {
    margin-top: 30px;
    height: 300px;
    justify-content: center;
  }
}

.services-6 .services-slider {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
}

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

.services-6 .service-card {
  background-color: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.services-6 .service-card .icon-box {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.services-6 .service-card .icon-box i {
  font-size: 30px;
  color: var(--contrast-color);
  transition: all 0.4s;
}

.services-6 .service-card .arrow-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: var(--accent-color);
  background-color: var(--surface-color);
  border-radius: 50%;
  transform: rotate(-45deg);
  position: absolute;
  right: -50px;
  top: -50px;
  transition: all 0.4s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.services-6 .service-card .content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.services-6 .service-card .content h4 a {
  color: var(--heading-color);
  transition: all 0.4s;
}

.services-6 .service-card .content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.services-6 .service-card .content .service-number {
  position: relative;
  padding-left: 76px;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.4s;
}

.services-6 .service-card .content .service-number::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  height: 1px;
  width: 70px;
  background-color: var(--accent-color);
  transition: all 0.4s;
}

.services-6 .service-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.services-6 .service-card:hover .icon-box {
  background-color: var(--contrast-color);
}

.services-6 .service-card:hover .icon-box i {
  color: var(--accent-color);
}

.services-6 .service-card:hover .arrow-link {
  top: 16px;
  right: 16px;
  background-color: var(--contrast-color);
}

.services-6 .service-card:hover .content h4 a {
  color: var(--contrast-color);
}

.services-6 .service-card:hover .content p {
  color: var(--contrast-color);
}

.services-6 .service-card:hover .content .service-number {
  color: var(--contrast-color);
  padding-left: 0;
}

.services-6 .service-card:hover .content .service-number::after {
  background-color: var(--contrast-color);
  left: 30px;
}

.services-6 .swiper-navigation {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.services-6 .swiper-navigation button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  height: 56px;
  width: 56px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  transition: all 0.4s;
  margin-right: 10px;
}

.services-6 .swiper-navigation button:last-child {
  margin-right: 0;
}

.services-6 .swiper-navigation button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

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

.call-to-action-3 img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

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

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

.call-to-action-3 p {
  color: var(--default-color);
}

.call-to-action-3 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

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

/*--------------------------------------------------------------
# Services 5 Section
--------------------------------------------------------------*/
.services-5 {
  padding: 50px 0;
  margin-top: -50px;
}

.services-5 .section-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.services-5 .section-header .badge-wrapper {
  margin-bottom: 1rem;
}

.services-5 .section-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.services-5 .section-header .section-badge i {
  font-size: 14px;
}

.services-5 .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .services-5 .section-header .section-title {
    font-size: 2rem;
  }
}

.services-5 .section-header .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  max-width: 700px;
  margin: 0 auto;
}

.services-5 .services-container {
  margin-bottom: 60px;
}

.services-5 .services-container .service-item {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
  height: 100%;
}

.services-5 .services-container .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

.services-5 .services-container .service-item:hover .service-link {
  color: var(--accent-color);
}

.services-5 .services-container .service-item:hover .service-link i {
  transform: translateX(5px);
}

.services-5 .services-container .service-item .service-icon {
  flex: 0 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.services-5 .services-container .service-item .service-content {
  padding: 30px;
  position: relative;
}

.services-5 .services-container .service-item .service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 90%);
  line-height: 1;
  opacity: 0.5;
  z-index: 1;
}

.services-5 .services-container .service-item .service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.services-5 .services-container .service-item .service-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  position: relative;
  z-index: 2;
}

.services-5 .services-container .service-item .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.services-5 .services-container .service-item .service-link i {
  transition: transform 0.3s ease;
}

.services-5 .cta-wrapper .cta-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), color-mix(in srgb, var(--accent-color), transparent 5%));
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services-5 .cta-wrapper .cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/img/bg/dotted-world-1.webp");
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
}

.services-5 .cta-wrapper .cta-box .cta-image {
  position: relative;
  z-index: 2;
}

.services-5 .cta-wrapper .cta-box .cta-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid color-mix(in srgb, var(--contrast-color), transparent 15%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .services-5 .cta-wrapper .cta-box .cta-image img {
    margin-bottom: 30px;
  }
}

.services-5 .cta-wrapper .cta-box .cta-content {
  position: relative;
  z-index: 2;
}

.services-5 .cta-wrapper .cta-box .cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.services-5 .cta-wrapper .cta-box .cta-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
}

.services-5 .cta-wrapper .cta-box .cta-content .primary-btn {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.services-5 .cta-wrapper .cta-box .cta-content .primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .services-5 .cta-wrapper .cta-box .cta-content {
    text-align: center;
  }
}

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

  .services-5 .services-container .service-item {
    flex-direction: column;
  }

  .services-5 .services-container .service-item .service-icon {
    flex: 0 0 auto;
    height: 80px;
    width: 100%;
  }

  .services-5 .cta-wrapper .cta-box {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
}

.about-3 .content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
}

.about-3 .content h2 {
  font-size: 24px;
  font-weight: 700;
}

.about-3 .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about-3 .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about-3 .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about-3 .content .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about-3 .content .btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Services 4 Section
--------------------------------------------------------------*/
.services-4 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 60px 30px 60px 70px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services-4 .service-item .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services-4 .service-item .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

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

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

@media (min-width: 1365px) {
  .services-4 .service-item:hover {
    transform: translateY(-10px);
  }

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

/*--------------------------------------------------------------
# Features 5 Section
--------------------------------------------------------------*/
.features-5 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.features-5 .features-item {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .features-5 .features-item {
    margin-bottom: 60px;
  }
}

.features-5 .features-item .feature-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

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

.features-5 .features-item .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-5 .features-item .feature-card:hover::before {
  transform: scaleX(1);
}

.features-5 .features-item .feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: var(--accent-color);
}

.features-5 .features-item .feature-card:hover .feature-icon i {
  color: var(--contrast-color);
}

.features-5 .features-item .feature-card .feature-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.features-5 .features-item .feature-card .feature-icon i {
  font-size: 36px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.features-5 .features-item .feature-card h4 {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.features-5 .features-item .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.features-5 .features-detail .feature-image-wrapper {
  position: relative;
}

.features-5 .features-detail .feature-image-wrapper .main-image {
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.features-5 .features-detail .feature-image-wrapper .floating-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 250px;
  border: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
  .features-5 .features-detail .feature-image-wrapper .floating-card {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }
}

.features-5 .features-detail .feature-image-wrapper .floating-card .card-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.features-5 .features-detail .feature-image-wrapper .floating-card .card-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.features-5 .features-detail .feature-image-wrapper .floating-card .card-content h6 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  font-family: var(--heading-font);
}

.features-5 .features-detail .feature-image-wrapper .floating-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin: 0;
}

.features-5 .features-detail .feature-content h3 {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .features-5 .features-detail .feature-content h3 {
    font-size: 26px;
  }
}

.features-5 .features-detail .feature-content>p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.features-5 .features-detail .feature-content .feature-points {
  margin-bottom: 35px;
}

.features-5 .features-detail .feature-content .feature-points .point-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.features-5 .features-detail .feature-content .feature-points .point-item:last-child {
  margin-bottom: 0;
}

.features-5 .features-detail .feature-content .feature-points .point-item .point-icon {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.features-5 .features-detail .feature-content .feature-points .point-item .point-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.features-5 .features-detail .feature-content .feature-points .point-item .point-text h5 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

.features-5 .features-detail .feature-content .feature-points .point-item .point-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.features-5 .features-detail .feature-content .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.features-5 .features-detail .feature-content .btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

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

.call-to-action-5 img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

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

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

.call-to-action-5 p {
  color: var(--default-color);
}

.call-to-action-5 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

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

/*--------------------------------------------------------------
# Services 8 Section
--------------------------------------------------------------*/
.services-8 {
  padding: 50px 0;
  margin-top: -50px;
}

.services-8 .section-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.services-8 .section-header .badge-wrapper {
  margin-bottom: 1rem;
}

.services-8 .section-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.services-8 .section-header .section-badge i {
  font-size: 14px;
}

.services-8 .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .services-8 .section-header .section-title {
    font-size: 2rem;
  }
}

.services-8 .section-header .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  max-width: 700px;
  margin: 0 auto;
}

.services-8 .services-container {
  margin-bottom: 60px;
}

.services-8 .services-container .service-item {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
  height: 100%;
}

.services-8 .services-container .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

.services-8 .services-container .service-item:hover .service-link {
  color: var(--accent-color);
}

.services-8 .services-container .service-item:hover .service-link i {
  transform: translateX(5px);
}

.services-8 .services-container .service-item .service-icon {
  flex: 0 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.services-8 .services-container .service-item .service-content {
  padding: 30px;
  position: relative;
}

.services-8 .services-container .service-item .service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 90%);
  line-height: 1;
  opacity: 0.5;
  z-index: 1;
}

.services-8 .services-container .service-item .service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.services-8 .services-container .service-item .service-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  position: relative;
  z-index: 2;
}

.services-8 .services-container .service-item .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.services-8 .services-container .service-item .service-link i {
  transition: transform 0.3s ease;
}

.services-8 .cta-wrapper .cta-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), color-mix(in srgb, var(--accent-color), transparent 5%));
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services-8 .cta-wrapper .cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/img/bg/dotted-world-1.webp");
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
}

.services-8 .cta-wrapper .cta-box .cta-image {
  position: relative;
  z-index: 2;
}

.services-8 .cta-wrapper .cta-box .cta-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid color-mix(in srgb, var(--contrast-color), transparent 15%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .services-8 .cta-wrapper .cta-box .cta-image img {
    margin-bottom: 30px;
  }
}

.services-8 .cta-wrapper .cta-box .cta-content {
  position: relative;
  z-index: 2;
}

.services-8 .cta-wrapper .cta-box .cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.services-8 .cta-wrapper .cta-box .cta-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
}

.services-8 .cta-wrapper .cta-box .cta-content .primary-btn {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.services-8 .cta-wrapper .cta-box .cta-content .primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .services-8 .cta-wrapper .cta-box .cta-content {
    text-align: center;
  }
}

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

  .services-8 .services-container .service-item {
    flex-direction: column;
  }

  .services-8 .services-container .service-item .service-icon {
    flex: 0 0 auto;
    height: 80px;
    width: 100%;
  }

  .services-8 .cta-wrapper .cta-box {
    padding: 30px 20px;
  }
}

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

.services .section-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.services .section-header .badge-wrapper {
  margin-bottom: 1rem;
}

.services .section-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.services .section-header .section-badge i {
  font-size: 14px;
}

.services .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .services .section-header .section-title {
    font-size: 2rem;
  }
}

.services .section-header .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  max-width: 700px;
  margin: 0 auto;
}

.services .services-container {
  margin-bottom: 60px;
}

.services .services-container .service-item {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
  height: 100%;
}

.services .services-container .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

.services .services-container .service-item:hover .service-link {
  color: var(--accent-color);
}

.services .services-container .service-item:hover .service-link i {
  transform: translateX(5px);
}

.services .services-container .service-item .service-icon {
  flex: 0 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.services .services-container .service-item .service-content {
  padding: 30px;
  position: relative;
}

.services .services-container .service-item .service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 90%);
  line-height: 1;
  opacity: 0.5;
  z-index: 1;
}

.services .services-container .service-item .service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.services .services-container .service-item .service-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  position: relative;
  z-index: 2;
}

.services .services-container .service-item .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.services .services-container .service-item .service-link i {
  transition: transform 0.3s ease;
}

.services .cta-wrapper .cta-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), color-mix(in srgb, var(--accent-color), transparent 5%));
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services .cta-wrapper .cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/img/bg/dotted-world-1.webp");
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
}

.services .cta-wrapper .cta-box .cta-image {
  position: relative;
  z-index: 2;
}

.services .cta-wrapper .cta-box .cta-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid color-mix(in srgb, var(--contrast-color), transparent 15%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .services .cta-wrapper .cta-box .cta-image img {
    margin-bottom: 30px;
  }
}

.services .cta-wrapper .cta-box .cta-content {
  position: relative;
  z-index: 2;
}

.services .cta-wrapper .cta-box .cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.services .cta-wrapper .cta-box .cta-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
}

.services .cta-wrapper .cta-box .cta-content .primary-btn {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.services .cta-wrapper .cta-box .cta-content .primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .services .cta-wrapper .cta-box .cta-content {
    text-align: center;
  }
}

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

  .services .services-container .service-item {
    flex-direction: column;
  }

  .services .services-container .service-item .service-icon {
    flex: 0 0 auto;
    height: 80px;
    width: 100%;
  }

  .services .cta-wrapper .cta-box {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# About 4 Section
--------------------------------------------------------------*/
.about-4 {
  position: relative;
}

.about-4 .about-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
}

.about-4 .about-image img {
  transition: transform 0.5s ease;
}

.about-4 .about-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .about-4 .about-image {
    margin-bottom: 40px;
  }
}

.about-4 .about-content {
  padding-left: 20px;
}

@media (max-width: 992px) {
  .about-4 .about-content {
    padding-left: 0;
  }
}

.about-4 .about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  font-weight: 700;
}

.about-4 .about-content h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 4px;
  width: 60px;
  background: var(--accent-color);
  border-radius: 2px;
}

.about-4 .about-content .lead {
  font-size: 1.2rem;
  margin-bottom: 20px;
  margin-top: 25px;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  font-weight: 500;
}

.about-4 .about-content p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-4 .stats-row {
  margin-top: 30px;
}

.about-4 .stat-item {
  text-align: center;
  padding: 15px 5px;
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: var(--surface-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-4 .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-4 .stat-item .stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
  font-family: var(--heading-font);
}

.about-4 .stat-item .stat-text {
  font-size: 0.95rem;
  color: var(--heading-color);
  margin-bottom: 0;
}

.about-4 .btn-learn-more {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: transparent;
  color: var(--accent-color);
  font-weight: 600;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.about-4 .btn-learn-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.about-4 .btn-learn-more:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

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

  .about-4 .stat-item {
    margin-bottom: 15px;
  }

  .about-4 .stat-number {
    font-size: 1.8rem;
  }
}

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

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

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

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

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

.services-9 .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

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

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

.services-9 .service-item.item-cyan i {
  color: #0dcaf0;
}

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

.services-9 .service-item.item-cyan:hover .icon path {
  fill: #0dcaf0;
}

.services-9 .service-item.item-orange i {
  color: #fd7e14;
}

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

.services-9 .service-item.item-orange:hover .icon path {
  fill: #fd7e14;
}

.services-9 .service-item.item-teal i {
  color: #20c997;
}

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

.services-9 .service-item.item-teal:hover .icon path {
  fill: #20c997;
}

.services-9 .service-item.item-red i {
  color: #df1529;
}

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

.services-9 .service-item.item-red:hover .icon path {
  fill: #df1529;
}

.services-9 .service-item.item-indigo i {
  color: #6610f2;
}

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

.services-9 .service-item.item-indigo:hover .icon path {
  fill: #6610f2;
}

.services-9 .service-item.item-pink i {
  color: #f3268c;
}

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

.services-9 .service-item.item-pink:hover .icon path {
  fill: #f3268c;
}

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

.call-to-action-2 .cta-image {
  position: relative;
}

.call-to-action-2 .cta-image img {
  position: relative;
  z-index: 2;
}

.call-to-action-2 .cta-content {
  padding-left: 2rem;
}

.call-to-action-2 .cta-content .highlight-text {
  display: inline-block;
  background: linear-gradient(120deg, transparent 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

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

.call-to-action-2 .cta-content .lead {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.1rem;
  line-height: 1.6;
}

.call-to-action-2 .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.call-to-action-2 .feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.call-to-action-2 .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-right: 1rem;
}

.call-to-action-2 .cta-buttons {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.call-to-action-2 .cta-buttons .btn-gradient {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 20%) 100%);
  border: none;
  color: var(--contrast-color);
  padding: 1rem 2.5rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-to-action-2 .cta-buttons .btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.call-to-action-2 .cta-buttons .satisfaction-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.call-to-action-2 .cta-buttons .satisfaction-guarantee i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action-2 .scribble {
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
}

.call-to-action-2 .scribble::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
}

.call-to-action-2 .scribble-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -30px;
  animation: rotate1 20s linear infinite;
}

.call-to-action-2 .scribble-1::before {
  clip-path: path("M100,0 C130,40 170,40 180,80 C190,120 150,160 100,200 C50,160 10,120 20,80 C30,40 70,40 100,0");
  animation: pulse 8s ease-in-out infinite;
}

.call-to-action-2 .scribble-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -20px;
  animation: rotate2 15s linear infinite reverse;
}

.call-to-action-2 .scribble-2::before {
  clip-path: path("M75,0 C100,25 125,25 135,50 C145,75 135,100 75,150 C15,100 5,75 15,50 C25,25 50,25 75,0");
  animation: pulse 8s ease-in-out infinite reverse;
}

@keyframes rotate1 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate2 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

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

  50% {
    transform: scale(1.1);
  }
}

@media (max-width: 991.98px) {
  .call-to-action-2 .cta-content {
    padding-left: 0;
    margin-top: 2rem;
    text-align: center;
  }

  .call-to-action-2 .cta-content .feature-list li {
    justify-content: center;
  }

  .call-to-action-2 .cta-content .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .call-to-action-2 .cta-content .cta-buttons .btn-gradient {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 767.98px) {
  .call-to-action-2 {
    padding: 60px 0;
  }

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

  .call-to-action-2 .cta-content .lead {
    font-size: 1rem;
  }

  .call-to-action-2 .scribble {
    transform: scale(0.7);
  }
}

/*--------------------------------------------------------------
# Servicesundefined 2 Section
--------------------------------------------------------------*/
.servicesundefined-2 {
  padding: 50px 0;
  margin-top: -50px;
}

.servicesundefined-2 .section-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.servicesundefined-2 .section-header .badge-wrapper {
  margin-bottom: 1rem;
}

.servicesundefined-2 .section-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.servicesundefined-2 .section-header .section-badge i {
  font-size: 14px;
}

.servicesundefined-2 .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .servicesundefined-2 .section-header .section-title {
    font-size: 2rem;
  }
}

.servicesundefined-2 .section-header .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  max-width: 700px;
  margin: 0 auto;
}

.servicesundefined-2 .services-container {
  margin-bottom: 60px;
}

.servicesundefined-2 .services-container .service-item {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
  height: 100%;
}

.servicesundefined-2 .services-container .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

.servicesundefined-2 .services-container .service-item:hover .service-link {
  color: var(--accent-color);
}

.servicesundefined-2 .services-container .service-item:hover .service-link i {
  transform: translateX(5px);
}

.servicesundefined-2 .services-container .service-item .service-icon {
  flex: 0 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.servicesundefined-2 .services-container .service-item .service-content {
  padding: 30px;
  position: relative;
}

.servicesundefined-2 .services-container .service-item .service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 90%);
  line-height: 1;
  opacity: 0.5;
  z-index: 1;
}

.servicesundefined-2 .services-container .service-item .service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.servicesundefined-2 .services-container .service-item .service-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  position: relative;
  z-index: 2;
}

.servicesundefined-2 .services-container .service-item .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.servicesundefined-2 .services-container .service-item .service-link i {
  transition: transform 0.3s ease;
}

.servicesundefined-2 .cta-wrapper .cta-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), color-mix(in srgb, var(--accent-color), transparent 5%));
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.servicesundefined-2 .cta-wrapper .cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/img/bg/dotted-world-1.webp");
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
}

.servicesundefined-2 .cta-wrapper .cta-box .cta-image {
  position: relative;
  z-index: 2;
}

.servicesundefined-2 .cta-wrapper .cta-box .cta-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid color-mix(in srgb, var(--contrast-color), transparent 15%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .servicesundefined-2 .cta-wrapper .cta-box .cta-image img {
    margin-bottom: 30px;
  }
}

.servicesundefined-2 .cta-wrapper .cta-box .cta-content {
  position: relative;
  z-index: 2;
}

.servicesundefined-2 .cta-wrapper .cta-box .cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.servicesundefined-2 .cta-wrapper .cta-box .cta-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
}

.servicesundefined-2 .cta-wrapper .cta-box .cta-content .primary-btn {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.servicesundefined-2 .cta-wrapper .cta-box .cta-content .primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .servicesundefined-2 .cta-wrapper .cta-box .cta-content {
    text-align: center;
  }
}

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

  .servicesundefined-2 .services-container .service-item {
    flex-direction: column;
  }

  .servicesundefined-2 .services-container .service-item .service-icon {
    flex: 0 0 auto;
    height: 80px;
    width: 100%;
  }

  .servicesundefined-2 .cta-wrapper .cta-box {
    padding: 30px 20px;
  }
}