@charset "UTF-8";
/*

ref site : https://www.lxumachinery.com/
*/

/* 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: "Montserrat", sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #06854f;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #06854f;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

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

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

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


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

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

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

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

/* container */
.container {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 25px;
}

/* 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);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%,
      color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

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

.header .topbar {
  background-color: var(--accent-color);
  height: 46px;
  padding: 0;
  font-size: 15px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

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

.header .topbar .social-links .dropdown-menu .dropdown-item {
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  color: #000;
}

.header .topbar .social-links .dropdown-menu .dropdown-item a {
  color: #000;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

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

.header .branding {
  min-height: 80px;
  padding: 15px 0;
}

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

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

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

.header .mobile-lang-selector {
  background-color: #f8f9fa;
  border-bottom: 1px solid #ddd;
}

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

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

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

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 18px 20px;
    font-size: 16px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

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

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
    padding-bottom: 32px;
  }
}

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

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

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

/* Products Mega Menu 1 - Desktop */
@media (min-width: 1200px) {
  .navmenu .products-megamenu-1 {
    position: static;
    /*  Hide Desktop Mega Menu 1 in Desktop */
    /* Bootstrap Tabs Navigation */
    /* Tab Content */
  }

  .navmenu .products-megamenu-1 .mobile-megamenu {
    display: none;
  }

  .navmenu .products-megamenu-1 .desktop-megamenu,
  .navmenu .products-megamenu-1 .active,
  .navmenu .products-megamenu-1 .active:focus {
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .products-megamenu-1 .desktop-megamenu {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 20px;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow: hidden;
  }

  .navmenu .products-megamenu-1:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs {
    margin-bottom: 15px;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link {
    border: none;
    padding: 10px 20px;
    color: var(--nav-dropdown-color);
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
    background-color: transparent;
    border-bottom: 2px solid transparent;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link:hover {
    color: var(--nav-dropdown-hover-color);
    border-color: transparent;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link.active {
    color: var(--accent-color);
    background-color: transparent;
    border-bottom: 2px solid var(--accent-color);
    text-transform: uppercase;
    font-size: 19px;
  }

  .navmenu .products-megamenu-1 .megamenu-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
    /* Hide scrollbar for Chrome, Safari and Opera */
    /* Category Grid */
    /* Product Grid */
  }

  .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar {
    width: 5px;
  }

  .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar-track {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .tab-content {
    display: none;
  }

  .navmenu .products-megamenu-1 .megamenu-content .tab-content.active {
    display: block;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column {
    background-color: color-mix(in srgb,
        var(--surface-color),
        var(--accent-color) 3%);
    border-radius: 8px;
    padding: 15px;
    transition: 0.3s;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column .lxupro {
    color: var(--heading-color);
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    position: relative;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column .lxupro:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li {
    margin-bottom: 10px;
    background-color: none !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start !important;
    width: 100%;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li:last-child {
    margin-bottom: 0;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a {
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
    padding: 0 0 0 20px;
    display: block;
    position: relative;
    background-color: transparent;
    text-transform: none;
    font-weight: 400;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:before {
    content: "\f285";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
    color: var(--accent-color);
    opacity: 0.7;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:hover {
    color: var(--nav-dropdown-hover-color);
    transform: translateX(3px);
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:hover:before {
    opacity: 1;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column .active {
    background-color: none;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 10px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card {
    background-color: var(--surface-color);
    overflow: hidden;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card:hover .product-image img {
    transform: scale(1.1);
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image {
    height: 160px;
    position: relative;
    overflow: hidden;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-new,
  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-sale {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    z-index: 1;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-new {
    background-color: #28a745;
    color: white;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-sale {
    background-color: #dc3545;
    color: white;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info {
    padding: 15px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info h5 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .price {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .price .original-price {
    text-decoration: line-through;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-right: 5px;
    font-weight: normal;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .btn-view {
    display: inline-block;
    padding: 5px 12px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    transition: 0.3s;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .btn-view:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
}

/* Products Mega Menu 1 - Mobile */
@media (max-width: 1199px) {
  .navmenu .products-megamenu-1 {
    /* Hide Desktop Mega Menu 1 in Mobile */
  }

  .navmenu .products-megamenu-1 .desktop-megamenu {
    display: none;
  }

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

  .navmenu .products-megamenu-1 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li a {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li ul {
    padding: 0;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu.dropdown-active {
    display: block;
  }
}

/* Products Mega Menu 2 - Desktop */
@media (min-width: 1200px) {
  .navmenu .products-megamenu-2 {
    position: static;
    /* Hide Mobile Mega Menu in Desktop */
    /* Tabs Navigation */
    /* Tab Content */
  }

  .navmenu .products-megamenu-2 .mobile-megamenu {
    display: none;
  }

  .navmenu .products-megamenu-2 .desktop-megamenu,
  .navmenu .products-megamenu-2 .active,
  .navmenu .products-megamenu-2 .active:focus {
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .products-megamenu-2 .desktop-megamenu {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow: hidden;
  }

  .navmenu .products-megamenu-2:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs {
    padding: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs {
    border-bottom: none;
    display: flex;
    justify-content: center;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-item {
    margin: 0;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link {
    border: none;
    padding: 15px 30px;
    color: var(--nav-dropdown-color);
    font-weight: 600;
    font-size: 20px;
    transition: 0.3s;
    background-color: transparent;
    border-bottom: 2px solid transparent;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link.active {
    color: var(--accent-color);
    background-color: transparent;
    border-bottom: 2px solid var(--accent-color);
  }

  .navmenu .products-megamenu-2 .megamenu-content {
    flex: 1;
    overflow-y: auto;
    /* Hide scrollbar for Chrome, Safari and Opera */
    /* Category Layout */
    /* Categories Section */
    /* Featured Section */
  }

  .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar {
    width: 5px;
  }

  .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar-track {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .tab-pane {
    padding: 25px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .category-layout {
    display: flex;
    gap: 30px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section {
    flex: 1;
    /* Category Headers */
    /* Category Links */
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-headers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 15px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-headers h4 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    position: relative;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row a {
    color: var(--nav-dropdown-color);
    font-size: 14px;
    transition: 0.3s;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row a:hover {
    color: var(--nav-dropdown-hover-color);
    transform: translateX(3px);
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section {
    width: 300px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image {
    position: relative;
    height: 100%;
    background-color: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content h3 {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content .btn-shop {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    width: fit-content;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content .btn-shop:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
  }
}

/* Products Mega Menu 2 - Mobile */
@media (max-width: 1199px) {
  .navmenu .products-megamenu-2 {
    /* Hide Desktop Mega Menu in Mobile */
  }

  .navmenu .products-megamenu-2 .desktop-megamenu {
    display: none;
  }

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

  .navmenu .products-megamenu-2 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li a {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li ul {
    padding: 0;
  }

  .navmenu .products-megamenu-2 .mobile-megamenu.dropdown-active {
    display: block;
  }
}

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

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

.footer .footer-info .logo {
  line-height: 1;
}

.footer .footer-info .logo img {
  max-height: 200px;
}

.footer .footer-info .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-info p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

.footer .social-links {
  display: flex;
  gap: 12px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  font-size: 16px;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

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

.footer h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

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

.footer .footer-links ul li {
  padding: 8px 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.2;
  transition: all 0.3s ease;
  position: relative;
}

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

.footer .footer-newsletter p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer .footer-newsletter form {
  margin-top: 25px;
}

.footer .footer-newsletter form .position-relative {
  display: flex;
  margin-bottom: 15px;
}

.footer .footer-newsletter form input[type="email"] {
  height: 44px;
  border-radius: 8px;
  padding: 10px 15px;
  width: 100%;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
}

.footer .footer-newsletter form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent-color);
}

.footer .footer-newsletter form input[type="email"]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.footer .footer-newsletter form .btn-subscribe {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
}

.footer .footer-newsletter form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-newsletter form .btn-subscribe i {
  font-size: 18px;
}

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

.footer .footer-middle .payment-icons,
.footer .footer-middle .badge-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer .footer-middle .payment-icons i,
.footer .footer-middle .badge-icons i {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease;
}

.footer .footer-middle .payment-icons i:hover,
.footer .footer-middle .badge-icons i:hover {
  color: var(--accent-color);
}

.footer .sitemap-keywords-section {
  padding: 40px ; 
 
}

.footer .sitemap-keywords-section p {
  color: var(--default-color);
}

.footer .sitemap-keywords-section h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer .footer-bottom {
  padding-top: 25px;
}

.footer .footer-bottom .copyright p {
  margin-bottom: 0;
  font-size: 13px;
}

.footer .footer-bottom .credits {
  padding-top: 5px;
}

.footer .footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

@media (max-width: 767.98px) {
  .footer .footer-bottom .legal-links {
    justify-content: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .legal-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  transition: color 0.3s ease;
}

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

@media (max-width: 991.98px) {

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

@media (max-width: 767.98px) {
  .footer .trust-badges {
    text-align: left !important;
    margin-top: 20px;
  }

  .footer .copyright,
  .footer .credits {
    text-align: center;
  }
}

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

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

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

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

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

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

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

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

.page-title .heading .pagetitle {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  font-family: var(--heading-font);
}

.page-title .heading p {
  color: #fff;
}

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

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

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

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

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

@media (max-width: 1199px) {

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

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 86vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
}

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

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

.hero .carousel-item:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 100px;
  display: flex;
  max-width: 650px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

@media (max-width: 575px) {
  .hero .carousel-container {
    inset: 90px 50px;
  }
}

.hero h1 {
  margin-bottom: 5px;
  font-size: 35px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h2 span {
  color: #ffffff;
}

.hero p {
  font-size: 18px;
}

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

  .hero p {
    display: none;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0;
  align-self: flex-start;
  flex-shrink: 0;
  border: 2px solid var(--nav-hover-color);
  background: var(--nav-hover-color);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  border: 2px solid var(--accent-color);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
  z-index: 3;
}

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

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

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
  opacity: 1;
  height: 6px;
  width: 20px;
  transition: 0.3s;
  padding: 0;
}

.hero .carousel-indicators .active {
  background-color: var(--accent-color);
  width: 40px;
}

/*--------------------------------------------------------------
# Category Cards Section
--------------------------------------------------------------*/
.category-cards .category-slider {
  position: relative;
  padding: 1rem 0;
}

.category-cards .category-slider .container {
  position: relative;
}

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

.category-cards .category-slider .swiper-button-next,
.category-cards .category-slider .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: var(--surface-color);
  border-radius: 50%;
  color: var(--heading-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-cards .category-slider .swiper-button-next::after,
.category-cards .category-slider .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: bold;
}

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

.category-cards .category-slider .swiper-button-prev {
  left: 0;
}

.category-cards .category-slider .swiper-button-next {
  right: 0;
}

.category-cards .category-card {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 0.5rem;
  padding: 1rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-cards .category-card:hover {
  transform: translateY(-5px);
}

.category-cards .category-card:hover .category-title {
  color: var(--accent-color);
}

.category-cards .category-card:hover .category-image img {
  filter: brightness(1.08);
  transform: rotate(4deg) scale(1.06);
}

.category-cards .category-card .category-image {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.category-cards .category-card .category-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: 0.3s;
}

.category-cards .category-card .category-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  transition: 0.3s;
}

.category-cards .category-card .category-count {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .category-cards .category-slider .swiper-button-prev {
    left: -15px;
  }

  .category-cards .category-slider .swiper-button-next {
    right: -15px;
  }

  .category-cards .category-card {
    padding: 0.75rem;
  }

  .category-cards .category-card .category-image {
    height: 100px;
    margin-bottom: 0.75rem;
  }

  .category-cards .category-card .category-title {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .category-cards .category-card .category-count {
    font-size: 0.8rem;
  }
}

@media (max-width: 767.98px) {

  .category-cards .category-slider .swiper-button-prev,
  .category-cards .category-slider .swiper-button-next {
    width: 35px;
    height: 35px;
  }

  .category-cards .category-slider .swiper-button-prev::after,
  .category-cards .category-slider .swiper-button-next::after {
    font-size: 0.85rem;
  }

  .category-cards .category-card .category-image {
    height: 90px;
  }
}

@media (max-width: 575.98px) {
  .category-cards .category-slider .swiper-button-prev {
    left: -10px;
  }

  .category-cards .category-slider .swiper-button-next {
    right: -10px;
  }

  .category-cards .category-card {
    padding: 0.5rem;
  }

  .category-cards .category-card .category-image {
    height: 80px;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Portfolio 2 Section
--------------------------------------------------------------*/
.portfolio-2 .portfolio-filters-container {
  margin-bottom: 40px;
}

.portfolio-2 .portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.portfolio-2 .portfolio-filters li {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 30px;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  color: var(--default-color);
  transition: all 0.3s ease-in-out;
}

.portfolio-2 .portfolio-filters li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.portfolio-2 .portfolio-filters li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.portfolio-2 .portfolio-card {
  background-color: var(--surface-color);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.portfolio-2 .portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

.portfolio-2 .portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio-2 .portfolio-card:hover .portfolio-overlay .portfolio-actions {
  transform: translateY(0);
}

.portfolio-2 .portfolio-card .portfolio-image {
  position: relative;
  overflow: hidden;
  /* aspect-ratio: 4/3; */
}

.portfolio-2 .portfolio-card .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
}

.portfolio-2 .portfolio-card .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.portfolio-2 .portfolio-card .portfolio-overlay .portfolio-actions {
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
  display: flex;
  gap: 15px;
}

.portfolio-2 .portfolio-card .portfolio-overlay .portfolio-actions a {
  width: 45px;
  height: 45px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.portfolio-2 .portfolio-card .portfolio-overlay .portfolio-actions a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.portfolio-2 .portfolio-card .portfolio-content {
  padding: 25px;
}

.portfolio-2 .portfolio-card .portfolio-content .category {
  font-size: 14px;
  color: var(--nav-hover-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.portfolio-2 .portfolio-card .portfolio-content h3 {
  font-size: 20px;
  margin: 0 0 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.portfolio-2 .portfolio-card .portfolio-content h3:hover {
  color: var(--accent-color);
}

.portfolio-2 .portfolio-card .portfolio-content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .portfolio-2 .portfolio-filters li {
    font-size: 14px;
    padding: 6px 15px;
  }

  .portfolio-2 .portfolio-card .portfolio-content {
    padding: 20px;
  }

  .portfolio-2 .portfolio-card .portfolio-content h3 {
    font-size: 18px;
  }

  .portfolio-2 .portfolio-card .portfolio-content p {
    font-size: 14px;
  }
}

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

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

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

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

.call-to-action h3 {
  color: var(--default-color);
  font-size: 38px;
  font-weight: 700;
  line-height: 60px;
}

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

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

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

@media (max-width: 767.98px) {
  .call-to-action h3 {
    font-size: 16px;
    line-height: 26px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section .cookie-banner {
  z-index: 9999;
  display: none;
  /* Initially hidden */
}

.starter-section .cookie-banner p {
  font-size: 14px;
  line-height: 1.5;
}

.starter-section .cookie-banner a {
  color: #f8c146;
  text-decoration: underline;
}

.starter-section .cookie-banner button {
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 5px;
}

.starter-section .cookie-banner button:hover {
  opacity: 0.8;
}

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

.about .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
}

.about .gallery-grid .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.about .gallery-grid .gallery-item.main-image {
  grid-column: 1/-1;
}

.about .gallery-grid .gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent,
      color-mix(in srgb, var(--accent-color), transparent 90%));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about .gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .gallery-grid .gallery-item:hover::before {
  opacity: 1;
}

.about .gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}

.about .content-wrapper .subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.about .content-wrapper .subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  transform: translateY(-50%);
}

.about .content-wrapper h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about .content-wrapper p {
  font-size: 18px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
}

.about .counters-wrapper {
  margin: 40px 0;
}

.about .counters-wrapper .counter-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 95%);
  transition: transform 0.3s ease;
}

.about .counters-wrapper .counter-item:hover {
  transform: translateY(-5px);
}

.about .counters-wrapper .counter-item .counter-value {
  margin-bottom: 10px;
}

.about .counters-wrapper .counter-item .counter-value .number {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.about .counters-wrapper .counter-item .counter-value .suffix {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-color);
}

.about .counters-wrapper .counter-item .counter-label {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.about .accordion {
  margin: 40px 0;
}

.about .accordion .accordion-item {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px !important;
  overflow: hidden;
  margin-bottom: 15px;
  background: var(--surface-color);
}

.about .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.about .accordion .accordion-item .accordion-header .accordion-button {
  padding: 20px 25px;
  font-size: 17px;
  font-weight: 600;
  color: var(--heading-color);
  background: transparent;
  box-shadow: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.about .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.about .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.about .accordion .accordion-item .accordion-header .accordion-button:hover:not(.collapsed) {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

.about .accordion .accordion-item .accordion-header .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.about .accordion .accordion-item .accordion-header .accordion-button::after {
  width: 16px;
  height: 16px;
  background-size: 16px;
  transition: transform 0.3s ease;
}

.about .accordion .accordion-item .accordion-body {
  padding: 20px 25px;
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .cta-wrapper {
  margin-top: 40px;
}

.about .cta-wrapper .btn-learn-more {
  display: inline-block;
  padding: 15px 35px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about .cta-wrapper .btn-learn-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), black 20%);
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: 50px;
}

.about .cta-wrapper .btn-learn-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .cta-wrapper .btn-learn-more:hover::before {
  width: 100%;
}

@media (max-width: 991.98px) {
  .about .content-wrapper {
    margin-top: 40px;
  }

  .about .content-wrapper h3 {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  .about .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about .content-wrapper h3 {
    font-size: 28px;
  }

  .about .counter-item {
    margin-bottom: 20px;
  }

  .about .counter-item .counter-value .number {
    font-size: 36px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

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

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

.services .services-subtitle {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 800px;
  margin: 0 auto;
}

.services .service-item {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

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

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

.services .service-item .service-icon {
  width: 70px;
  height: 70px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.services .service-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

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

.services .service-item .service-link {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.services .service-item .service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

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

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

.services .services-image-container {
  position: relative;
  padding: 1rem;
}

.services .services-image-container img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services .services-image-container .experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translate(20%, 20%);
}

.services .services-image-container .experience-badge .years {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.services .services-image-container .experience-badge .text {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services .services-content {
  padding: 1rem 0 1rem 2rem;
}

@media (max-width: 992px) {
  .services .services-content {
    padding: 2rem 0 0 0;
  }
}

.services .services-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--heading-color);
}

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

.services .services-content .features-list {
  margin-bottom: 2rem;
}

.services .services-content .features-list .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.services .services-content .features-list .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.services .services-content .features-list .feature-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.services .services-content .features-list .feature-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.services .services-content .cta-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.services .services-content .cta-container .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.services .services-content .cta-container .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.services .services-content .cta-container .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
}

.services .services-content .cta-container .btn-outline {
  background-color: transparent;
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 70%);
}

.services .services-content .cta-container .btn-outline:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  border-color: var(--heading-color);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .services .service-item {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services .services-image-container {
    margin-bottom: 2rem;
  }

  .services .services-image-container .experience-badge {
    padding: 1rem;
    transform: translate(10%, 10%);
  }

  .services .services-image-container .experience-badge .years {
    font-size: 2rem;
  }

  .services .services-image-container .experience-badge .text {
    font-size: 0.8rem;
  }
}

.services .btn-primary {
  display: inline-block;
  background: var(--accent-color);
  border-radius: 50px;
  padding: 15px 35px;
  color: var(--contrast-color);
  font-weight: 500;
  font-size: 16px;
  border: none;
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 {
  padding-top: 60px;
  position: relative;
  width: 100%;
  height: 100vh;
  /* 或者你可以根据需要调整高度 */
  overflow: hidden;
  padding-bottom: 60px;
}

.about-2 .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 确保视频填充整个屏幕，保持纵横比 */
}

.about-2 .banner-position {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 使文本区域居中 */
  text-align: center;
  color: #ffffff;
  z-index: 1;
  /* 确保文本在视频上方 */
}

.about-2 .fadeInLeft {
  animation: fadeInLeft 1.5s ease-out forwards;
}

.about-2 .fadeInRight {
  animation: fadeInRight 1.5s ease-out forwards;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

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

.about-2 .content {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding-top: 50px;
  padding-bottom: 50px;
}

.about-2 .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.about-2 .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.about-2 p {
  line-height: 1.7;
  color: var(--default-color);
}

.about-2 .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.about-2 .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.about-2 .lead {
  line-height: 1.6;
  font-size: 18px;
  font-weight: normal;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  padding-top: 60px;
  padding-bottom: 60px;
}

.team .team-slider {
  overflow: hidden;
  margin-bottom: 24px;
}

.team .slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team .slider-nav .swiper-button-prev,
.team .slider-nav .swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  margin: 0;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50%;
  transition: 0.3s;
}

.team .slider-nav .swiper-button-prev::after,
.team .slider-nav .swiper-button-next::after {
  font-size: 14px;
  color: var(--default-color);
}

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

.team .slider-nav .swiper-button-prev:hover::after,
.team .slider-nav .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

.team .member .member-img {
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 20px;
}

.team .member .member-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.team .member .member-img .social a {
  color: var(--contrast-color);
  font-size: 20px;
  transition: 0.3s;
}

.team .member .member-img .social a:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.team .member .member-img:hover .social {
  opacity: 1;
  visibility: visible;
}

.team .member .member-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.team .member .member-info span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

.team .btn-primary {
  display: inline-block;
  background: var(--accent-color);
  border-radius: 50px;
  padding: 15px 35px;
  color: var(--contrast-color);
  font-weight: 500;
  font-size: 16px;
  border: none;
}

/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero {
  padding: 0;
}

.blog-hero .blog-hero-slider {
  position: relative;
  overflow: hidden;
}

.blog-hero .blog-hero-item {
  position: relative;
  height: 80vh;
  min-height: 600px;
}

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

.blog-hero .blog-hero-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.1) 100%);
}

.blog-hero .blog-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 60px;
  color: var(--contrast-color);
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.blog-hero .blog-hero-content .category {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-hero .blog-hero-content h3 {
  color: var(--contrast-color);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .blog-hero .blog-hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .blog-hero .blog-hero-content h1 {
    font-size: 28px;
  }
}

.blog-hero .blog-hero-content .meta {
  margin-bottom: 30px;
  font-size: 14px;
}

.blog-hero .blog-hero-content .meta span {
  display: inline-block;
  margin-right: 20px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.blog-hero .blog-hero-content .meta span:last-child {
  margin-right: 0;
}

.blog-hero .blog-hero-content .meta span a {
  color: var(--contrast-color);
  font-weight: 600;
}

.blog-hero .blog-hero-content .meta span a:hover {
  color: var(--accent-color);
}

@media (max-width: 767px) {
  .blog-hero .blog-hero-content .meta span {
    display: block;
    margin: 0 0 10px 0;
  }
}

.blog-hero .blog-hero-content .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--contrast-color);
  font-weight: 500;
}

.blog-hero .blog-hero-content .read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.blog-hero .blog-hero-content .read-more:hover {
  color: var(--accent-color);
}

.blog-hero .blog-hero-content .read-more:hover i {
  transform: translateX(5px);
}

@media (max-width: 767px) {
  .blog-hero .blog-hero-content {
    padding: 30px;
  }
}

.blog-hero .swiper-button-prev,
.blog-hero .swiper-button-next {
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
}

.blog-hero .swiper-button-prev::after,
.blog-hero .swiper-button-next::after {
  font-size: 32px;
}

.blog-hero .swiper-button-prev:hover,
.blog-hero .swiper-button-next:hover {
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

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

.features .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

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

.features .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.features-2 .icon-list i {
  margin-right: 10px;
  font-size: 24px;
  line-height: 1;
}

.features-2 .icon-list span {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-2 .phone-wrap {
  position: absolute;
  right: 0;
}

@media (max-width: 768px) {
  .features-2 .phone-wrap {
    position: relative;
  }
}

.features-2 .phone-wrap img {
  width: 840px;
}

@media (max-width: 992px) {
  .features-2 .phone-wrap img {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .features-2 .phone-wrap img {
    width: 100%;
  }
}

.features-2 .details {
  margin-top: 80px;
  padding: 120px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}

.features-2 .details h4 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features-2 .details p {
  margin-bottom: 20px;
  font-size: 15px;
}

.features-2 .details .btn-get-started {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-family: var(--heading-font);
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
}

.features-2 .details .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
  height: 100%;
}

.cards .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.cards .card .card-img img {
  transition: 0.3s ease-in-out;
}

.cards .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
}

.cards .card a {
  color: var(--heading-color);
  transition: 0.3;
}

.cards .card a:hover {
  color: var(--accent-color);
}

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

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-card {
  height: 100%;
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.faq .faq-card i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.faq .faq-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.faq .faq-card p {
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-card .btn-primary {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

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

.faq .faq-list {
  padding: 0;
}

.faq .faq-list .faq-item {
  position: relative;
  margin-bottom: 25px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: pointer;
}

.faq .faq-list .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-list .faq-item h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding-right: 40px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}

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

.faq .faq-list .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
  overflow: hidden;
}

.faq .faq-list .faq-item .faq-toggle {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 24px;
  color: var(--accent-color);
  transition: transform 0.2s ease;
}

.faq .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq .faq-list .faq-item.faq-active .faq-toggle {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq .faq-list .faq-item {
    padding: 20px;
  }

  .faq .faq-list .faq-item h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .faq .faq-list .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Gallery 3 Section
--------------------------------------------------------------*/
.gallery-3 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.gallery-3 .isotope-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.gallery-3 .isotope-filters li {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.gallery-3 .isotope-filters li:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.gallery-3 .isotope-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 576px) {
  .gallery-3 .isotope-filters li {
    margin-bottom: 5px;
  }
}

.gallery-3 .gallery-item {
  margin-bottom: 30px;
}

.gallery-3 .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-3 .gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.gallery-3 .gallery-card:hover .gallery-info {
  opacity: 1;
  transform: translateY(0);
}

.gallery-3 .gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery-3 .gallery-img img {
  transition: transform 0.6s ease;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

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

.gallery-3 .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.4) 60%,
      rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.gallery-3 .gallery-info {
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.gallery-3 .gallery-info h4 {
  color: var(--contrast-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.gallery-3 .gallery-info p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-size: 14px;
  margin-bottom: 15px;
}

.gallery-3 .gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.gallery-3 .gallery-link i {
  font-size: 20px;
}

.gallery-3 .gallery-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .gallery-3 .gallery-info h4 {
    font-size: 16px;
  }

  .gallery-3 .gallery-info p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .gallery-3 .isotope-filters li {
    padding: 6px 14px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .gallery-3 .gallery-overlay {
    padding: 15px;
  }

  .gallery-3 .gallery-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .gallery-3 .gallery-info p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .gallery-3 .gallery-link {
    width: 35px;
    height: 35px;
  }

  .gallery-3 .gallery-link i {
    font-size: 18px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.call-to-action-3 .cta-box .content .cta-buttons .btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.call-to-action-3 .cta-box .content .cta-buttons .btn-cta i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

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

.call-to-action-3 .cta-box .content .cta-buttons .btn-cta:hover i {
  transform: translateX(5px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .section-category {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact .content h2 {
  font-weight: 700;
  line-height: 1.2;
}

.contact .content .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.contact .contact-info .info-item {
  font-size: 1.1rem;
}

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

.contact .contact-info .map-link {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact .contact-info .map-link i {
  transition: transform 0.3s ease;
}

.contact .contact-info .map-link:hover {
  color: var(--accent-color);
}

.contact .contact-info .map-link:hover i {
  transform: translateX(5px);
}

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

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.75rem 1.25rem;
  border-color: #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

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

.contact .contact-form .btn-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.contact .contact-form .btn-submit:active {
  transform: translateY(0);
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color) 10%, transparent);
  margin-bottom: 1rem;
}

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

.about-3 .about-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.about-3 .about-description p {
  font-size: 18px;
}

.about-3 .about-description,
.about-3 .section-text {
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  line-height: 1.6;
}

.about-3 .features-boxes .feature-box {
  height: 100%;
  position: relative;
}

.about-3 .features-boxes .feature-box .icon-box {
  width: 60px;
  height: 60px;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.about-3 .features-boxes .feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-3 .features-boxes .feature-box h3 a {
  color: var(--heading-color);
}

.about-3 .features-boxes .feature-box p {
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  margin-bottom: 0;
  line-height: 1.6;
}

.about-3 .features-boxes .feature-box:hover .icon-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about-3 .features-boxes .feature-box:hover h3 a {
  color: var(--accent-color);
}

.about-3 .video-box {
  position: relative;
  overflow: hidden;
}

.about-3 .video-box img {
  width: 100%;
  border-radius: 20px;
}

.about-3 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Cards 2 Section
--------------------------------------------------------------*/
.cards-2 .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

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

.cards-2 .why-box p {
  margin-bottom: 30px;
}

.cards-2 .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.cards-2 .why-box .more-btn i {
  font-size: 14px;
}

.cards-2 .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.cards-2 .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cards-2 .icon-box i {
  color: var(--accent-color);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.cards-2 .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

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

.cards-2 .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  padding-top: 60px;
  padding-bottom: 60px;
}

.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #ffffff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

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

.glightbox-clean .gslide-description {
  background: #272727;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: none;
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.tabs .nav-tabs .nav-item {
  margin-bottom: 15px;
}

.tabs .nav-tabs .nav-item:last-child {
  margin-bottom: 0;
}

.tabs .nav-tabs .nav-link {
  padding: 20px;
  border: none;
  border-radius: 12px;
  background: var(--surface-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.tabs .nav-tabs .nav-link .d-flex {
  position: relative;
  z-index: 1;
}

.tabs .nav-tabs .nav-link .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
}

.tabs .nav-tabs .nav-link .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.tabs .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--heading-color);
  transition: all 0.4s ease;
}

.tabs .nav-tabs .nav-link p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.4s ease;
}

.tabs .nav-tabs .nav-link:hover {
  transform: translateY(-2px);
}

.tabs .nav-tabs .nav-link:hover::before {
  opacity: 1;
}

.tabs .nav-tabs .nav-link:hover .icon-box {
  background: var(--accent-color);
}

.tabs .nav-tabs .nav-link:hover .icon-box i {
  color: var(--contrast-color);
}

.tabs .nav-tabs .nav-link:hover h4 {
  color: var(--accent-color);
}

.tabs .nav-tabs .nav-link:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .nav-tabs .nav-link.active {
  background: var(--accent-color);
}

.tabs .nav-tabs .nav-link.active::before {
  opacity: 0;
}

.tabs .nav-tabs .nav-link.active .icon-box {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.tabs .nav-tabs .nav-link.active .icon-box i {
  color: var(--contrast-color);
}

.tabs .nav-tabs .nav-link.active h4 {
  color: var(--contrast-color);
}

.tabs .nav-tabs .nav-link.active p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.tabs .tab-content .content-box {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.tabs .tab-content .content-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.tabs .tab-content .content-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

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

.tabs .tab-content .content-box p.highlight {
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--accent-color), transparent 92%),
      color-mix(in srgb, var(--accent-color), transparent 95%));
  padding: 20px;
  border-radius: 12px;
  position: relative;
}

.tabs .tab-content .content-box .features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.tabs .tab-content .content-box .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-left: 8px;
  transition: all 0.3s ease;
}

.tabs .tab-content .content-box .features-list li:last-child {
  margin-bottom: 0;
}

.tabs .tab-content .content-box .features-list li i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 12px;
}

.tabs .tab-content .content-box .features-list li span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .tab-content .content-box .features-list li:hover {
  transform: translateX(5px);
}

.tabs .tab-content .content-box .features-list li:hover span {
  color: var(--default-color);
}

.tabs .tab-content .content-box .image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tabs .tab-content .content-box .image-box img {
  transition: all 0.6s ease;
}

.tabs .tab-content .content-box .image-box:hover img {
  transform: scale(1.05);
}

.tabs .tab-content .content-box .image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.tabs .tab-pane {
  transition: all 0.4s ease;
}

.tabs .tab-pane.fade {
  transform: translateY(10px);
  opacity: 0;
}

.tabs .tab-pane.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .tabs .nav-tabs {
    margin-bottom: 30px;
  }

  .tabs .nav-tabs .nav-link {
    padding: 15px;
  }

  .tabs .nav-tabs .nav-link .icon-box {
    width: 40px;
    height: 40px;
  }

  .tabs .nav-tabs .nav-link .icon-box i {
    font-size: 20px;
  }

  .tabs .tab-content .content-box {
    padding: 30px;
  }

  .tabs .tab-content .content-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .tabs .nav-tabs .nav-item {
    margin-bottom: 10px;
  }

  .tabs .nav-tabs .nav-link h4 {
    font-size: 15px;
  }

  .tabs .nav-tabs .nav-link p {
    font-size: 13px;
  }

  .tabs .tab-content .content-box {
    padding: 25px;
  }

  .tabs .tab-content .content-box h3 {
    font-size: 22px;
  }

  .tabs .tab-content .content-box p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Gallery 2 Section
--------------------------------------------------------------*/
.gallery-2 {
  overflow: hidden;
}

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

.gallery-2 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery-2 .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

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

.gallery-2 .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery-2 .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery-2 .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

/*--------------------------------------------------------------
# Call To Action 4 Section
--------------------------------------------------------------*/
.call-to-action-4 {
  position: relative;
  padding: 80px 0;
  background-color: var(--accent-color);
  overflow: hidden;
}

.call-to-action-4 h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--surface-color);
  position: relative;
  z-index: 1;
}

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

.call-to-action-4 .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--surface-color), transparent 15%);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.call-to-action-4 .cta-buttons {
  position: relative;
  z-index: 1;
}

.call-to-action-4 .cta-buttons .btn {
  padding: 12px 32px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.call-to-action-4 .cta-buttons .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.call-to-action-4 .cta-buttons .btn:hover::before {
  width: 300px;
  height: 300px;
}

.call-to-action-4 .cta-buttons .btn-primary {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border: none;
}

.call-to-action-4 .cta-buttons .btn-primary:hover {
  background-color: var(--contrast-color);
  transform: translateY(-2px);
}

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

.call-to-action-4 .cta-buttons .btn-outline:hover {
  color: var(--surface-color);
  transform: translateY(-2px);
}

.call-to-action-4 .stats {
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.call-to-action-4 .stats .stat-item {
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.call-to-action-4 .stats .stat-item:hover {
  transform: translateY(-5px);
}

.call-to-action-4 .stats .stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--surface-color);
  margin-bottom: 0.5rem;
}

.call-to-action-4 .stats .stat-item p {
  color: color-mix(in srgb, var(--surface-color), transparent 15%);
  font-size: 1rem;
  margin: 0;
}

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

  .call-to-action-4 .stats .stat-item {
    margin-bottom: 2rem;
  }

  .call-to-action-4 .stats .stat-item h3 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# About 4 Section
--------------------------------------------------------------*/
.about-4 .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0 0 20px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-content .portfolio-info {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 20px;
  position: relative;
  z-index: 2;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-content .portfolio-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Product List 3 Section
--------------------------------------------------------------*/
.product-list-3 .product-box {
  position: relative;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-list-3 .product-box:hover {
  transform: translateY(-8px);
}

.product-list-3 .product-box:hover .product-overlay {
  opacity: 1;
  visibility: visible;
}

.product-list-3 .product-box:hover .main-img {
  transform: scale(1.08);
}

.product-list-3 .product-thumb {
  position: relative;
  overflow: hidden;
  padding-bottom: 75%;
}

.product-list-3 .main-img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-list-3 .product-label {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35em 0.8em;
  border-radius: 30px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.product-list-3 .product-label a {
  color: #fff;
}

.product-list-3 .product-label.product-label-sale {
  background-color: #e53e3e;
}

.product-list-3 .product-label.product-label-sold {
  background-color: #718096;
}

.product-list-3 .product-label.product-label-hot {
  background-color: #dd6b20;
}

.product-list-3 .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.product-list-3 .product-quick-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.product-list-3 .quick-action-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.product-list-3 .quick-action-btn a:hover {
  color: #fff;
}

.product-list-3 .quick-action-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.product-list-3 .add-to-cart-container {
  width: 100%;
}

.product-list-3 .add-to-cart-btn {
  width: 100%;
  padding: 0.8rem 1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
}

.product-list-3 .add-to-cart-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.product-list-3 .add-to-cart-btn.disabled {
  background-color: #a0aec0;
  cursor: not-allowed;
}

.product-list-3 .add-to-cart-btn.disabled:hover {
  background-color: #a0aec0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-list-3 .product-content {
  padding: 1.5rem;
}

.product-list-3 .product-details {
  margin-bottom: 1rem;
}

.product-list-3 .product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  height: 2.8rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: var(--heading-color);
}

.product-list-3 .product-title a {
  color: inherit;
}

.product-list-3 .product-title a:hover {
  color: var(--accent-color);
}

.product-list-3 .product-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-list-3 .product-price span {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.product-list-3 .product-price .original {
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-list-3 .product-price .sale {
  color: #e53e3e;
}

.product-list-3 .product-rating-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.product-list-3 .rating-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-right: 0.5rem;
}

.product-list-3 .rating-stars i {
  margin-right: 1px;
}

.product-list-3 .rating-number {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-color);
}

.product-list-3 .product-color-options {
  display: flex;
  gap: 0.5rem;
}

.product-list-3 .color-option {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
}

.product-list-3 .color-option:hover {
  transform: scale(1.1);
}

.product-list-3 .color-option.active:after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
}

@media (max-width: 991.98px) {
  .product-list-3 .product-title {
    font-size: 0.95rem;
    height: 2.6rem;
  }

  .product-list-3 .product-content {
    padding: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .product-list-3 .product-box {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-list-3 .product-overlay {
    opacity: 1;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .product-list-3 .add-to-cart-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}

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

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

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

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

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

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

.cards-5 .card-item .card-img img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  width: 100%;
  min-height: 30vh;
  position: relative;
  padding: 120px 0 120px 0;
  display: flex;
  align-items: center;
}

.hero-2 h2 {
  margin: 0 0 10px 0;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
}

.hero-2 h2 .underlight {
  position: relative;
  z-index: 1;
  padding: 0 5px;
  display: inline-block;
}

.hero-2 h2 .underlight:before {
  content: "";
  position: absolute;
  height: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent-color);
  z-index: -1;
}

.hero-2 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  font-size: 18px;
}

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

.hero-2 .btn-get-started {
  color: var(--contrast-color);
  background: var(--nav-hover-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid var(--accent-color);
  margin-top: 30px;
}

.hero-2 .btn-get-started:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# About 5 Section
--------------------------------------------------------------*/
.about-5 .small-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.about-5 .about-title {
  font-size: 2.2rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.2;
}

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

.about-5 .about-description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.125rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .about-5 .description-wrapper {
    border-left: 1px solid var(--accent-color);
    padding-left: 30px;
  }
}

.about-5 .content-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-5 .content-card .card-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 5px;
}

.about-5 .content-card .card-image img {
  transition: transform 0.5s ease;
}

.about-5 .content-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-5 .content-card .card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-5 .content-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
  flex: 1;
}

.about-5 .content-card .card-content .read-more {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-5 .content-card .card-content .read-more:hover {
  gap: 0.75rem;
}

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

.about-5 .content-card .card-content .read-more i {
  transition: transform 0.3s ease;
}

.about-5 .content-card:hover .card-image img {
  transform: scale(1.05);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Hero 3 Section
--------------------------------------------------------------*/
.hero-3 {
  --background-color: #06854f;
  width: 100%;
  min-height: 30vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero-3 h2 {
  margin: 0 0 10px 0;
  font-size: 38px;
  font-weight: 700;
}

.hero-3 h2 .underlight {
  position: relative;
  z-index: 1;
  padding: 0 5px;
  display: inline-block;
}

.hero-3 h2 .underlight:before {
  content: "";
  position: absolute;
  height: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent-color);
  z-index: -1;
}

.hero-3 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  font-size: 18px;
}

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

.hero-3 .btn-get-started {
  color: var(--accent-color);
  background: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 8px 40px;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid var(--accent-color);
}

.hero-3 .btn-get-started:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  margin: 0 auto;
  position: relative;
}

.blog-details .article-header {
  margin: 0 auto 3rem;
  text-align: center;
}

.blog-details .article-header .meta-categories {
  margin-bottom: 1.5rem;
}

.blog-details .article-header .meta-categories .category {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  margin: 0 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.blog-details .article-header .meta-categories .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-header .title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
  font-weight: 700;
}

@media (max-width: 768px) {
  .blog-details .article-header .title {
    font-size: 2.2rem;
  }
}

.blog-details .article-header .article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-details .article-header .article-meta .author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-header .article-meta .author .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-header .article-meta .author .author-info {
  text-align: left;
}

.blog-details .article-header .article-meta .author .author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-header .article-meta .author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.blog-details .article-header .article-meta .post-info {
  display: flex;
  gap: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-header .article-meta .post-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .blog-details .article-header .article-meta {
    justify-content: center;
    text-align: center;
  }

  .blog-details .article-header .article-meta .post-info {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.blog-details .article-featured-image {
  margin: 0 -2rem 3rem;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

.blog-details .article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .blog-details .article-featured-image {
    margin: 0 -1rem 2rem;
    height: 300px;
  }
}

.blog-details .article-wrapper {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 3rem;
  position: relative;
}

@media (max-width: 992px) {
  .blog-details .article-wrapper {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .table-of-contents {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .blog-details .article-wrapper .table-of-contents {
    display: none;
  }
}

.blog-details .article-wrapper .table-of-contents h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 700;
}

.blog-details .article-wrapper .table-of-contents nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-wrapper .table-of-contents nav ul li {
  line-height: 62px;
  font-size: 18px;
  border-bottom: 1px solid #ccc;
}

.blog-details .article-wrapper .table-of-contents nav ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding-left: 1rem;
  position: relative;
  font-size: 18px;
}

.blog-details .article-wrapper .table-of-contents nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-color);
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover,
.blog-details .article-wrapper .table-of-contents nav ul li a.active {
  color: var(--heading-color);
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover::before,
.blog-details .article-wrapper .table-of-contents nav ul li a.active::before {
  opacity: 1;
}

.blog-details .article-wrapper .article-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

.blog-details .article-wrapper .article-content .content-section {
  margin-bottom: 4rem;
}

.blog-details .article-wrapper .article-content .content-section .lead {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.blog-details .article-wrapper .article-content .content-section h2 {
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote {
  margin: 3rem 0;
  padding: 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote {
  padding-left: 3rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
  float: right;
  max-width: 450px;
  margin: 0 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption img {
  width: 100%;
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption figcaption {
  padding: 1rem;
  background: var(--surface-color);
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .feature-points {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point i {
  font-size: 2rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point h4 {
  margin: 0 0 0.5rem;
  color: var(--heading-color);
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point p {
  margin: 0;
  font-size: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid {
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon {
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul li {
  margin-bottom: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.blog-details .article-wrapper .article-content .content-section .key-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .key-principles {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle .number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle h4 {
  color: var(--heading-color);
  margin: 1rem 0;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .info-box .icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .info-box .content h4 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box .content p {
  margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .future-trends {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .future-trends {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend:hover {
  transform: translateY(-5px);
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend p {
  margin: 0;
  font-size: 0.95rem;
}

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

.blog-details .article-footer h4 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .article-footer .share-article {
  margin-bottom: 3rem;
}

.blog-details .article-footer .share-article .share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-details .article-footer .share-article .share-buttons .share-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--surface-color);
  border-radius: 30px;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-footer .share-article .share-buttons .share-button i {
  font-size: 1.2rem;
}

.blog-details .article-footer .share-article .share-buttons .share-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-footer .share-article .share-buttons .share-button.twitter:hover {
  background: #1da1f2;
}

.blog-details .article-footer .share-article .share-buttons .share-button.facebook:hover {
  background: #4267b2;
}

.blog-details .article-footer .share-article .share-buttons .share-button.linkedin:hover {
  background: #0077b5;
}

.blog-details .article-footer .article-tags .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-details .article-footer .article-tags .tags .tag {
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-footer .article-tags .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .faq-tabs .nav-pills {
  display: inline-flex;
  padding: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 50px;
}

.faq-2 .faq-tabs .nav-pills .nav-item {
  margin: 0 5px;
}

.faq-2 .faq-tabs .nav-pills .nav-item:first-child {
  margin-left: 0;
}

.faq-2 .faq-tabs .nav-pills .nav-item:last-child {
  margin-right: 0;
}

.faq-2 .faq-tabs .nav-pills .nav-link {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.faq-2 .faq-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
}

.faq-2 .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-2 .faq-tabs .nav-pills .nav-link i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .faq-2 .faq-tabs .nav-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .faq-2 .faq-tabs .nav-pills .nav-item {
    margin: 5px;
  }
}

.faq-2 .faq-list .faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-2 .faq-list .faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.faq-2 h3 {
  font-size: 36px;
  font-weight: 700;
}

.faq-2 .faq-list .faq-item h3 {
  display: flex;
  align-items: center;
  padding: 30px 25px;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  position: relative;
}

.faq-2 .faq-list .faq-item h3:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.faq-2 .faq-list .faq-item h3 .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 15px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-2 .faq-list .faq-item h3 .question {
  flex: 1;
}

.faq-2 .faq-list .faq-item h3 .faq-toggle {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-left: 15px;
}

.faq-2 .faq-list .faq-item .faq-content {
  padding: 15px;
  display: none;
}

.faq-2 .faq-list .faq-item .faq-content p {
  overflow: hidden;
  padding: 0;
  margin: 0;
  font-size: 18px;
  padding: 30px 25px;
}

.faq-2 .faq-list .faq-item .faq-content p:last-child {
  margin-bottom: 0;
  overflow: hidden;
}

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

.faq-2 .faq-list .faq-item.faq-active h3 .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.faq-2 .faq-list .faq-item.faq-active .faq-content {
  display: block;
}

.faq-2 .faq-cta {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 100px;
  border-radius: 10px;
}

.faq-2 .faq-cta p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.faq-2 .faq-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 20px;
}

.faq-2 .faq-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .faq-2 .faq-list .faq-item h3 {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .faq-2 .faq-list .faq-item h3 .num {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    font-size: 0.8rem;
  }

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

  .faq-2 .faq-list .faq-item .faq-content.faq-active .content-inner {
    padding: 15px 20px;
  }
}

/*--------------------------------------------------------------
# Features 3 Section
--------------------------------------------------------------*/
.features-3 .feature-item {
  padding: 5rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.features-3 .feature-item:first-child {
  padding-top: 2rem;
}

.features-3 .feature-item:last-child {
  border-bottom: none;
  padding-bottom: 2rem;
}

.features-3 .feature-content {
  padding-right: 3rem;
}

.order-lg-2 .features-3 .feature-content {
  padding-right: 0;
  padding-left: 3rem;
}

.features-3 .feature-content .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(45deg,
      var(--accent-color),
      color-mix(in srgb, var(--accent-color), transparent 30%));
  color: var(--contrast-color);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.features-3 .feature-content .icon i {
  font-size: 1.5rem;
}

.features-3 .feature-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.features-3 .feature-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
}

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

.features-3 .feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

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

.features-3 .feature-list li:last-child {
  margin-bottom: 0;
}

.features-3 .feature-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.features-3 .feature-image img {
  width: 100%;
  transition: transform 0.6s ease;
}

.features-3 .feature-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .features-3 .feature-item {
    padding: 3rem 0;
  }

  .features-3 .feature-content {
    padding: 0 0 2rem 0;
    text-align: center;
  }

  .order-lg-2 .features-3 .feature-content {
    padding: 0 0 2rem 0;
  }

  .features-3 .feature-content h3 {
    font-size: 1.75rem;
  }

  .features-3 .feature-content .icon {
    margin: 0 auto 1.5rem;
  }

  .features-3 .feature-list li {
    justify-content: center;
  }

  .features-3 .feature-image {
    margin: 0 auto;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .features-3 .feature-item {
    padding: 2.5rem 0;
  }

  .features-3 .feature-content h3 {
    font-size: 1.5rem;
  }

  .features-3 .feature-content p {
    font-size: 1rem;
  }

  .features-3 .feature-list li {
    font-size: 1rem;
  }
}

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

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

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

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .services-header {
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .services-2 .services-header {
    margin-bottom: 3rem;
  }
}

.services-2 .services-intro {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .services-2 .services-intro {
    padding-right: 0;
    margin-bottom: 2.5rem;
  }
}

.services-2 .services-intro .services-tag {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-2 .services-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--heading-color);
}

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

.services-2 .services-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services-2 .services-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services-2 .services-stats .stat-item {
  background: linear-gradient(135deg,
      var(--surface-color),
      color-mix(in srgb, var(--surface-color), var(--accent-color) 5%));
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--accent-color);
}

.services-2 .services-stats .stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.services-2 .services-stats .stat-item .stat-label {
  display: block;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 500;
}

.services-2 .service-card {
  height: 100%;
}

.services-2 .service-card .service-card-inner {
  background-color: var(--surface-color);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.services-2 .service-card .service-card-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.services-2 .service-card .service-card-inner .service-icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.services-2 .service-card .service-card-inner h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services-2 .service-card .service-card-inner p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Cards 4 Section
--------------------------------------------------------------*/
.cards-4 .card-item {
  padding: 1.5rem;
  border-radius: 0.5rem;
  background-color: var(--surface-color);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.cards-4 .card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.cards-4 .card-item .card-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.cards-4 .card-item h3 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cards-4 .card-item p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cards-4 .image-wrapper img {
  border-radius: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Ecommerce Product Details Section
--------------------------------------------------------------*/
.ecommerce-product-details {
  padding-top: 60px;
  padding-bottom: 62px;
}

.ecommerce-product-details .product-images {
  position: relative;
  margin-bottom: 2rem;
}

.ecommerce-product-details .product-images .main-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--surface-color);
}

.ecommerce-product-details .product-images .main-image-container .image-zoom-container {
  position: relative;
  width: 100%;
}

.ecommerce-product-details .product-images .main-image-container .image-zoom-container .main-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: crosshair;
}

.ecommerce-product-details .product-images .drift-zoom-pane {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ecommerce-product-details .product-images .drift-zoom-pane.drift-opening {
  animation: drift-fadeZoomIn 180ms ease-out;
}

.ecommerce-product-details .product-images .drift-zoom-pane.drift-closing {
  animation: drift-fadeZoomOut 210ms ease-in;
}

.ecommerce-product-details .product-images .drift-zoom-pane-loader {
  display: none;
}

@keyframes drift-fadeZoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes drift-fadeZoomOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

.ecommerce-product-details .product-images .product-thumbnails {
  margin-top: 1rem;
}

.ecommerce-product-details .product-images .product-thumbnails .swiper-wrapper {
  height: auto !important;
}

.ecommerce-product-details .product-images .product-thumbnails .thumbnail-item {
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-images .product-thumbnails .thumbnail-item:hover {
  opacity: 0.9;
}

.ecommerce-product-details .product-images .product-thumbnails .thumbnail-item.active {
  border-color: var(--accent-color);
  opacity: 1;
}

.ecommerce-product-details .product-images .product-thumbnails .thumbnail-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ecommerce-product-details .product-images .product-thumbnails .swiper-button-next,
.ecommerce-product-details .product-images .product-thumbnails .swiper-button-prev {
  color: var(--accent-color);
  background-color: var(--surface-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ecommerce-product-details .product-images .product-thumbnails .swiper-button-next::after,
.ecommerce-product-details .product-images .product-thumbnails .swiper-button-prev::after {
  font-size: 14px;
}

.ecommerce-product-details .product-info {
  padding: 0 0.5rem;
}

@media (min-width: 992px) {
  .ecommerce-product-details .product-info {
    padding: 0 1rem;
  }
}

.ecommerce-product-details .product-info .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ecommerce-product-details .product-info .product-meta .product-category {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ecommerce-product-details .product-info .product-meta .product-rating {
  display: flex;
  align-items: center;
}

.ecommerce-product-details .product-info .product-meta .product-rating i {
  color: #ffd700;
  font-size: 0.875rem;
  margin-right: 2px;
}

.ecommerce-product-details .product-info .product-meta .product-rating .rating-count {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-left: 4px;
}

.ecommerce-product-details .product-info .product-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  color: var(--heading-color);
}

@media (min-width: 768px) {
  .ecommerce-product-details .product-info .product-title {
    font-size: 2rem;
  }
}

.ecommerce-product-details .product-info .product-price-container {
  display: flex;
  align-items: center;
}

.ecommerce-product-details .product-info .product-price-container .current-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
}

.ecommerce-product-details .product-info .product-price-container .original-price {
  font-size: 1.125rem;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-left: 0.75rem;
}

.ecommerce-product-details .product-info .product-price-container .discount-badge {
  background-color: #e53935;
  color: var(--contrast-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.75rem;
}

.ecommerce-product-details .product-info .product-short-description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.ecommerce-product-details .product-info .product-availability {
  display: flex;
  align-items: center;
}

.ecommerce-product-details .product-info .product-availability i {
  margin-right: 0.5rem;
}

.ecommerce-product-details .product-info .product-availability .stock-count {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.ecommerce-product-details .product-info .product-colors .option-title {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.ecommerce-product-details .product-info .product-colors .color-options {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.ecommerce-product-details .product-info .product-colors .color-options .color-option {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-info .product-colors .color-options .color-option:hover {
  transform: scale(1.1);
}

.ecommerce-product-details .product-info .product-colors .color-options .color-option.active {
  border-color: var(--accent-color);
}

.ecommerce-product-details .product-info .product-colors .color-options .color-option.active i {
  opacity: 1;
}

.ecommerce-product-details .product-info .product-colors .color-options .color-option i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--contrast-color);
  font-size: 0.875rem;
  opacity: 0;
}

.ecommerce-product-details .product-info .product-colors .selected-option {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.ecommerce-product-details .product-info .product-sizes .option-title {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.ecommerce-product-details .product-info .product-sizes .size-options {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.ecommerce-product-details .product-info .product-sizes .size-options .size-option {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-info .product-sizes .size-options .size-option:hover {
  border-color: var(--accent-color);
}

.ecommerce-product-details .product-info .product-sizes .size-options .size-option.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.ecommerce-product-details .product-info .product-sizes .selected-option {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.ecommerce-product-details .product-info .product-quantity .option-title {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.ecommerce-product-details .product-info .product-quantity .quantity-selector {
  display: flex;
  align-items: center;
  max-width: 150px;
}

.ecommerce-product-details .product-info .product-quantity .quantity-selector .quantity-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-info .product-quantity .quantity-selector .quantity-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.ecommerce-product-details .product-info .product-quantity .quantity-selector .quantity-btn.decrease {
  border-radius: 4px 0 0 4px;
}

.ecommerce-product-details .product-info .product-quantity .quantity-selector .quantity-btn.increase {
  border-radius: 0 4px 4px 0;
}

.ecommerce-product-details .product-info .product-quantity .quantity-selector .quantity-input {
  width: 60px;
  height: 36px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-left: none;
  border-right: none;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
}

.ecommerce-product-details .product-info .product-quantity .quantity-selector .quantity-input:focus {
  border-color: var(--accent-color);
  outline: none;
}

.ecommerce-product-details .product-info .product-quantity .quantity-selector .quantity-input::-webkit-inner-spin-button,
.ecommerce-product-details .product-info .product-quantity .quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ecommerce-product-details .product-info .product-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.ecommerce-product-details .product-info .product-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-info .product-actions .btn i {
  margin-right: 0.5rem;
}

.ecommerce-product-details .product-info .product-actions .add-to-cart-btn {
  flex: 1;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.ecommerce-product-details .product-info .product-actions .add-to-cart-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.ecommerce-product-details .product-info .product-actions .buy-now-btn {
  flex: 1;
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.ecommerce-product-details .product-info .product-actions .buy-now-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.ecommerce-product-details .product-info .product-actions .wishlist-btn {
  width: 46px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecommerce-product-details .product-info .product-actions .wishlist-btn i {
  margin-right: 0;
  font-size: 1.125rem;
}

.ecommerce-product-details .product-info .product-actions .wishlist-btn:hover {
  color: #fff;
  border-color: #e53935;
  background-color: #e53935;
}

@media (max-width: 575px) {
  .ecommerce-product-details .product-info .product-actions {
    flex-direction: column;
    justify-content: center;
  }

  .ecommerce-product-details .product-info .product-actions .wishlist-btn {
    align-self: center;
  }
}

.ecommerce-product-details .product-info .additional-info {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.ecommerce-product-details .product-info .additional-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.ecommerce-product-details .product-info .additional-info .info-item i {
  color: var(--accent-color);
  font-size: 1.125rem;
  margin-right: 0.75rem;
}

.ecommerce-product-details .product-info .additional-info .info-item span {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.ecommerce-product-details .product-details-tabs {
  margin-top: 3rem;
}

.ecommerce-product-details .product-details-tabs .nav-tabs {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 1.5rem;
}

.ecommerce-product-details .product-details-tabs .nav-tabs .nav-item {
  margin-bottom: -1px;
}

.ecommerce-product-details .product-details-tabs .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-details-tabs .nav-tabs .nav-link:hover {
  color: var(--accent-color);
}

.ecommerce-product-details .product-details-tabs .nav-tabs .nav-link.active {
  color: var(--accent-color);
  background-color: transparent;
  border-bottom: 2px solid var(--accent-color);
}

.ecommerce-product-details .product-details-tabs .tab-content {
  padding: 1rem 0;
}

.ecommerce-product-details .product-details-tabs .tab-content h4 {
  color: var(--heading-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.ecommerce-product-details .product-details-tabs .tab-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.ecommerce-product-details .product-details-tabs .tab-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.ecommerce-product-details .product-details-tabs .tab-content ul li {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.ecommerce-product-details .product-details-tabs .product-specifications .specs-group {
  margin-bottom: 2rem;
}

.ecommerce-product-details .product-details-tabs .product-specifications .specs-group h4 {
  margin-bottom: 1rem;
}

.ecommerce-product-details .product-details-tabs .product-specifications .specs-table .specs-row {
  display: flex;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.ecommerce-product-details .product-details-tabs .product-specifications .specs-table .specs-row:last-child {
  border-bottom: none;
}

.ecommerce-product-details .product-details-tabs .product-specifications .specs-table .specs-row .specs-label {
  width: 40%;
  padding: 0.75rem 0;
  font-weight: 600;
  color: var(--heading-color);
}

.ecommerce-product-details .product-details-tabs .product-specifications .specs-table .specs-row .specs-value {
  width: 60%;
  padding: 0.75rem 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-summary {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (min-width: 768px) {
  .ecommerce-product-details .product-details-tabs .product-reviews .reviews-summary {
    flex-direction: row;
  }
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-summary .overall-rating {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-summary .overall-rating .rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-summary .overall-rating .rating-stars {
  margin: 0.5rem 0;
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-summary .overall-rating .rating-stars i {
  color: #ffd700;
  font-size: 1.25rem;
  margin-right: 2px;
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-summary .overall-rating .rating-count {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown {
  flex: 2;
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-label {
  width: 60px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar .progress {
  flex: 1;
  height: 8px;
  margin: 0 0.75rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar .progress .progress-bar {
  background-color: #ffd700;
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-count {
  width: 30px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: right;
}

.ecommerce-product-details .product-details-tabs .product-reviews .review-form-container {
  margin-bottom: 3rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ecommerce-product-details .product-details-tabs .product-reviews .review-form-container h4 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.75rem;
}

.ecommerce-product-details .product-details-tabs .product-reviews .review-form-container h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.ecommerce-product-details .product-details-tabs .product-reviews .review-form-container .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.ecommerce-product-details .product-details-tabs .product-reviews .review-form-container .form-control {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--background-color);
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-details-tabs .product-reviews .review-form-container .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.ecommerce-product-details .product-details-tabs .product-reviews .review-form-container .form-text {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.ecommerce-product-details .product-details-tabs .product-reviews .review-form-container .star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.ecommerce-product-details .product-details-tabs .product-reviews .review-form-container .star-rating input[type="radio"] {
  display: none;
}

.ecommerce-product-details .product-details-tabs .product-reviews .review-form-container .star-rating label {
  cursor: pointer;
  font-size: 0;
  margin: 0;
  padding: 0 0.25rem;
}

.ecommerce-product-details .product-details-tabs .product-reviews .review-form-container .star-rating label i {
  font-size: 1.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.2s ease;
}

.ecommerce-product-details .product-details-tabs .product-reviews .review-form-container .star-rating input[type="radio"]:checked~label i,
.ecommerce-product-details .product-details-tabs .product-reviews .review-form-container .star-rating label:hover i,
.ecommerce-product-details .product-details-tabs .product-reviews .review-form-container .star-rating label:hover~label i {
  color: #ffd700;
}

.ecommerce-product-details .product-details-tabs .product-reviews .review-form-container .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-details-tabs .product-reviews .review-form-container .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-list h4 {
  margin-bottom: 1.5rem;
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-list .review-item {
  padding: 1.5rem;
  border-radius: 8px;
  background-color: var(--surface-color);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-header .reviewer-info {
  display: flex;
  align-items: center;
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-header .reviewer-info .reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.75rem;
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-header .reviewer-info .reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-header .reviewer-info .review-date {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-header .review-rating i {
  color: #ffd700;
  font-size: 0.875rem;
  margin-right: 2px;
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-content p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-list .load-more-btn {
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  border-color: var(--accent-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-details-tabs .product-reviews .reviews-list .load-more-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Product List 2 Section
--------------------------------------------------------------*/
.product-list-2 .product-box {
  position: relative;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-list-2 .product-box:hover {
  transform: translateY(-8px);
}

.product-list-2 .product-box:hover .product-overlay {
  opacity: 1;
  visibility: visible;
}

.product-list-2 .product-box:hover .main-img {
  transform: scale(1.08);
}

.product-list-2 .product-thumb {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}

.product-list-2 .main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-list-2 .product-label {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35em 0.8em;
  border-radius: 30px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-list-2 .product-label.product-label-sale {
  background-color: #e53e3e;
}

.product-list-2 .product-label.product-label-sold {
  background-color: #718096;
}

.product-list-2 .product-label.product-label-hot {
  background-color: #dd6b20;
}

.product-list-2 .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.product-list-2 .product-quick-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.product-list-2 .quick-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.product-list-2 .quick-action-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.product-list-2 .add-to-cart-container {
  width: 100%;
}

.product-list-2 .add-to-cart-btn {
  width: 100%;
  padding: 0.8rem 1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-list-2 .add-to-cart-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.product-list-2 .add-to-cart-btn.disabled {
  background-color: #a0aec0;
  cursor: not-allowed;
}

.product-list-2 .add-to-cart-btn.disabled:hover {
  background-color: #a0aec0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-list-2 .product-content {
  padding: 1.5rem;
}

.product-list-2 .product-details {
  margin-bottom: 1rem;
}

.product-list-2 .product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  height: 2.8rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: var(--heading-color);
}

.product-list-2 .product-title a {
  color: inherit;
}

.product-list-2 .product-title a:hover {
  color: var(--accent-color);
}

.product-list-2 .product-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-list-2 .product-price span {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.product-list-2 .product-price .original {
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-list-2 .product-price .sale {
  color: #e53e3e;
}

.product-list-2 .product-rating-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.product-list-2 .rating-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-right: 0.5rem;
}

.product-list-2 .rating-stars i {
  margin-right: 1px;
}

.product-list-2 .rating-number {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-color);
}

.product-list-2 .product-color-options {
  display: flex;
  gap: 0.5rem;
}

.product-list-2 .color-option {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
}

.product-list-2 .color-option:hover {
  transform: scale(1.1);
}

.product-list-2 .color-option.active:after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
}

@media (max-width: 991.98px) {
  .product-list-2 .product-title {
    font-size: 0.95rem;
    height: 2.6rem;
  }

  .product-list-2 .product-content {
    padding: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .product-list-2 .product-box {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-list-2 .product-overlay {
    opacity: 1;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .product-list-2 .add-to-cart-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Services 3 Section
--------------------------------------------------------------*/
.services-3 .services-content {
  padding: 1.5rem 0;
}

.services-3 .services-content .section-icon {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.services-3 .services-content .section-icon i {
  color: var(--accent-color);
  font-size: 0.75rem;
  margin-right: 0.75rem;
}

.services-3 .services-content .section-icon span {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--heading-color);
}

.services-3 .services-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

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

.services-3 .services-content p {
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 36px;
  font-size: 17px;
}

.services-3 .services-content .btn-accent {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
}

.services-3 .services-content .btn-accent:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
}

.services-3 .services-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-3 .services-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.services-3 .services-image img:hover {
  transform: scale(1.03);
}

.services-3 .services-cards {
  margin-top: 4rem;
}

.services-3 .services-cards .service-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.services-3 .services-cards .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-3 .services-cards .service-card .service-number {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  font-family: var(--heading-font);
}

.services-3 .services-cards .service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-right: 1rem;
}

.services-3 .services-cards .service-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
  margin-bottom: 0;
}

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

  .services-3 .services-cards {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .services-3 .service-card {
    margin-bottom: 1.5rem;
  }
}

/* 让这一行跨列显示 */
.full-row {
  width: 100%;
  text-align: center;
  font-weight: 700;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  background-color: #ffffff;
  list-style: none;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 25px;
}

.listing-dropdown>ul {
  display: flex;
  flex-wrap: wrap;
}

.listing-dropdown>ul>li.full-row {
  flex: 0 0 100%;
}

.accent-background {
  background: var(--heading-color);
}

/*--------------------------------------------------------------
# floating-toolbar
--------------------------------------------------------------*/

.floating-toolbar {
  position: fixed;
  top: 80%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
}

.icon-btn {
  width: 48px;
  height: 48px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}

.icon-btn:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.lang-menu {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0;
}

.lang-menu .dropdown-item:hover {
  background-color: #f8f9fa;
}

@media (max-width: 768px) {
  .floating-toolbar {
    top: auto !important;
    bottom: 80px;
    transform: none !important;
  }
}

/*--------------------------------------------------------------
# Portfolio 3 Section
--------------------------------------------------------------*/
.portfolio-3 {
  padding-top: 58px;
  padding-bottom: 60px;
}

.portfolio-3 .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.portfolio-3 .portfolio-filters li {
  padding: 8px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.portfolio-3 .portfolio-filters li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.portfolio-3 .portfolio-filters li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.portfolio-3 .portfolio-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.portfolio-3 .portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.portfolio-3 .portfolio-card .portfolio-img {
  position: relative;
  overflow: hidden;
}

.portfolio-3 .portfolio-card .portfolio-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.portfolio-3 .portfolio-card .portfolio-img .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio-3 .portfolio-card .portfolio-img .portfolio-overlay a {
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.portfolio-3 .portfolio-card .portfolio-img .portfolio-overlay a:hover {
  background-color: color-mix(in srgb, var(--accent-color), #fff 20%);
  transform: translateY(-5px);
}

.portfolio-3 .portfolio-card .portfolio-info {
  padding: 20px;
}

.portfolio-3 .portfolio-card .portfolio-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.portfolio-3 .portfolio-card .portfolio-info p {
  font-size: 0.9rem;
  color: var(--default-color);
  margin-bottom: 10px;
}

.portfolio-3 .portfolio-card .portfolio-info .portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-3 .portfolio-card .portfolio-info .portfolio-tags span {
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.portfolio-3 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.portfolio-3 .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.services-4 .services-row {
  position: relative;
}

.services-4 .services-headline {
  margin-bottom: 25px;
}

.services-4 .services-headline .services-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.services-4 .services-headline .services-title {
  color: var(--heading-color);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-4 .services-description {
  margin-bottom: 30px;
}

.services-4 .services-description p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.services-4 .services-image-container {
  position: relative;
  margin-bottom: 30px;
}

.services-4 .services-image-container .services-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 460px;
}

.services-4 .services-image-container .services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-4 .services-grid {
  margin-left: 50px;
}

@media (max-width: 991px) {
  .services-4 .services-grid {
    margin-left: 0;
    margin-top: 70px;
  }
}

.services-4 .service-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 25px;
  padding: 30px 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(154, 154, 154, 0.3);
  transition: all 0.3s ease;
  height: 100%;
}

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

.services-4 .service-card:hover .service-icon {
  color: var(--contrast-color);
  transform: scale(0.95);
}

.services-4 .service-card:hover .service-info h3 a,
.services-4 .service-card:hover .service-info p {
  color: var(--contrast-color);
  transform: scale(0.95);
}

.services-4 .service-card:hover .service-content .read-more-btn {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 84%);
  color: var(--contrast-color);
}

.services-4 .service-content .service-icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  margin: 0 auto;
  font-size: 48px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.services-4 .service-content .service-info h3 {
  font-size: 1.5rem;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.services-4 .service-content .service-info h3 a {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 700;
}

.services-4 .service-content .service-info p {
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.services-4 .service-content .service-action {
  margin-top: 20px;
}

.services-4 .service-content .service-action .read-more-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.services-4 .service-content .service-action .read-more-btn:hover {
  transform: translateX(5px);
}

.services-4 .service-content .service-action .read-more-btn i {
  margin-left: 5px;
}

@media (max-width: 767px) {
  .services-4 .services-headline .services-title {
    font-size: 2rem;
  }

  .services-4 .services-image-container .services-image {
    height: 350px;
  }

  .services-4 .services-image-container .circular-btn {
    bottom: -40px;
    right: 50%;
    transform: translateX(50%);
  }

  .services-4 .services-image-container .circular-btn .circular-link {
    width: 130px;
    height: 130px;
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --section-spacing: 2.5rem;
}

.portfolio-details .portfolio-details-media {
  position: relative;
}

.portfolio-details .portfolio-details-media .main-image {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider {
  position: relative;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-slide img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev {
  background-color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:after,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:after {
  font-size: 16px;
  color: var(--accent-color);
  font-weight: bold;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:hover,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:hover {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:hover:after,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:hover:after {
  color: var(--contrast-color);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img {
  height: 140px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-media .tech-stack-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 85%);
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 70%);
  transform: translateY(-2px);
}

.portfolio-details .portfolio-details-content {
  padding: 0 0 0 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-details .portfolio-details-content .project-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-meta .badge-wrapper .project-badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

.portfolio-details .portfolio-details-content .project-meta .date-client {
  display: flex;
  gap: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-meta .date-client .meta-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .portfolio-details-content .project-meta .date-client .meta-item i {
  margin-right: 6px;
  color: var(--accent-color);
}

.portfolio-details .portfolio-details-content .project-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
}

.portfolio-details .portfolio-details-content .project-website {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-website i {
  font-size: 22px;
  color: var(--accent-color);
  margin-right: 8px;
}

.portfolio-details .portfolio-details-content .project-website a {
  font-weight: 500;
  transition: all 0.3s;
}

.portfolio-details .portfolio-details-content .project-website a:hover {
  letter-spacing: 0.5px;
}

.portfolio-details .portfolio-details-content .project-overview {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .portfolio-details-content .project-overview .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item {
  border: none;
  background: none;
  margin-bottom: 10px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button {
  padding: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--heading-color);
  background-color: color-mix(in srgb, var(--surface-color), transparent 70%);
  border-radius: 8px !important;
  box-shadow: none;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) i {
  color: var(--accent-color);
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button::after {
  background-size: 14px;
  width: 14px;
  height: 14px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button i {
  font-size: 1.1rem;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-body {
  padding: 1rem;
  background-color: var(--surface-color);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-body p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.portfolio-details .portfolio-details-content .project-features {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .portfolio-details-content .project-features h3 {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}

.portfolio-details .portfolio-details-content .project-features h3 i {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 1.1em;
}

.portfolio-details .portfolio-details-content .project-features .feature-list {
  list-style: none;
  padding-left: 0;
}

.portfolio-details .portfolio-details-content .project-features .feature-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.portfolio-details .portfolio-details-content .project-features .feature-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1em;
}

.portfolio-details .portfolio-details-content .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project {
  padding: 12px 28px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project {
  padding: 12px 28px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project i {
  transition: transform 0.3s ease;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project:hover i {
  transform: translateX(3px);
}

@media (max-width: 1199.98px) {
  .portfolio-details .portfolio-details-content {
    padding-left: 1rem;
  }
}

@media (max-width: 991.98px) {
  .portfolio-details .portfolio-details-content {
    padding: 2rem 0 0 0;
  }

  .portfolio-details .portfolio-details-content .cta-buttons {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .portfolio-details .project-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .portfolio-details .project-meta .date-client {
    flex-direction: column;
    gap: 0.5rem;
  }

  .portfolio-details .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .portfolio-details .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}

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

.tabs-2 .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.tabs-2 .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.tabs-2 .nav-item:last-child {
  padding-right: 0;
}

.tabs-2 .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .tabs-2 .nav-link {
    padding: 8px 20px;
  }
}

.tabs-2 .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs-2 .nav-link h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.tabs-2 .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.tabs-2 .nav-link:hover h4 {
  color: var(--accent-color);
}

.tabs-2 .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.tabs-2 .nav-link.active h4 {
  color: var(--contrast-color);
}

.tabs-2 .tab-content {
  margin-top: 30px;
}

.tabs-2 .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.tabs-2 .tab-pane p {
  font-size: 18px;
}

.tabs-2 .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.tabs-2 .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs-2 .tab-pane ul li {
  padding-top: 10px;
}

.tabs-2 .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.tabs-2 .tab-pane p:last-child {
  margin-bottom: 0;
}

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

.about-6 .about-img {
  border-radius: 8px;
  overflow: visible;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.about-6 .about-img .floating-badge {
  position: absolute;
  right: -25px;
  bottom: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px 28px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(54, 144, 231, 0.3);
  text-align: center;
  z-index: 3;
  transition: transform 0.3s ease;
}

.about-6 .about-img .floating-badge:hover {
  transform: translateY(-8px);
}

.about-6 .about-img .floating-badge span {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.about-6 .about-img .floating-badge p {
  font-size: 0.9rem;
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.about-6 .about-img .scribble {
  position: absolute;
  z-index: 1;
}

.about-6 .about-img .scribble.scribble-1 {
  width: 180px;
  height: 180px;
  border: 6px solid var(--accent-color);
  border-radius: 50%;
  top: -35px;
  left: -35px;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.about-6 .about-img .scribble.scribble-2 {
  width: 120px;
  height: 120px;
  border: 4px dashed var(--heading-color);
  bottom: -25px;
  right: 40px;
  opacity: 0.12;
  animation: float 6s ease-in-out infinite reverse;
}

.about-6 .about-img .scribble.scribble-3 {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  opacity: 0.08;
  top: 15%;
  right: -20px;
  border-radius: 14px;
  animation: float 7s ease-in-out infinite;
  transform: rotate(45deg);
}

.about-6 .about-img .floating-shape {
  position: absolute;
  z-index: 1;
}

.about-6 .about-img .floating-shape.shape-1 {
  width: 40px;
  height: 40px;
  background: var(--heading-color);
  opacity: 0.1;
  border-radius: 8px;
  bottom: -15px;
  left: 10%;
  animation: spin 10s linear infinite;
}

.about-6 .about-img .floating-shape.shape-2 {
  width: 20px;
  height: 70px;
  background: var(--accent-color);
  opacity: 0.15;
  border-radius: 40px;
  top: 20px;
  right: 12%;
  animation: float 5s ease-in-out infinite;
}

.about-6 .about-img img {
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

.about-6 .about-img img:hover {
  transform: scale(1.02);
}

.about-6 .content {
  padding-left: 20px;
}

@media (max-width: 992px) {
  .about-6 .content {
    padding-left: 0;
    margin-top: 20px;
  }
}

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

.about-6 .content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about-6 .content h3 {
    font-size: 2rem;
  }
}

.about-6 .content p {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
  line-height: 1.7;
}

.about-6 .features-list {
  margin-bottom: 35px;
}

.about-6 .features-list .feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.about-6 .features-list .feature-item:hover {
  transform: translateX(8px);
}

.about-6 .features-list .feature-item:hover .icon-box {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about-6 .features-list .feature-item .icon-box {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 12px;
  font-size: 22px;
  transition: all 0.3s ease;
}

.about-6 .features-list .feature-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.about-6 .features-list .feature-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.about-6 .cta-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about-6 .cta-wrapper .btn-about {
  padding: 14px 30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-6 .cta-wrapper .btn-about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: width 0.3s ease;
}

.about-6 .cta-wrapper .btn-about:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(54, 144, 231, 0.25);
}

.about-6 .cta-wrapper .btn-about:hover::after {
  width: 100%;
}

.about-6 .cta-wrapper .btn-video {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-6 .cta-wrapper .btn-video:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.about-6 .cta-wrapper .btn-video:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about-6 .cta-wrapper .btn-video .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 22px;
  transition: all 0.3s ease;
}

.about-6 .cta-wrapper .btn-video .icon i {
  margin-left: 2px;
}

@keyframes float {

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

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

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

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